camellia.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110
  1. /*
  2. * Camellia implementation
  3. *
  4. * Copyright The Mbed TLS Contributors
  5. * SPDX-License-Identifier: Apache-2.0
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License"); you may
  8. * not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  15. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. */
  19. /*
  20. * The Camellia block cipher was designed by NTT and Mitsubishi Electric
  21. * Corporation.
  22. *
  23. * http://info.isl.ntt.co.jp/crypt/eng/camellia/dl/01espec.pdf
  24. */
  25. #include "common.h"
  26. #if defined(MBEDTLS_CAMELLIA_C)
  27. #include "mbedtls/camellia.h"
  28. #include "mbedtls/platform_util.h"
  29. #include <string.h>
  30. #if defined(MBEDTLS_SELF_TEST)
  31. #if defined(MBEDTLS_PLATFORM_C)
  32. #include "mbedtls/platform.h"
  33. #else
  34. #include <stdio.h>
  35. #define mbedtls_printf printf
  36. #endif /* MBEDTLS_PLATFORM_C */
  37. #endif /* MBEDTLS_SELF_TEST */
  38. #if !defined(MBEDTLS_CAMELLIA_ALT)
  39. /* Parameter validation macros */
  40. #define CAMELLIA_VALIDATE_RET( cond ) \
  41. MBEDTLS_INTERNAL_VALIDATE_RET( cond, MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA )
  42. #define CAMELLIA_VALIDATE( cond ) \
  43. MBEDTLS_INTERNAL_VALIDATE( cond )
  44. /*
  45. * 32-bit integer manipulation macros (big endian)
  46. */
  47. #ifndef GET_UINT32_BE
  48. #define GET_UINT32_BE(n,b,i) \
  49. { \
  50. (n) = ( (uint32_t) (b)[(i) ] << 24 ) \
  51. | ( (uint32_t) (b)[(i) + 1] << 16 ) \
  52. | ( (uint32_t) (b)[(i) + 2] << 8 ) \
  53. | ( (uint32_t) (b)[(i) + 3] ); \
  54. }
  55. #endif
  56. #ifndef PUT_UINT32_BE
  57. #define PUT_UINT32_BE(n,b,i) \
  58. { \
  59. (b)[(i) ] = (unsigned char) ( (n) >> 24 ); \
  60. (b)[(i) + 1] = (unsigned char) ( (n) >> 16 ); \
  61. (b)[(i) + 2] = (unsigned char) ( (n) >> 8 ); \
  62. (b)[(i) + 3] = (unsigned char) ( (n) ); \
  63. }
  64. #endif
  65. static const unsigned char SIGMA_CHARS[6][8] =
  66. {
  67. { 0xa0, 0x9e, 0x66, 0x7f, 0x3b, 0xcc, 0x90, 0x8b },
  68. { 0xb6, 0x7a, 0xe8, 0x58, 0x4c, 0xaa, 0x73, 0xb2 },
  69. { 0xc6, 0xef, 0x37, 0x2f, 0xe9, 0x4f, 0x82, 0xbe },
  70. { 0x54, 0xff, 0x53, 0xa5, 0xf1, 0xd3, 0x6f, 0x1c },
  71. { 0x10, 0xe5, 0x27, 0xfa, 0xde, 0x68, 0x2d, 0x1d },
  72. { 0xb0, 0x56, 0x88, 0xc2, 0xb3, 0xe6, 0xc1, 0xfd }
  73. };
  74. #if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY)
  75. static const unsigned char FSb[256] =
  76. {
  77. 112,130, 44,236,179, 39,192,229,228,133, 87, 53,234, 12,174, 65,
  78. 35,239,107,147, 69, 25,165, 33,237, 14, 79, 78, 29,101,146,189,
  79. 134,184,175,143,124,235, 31,206, 62, 48,220, 95, 94,197, 11, 26,
  80. 166,225, 57,202,213, 71, 93, 61,217, 1, 90,214, 81, 86,108, 77,
  81. 139, 13,154,102,251,204,176, 45,116, 18, 43, 32,240,177,132,153,
  82. 223, 76,203,194, 52,126,118, 5,109,183,169, 49,209, 23, 4,215,
  83. 20, 88, 58, 97,222, 27, 17, 28, 50, 15,156, 22, 83, 24,242, 34,
  84. 254, 68,207,178,195,181,122,145, 36, 8,232,168, 96,252,105, 80,
  85. 170,208,160,125,161,137, 98,151, 84, 91, 30,149,224,255,100,210,
  86. 16,196, 0, 72,163,247,117,219,138, 3,230,218, 9, 63,221,148,
  87. 135, 92,131, 2,205, 74,144, 51,115,103,246,243,157,127,191,226,
  88. 82,155,216, 38,200, 55,198, 59,129,150,111, 75, 19,190, 99, 46,
  89. 233,121,167,140,159,110,188,142, 41,245,249,182, 47,253,180, 89,
  90. 120,152, 6,106,231, 70,113,186,212, 37,171, 66,136,162,141,250,
  91. 114, 7,185, 85,248,238,172, 10, 54, 73, 42,104, 60, 56,241,164,
  92. 64, 40,211,123,187,201, 67,193, 21,227,173,244,119,199,128,158
  93. };
  94. #define SBOX1(n) FSb[(n)]
  95. #define SBOX2(n) (unsigned char)((FSb[(n)] >> 7 ^ FSb[(n)] << 1) & 0xff)
  96. #define SBOX3(n) (unsigned char)((FSb[(n)] >> 1 ^ FSb[(n)] << 7) & 0xff)
  97. #define SBOX4(n) FSb[((n) << 1 ^ (n) >> 7) &0xff]
  98. #else /* MBEDTLS_CAMELLIA_SMALL_MEMORY */
  99. static const unsigned char FSb[256] =
  100. {
  101. 112, 130, 44, 236, 179, 39, 192, 229, 228, 133, 87, 53, 234, 12, 174, 65,
  102. 35, 239, 107, 147, 69, 25, 165, 33, 237, 14, 79, 78, 29, 101, 146, 189,
  103. 134, 184, 175, 143, 124, 235, 31, 206, 62, 48, 220, 95, 94, 197, 11, 26,
  104. 166, 225, 57, 202, 213, 71, 93, 61, 217, 1, 90, 214, 81, 86, 108, 77,
  105. 139, 13, 154, 102, 251, 204, 176, 45, 116, 18, 43, 32, 240, 177, 132, 153,
  106. 223, 76, 203, 194, 52, 126, 118, 5, 109, 183, 169, 49, 209, 23, 4, 215,
  107. 20, 88, 58, 97, 222, 27, 17, 28, 50, 15, 156, 22, 83, 24, 242, 34,
  108. 254, 68, 207, 178, 195, 181, 122, 145, 36, 8, 232, 168, 96, 252, 105, 80,
  109. 170, 208, 160, 125, 161, 137, 98, 151, 84, 91, 30, 149, 224, 255, 100, 210,
  110. 16, 196, 0, 72, 163, 247, 117, 219, 138, 3, 230, 218, 9, 63, 221, 148,
  111. 135, 92, 131, 2, 205, 74, 144, 51, 115, 103, 246, 243, 157, 127, 191, 226,
  112. 82, 155, 216, 38, 200, 55, 198, 59, 129, 150, 111, 75, 19, 190, 99, 46,
  113. 233, 121, 167, 140, 159, 110, 188, 142, 41, 245, 249, 182, 47, 253, 180, 89,
  114. 120, 152, 6, 106, 231, 70, 113, 186, 212, 37, 171, 66, 136, 162, 141, 250,
  115. 114, 7, 185, 85, 248, 238, 172, 10, 54, 73, 42, 104, 60, 56, 241, 164,
  116. 64, 40, 211, 123, 187, 201, 67, 193, 21, 227, 173, 244, 119, 199, 128, 158
  117. };
  118. static const unsigned char FSb2[256] =
  119. {
  120. 224, 5, 88, 217, 103, 78, 129, 203, 201, 11, 174, 106, 213, 24, 93, 130,
  121. 70, 223, 214, 39, 138, 50, 75, 66, 219, 28, 158, 156, 58, 202, 37, 123,
  122. 13, 113, 95, 31, 248, 215, 62, 157, 124, 96, 185, 190, 188, 139, 22, 52,
  123. 77, 195, 114, 149, 171, 142, 186, 122, 179, 2, 180, 173, 162, 172, 216, 154,
  124. 23, 26, 53, 204, 247, 153, 97, 90, 232, 36, 86, 64, 225, 99, 9, 51,
  125. 191, 152, 151, 133, 104, 252, 236, 10, 218, 111, 83, 98, 163, 46, 8, 175,
  126. 40, 176, 116, 194, 189, 54, 34, 56, 100, 30, 57, 44, 166, 48, 229, 68,
  127. 253, 136, 159, 101, 135, 107, 244, 35, 72, 16, 209, 81, 192, 249, 210, 160,
  128. 85, 161, 65, 250, 67, 19, 196, 47, 168, 182, 60, 43, 193, 255, 200, 165,
  129. 32, 137, 0, 144, 71, 239, 234, 183, 21, 6, 205, 181, 18, 126, 187, 41,
  130. 15, 184, 7, 4, 155, 148, 33, 102, 230, 206, 237, 231, 59, 254, 127, 197,
  131. 164, 55, 177, 76, 145, 110, 141, 118, 3, 45, 222, 150, 38, 125, 198, 92,
  132. 211, 242, 79, 25, 63, 220, 121, 29, 82, 235, 243, 109, 94, 251, 105, 178,
  133. 240, 49, 12, 212, 207, 140, 226, 117, 169, 74, 87, 132, 17, 69, 27, 245,
  134. 228, 14, 115, 170, 241, 221, 89, 20, 108, 146, 84, 208, 120, 112, 227, 73,
  135. 128, 80, 167, 246, 119, 147, 134, 131, 42, 199, 91, 233, 238, 143, 1, 61
  136. };
  137. static const unsigned char FSb3[256] =
  138. {
  139. 56, 65, 22, 118, 217, 147, 96, 242, 114, 194, 171, 154, 117, 6, 87, 160,
  140. 145, 247, 181, 201, 162, 140, 210, 144, 246, 7, 167, 39, 142, 178, 73, 222,
  141. 67, 92, 215, 199, 62, 245, 143, 103, 31, 24, 110, 175, 47, 226, 133, 13,
  142. 83, 240, 156, 101, 234, 163, 174, 158, 236, 128, 45, 107, 168, 43, 54, 166,
  143. 197, 134, 77, 51, 253, 102, 88, 150, 58, 9, 149, 16, 120, 216, 66, 204,
  144. 239, 38, 229, 97, 26, 63, 59, 130, 182, 219, 212, 152, 232, 139, 2, 235,
  145. 10, 44, 29, 176, 111, 141, 136, 14, 25, 135, 78, 11, 169, 12, 121, 17,
  146. 127, 34, 231, 89, 225, 218, 61, 200, 18, 4, 116, 84, 48, 126, 180, 40,
  147. 85, 104, 80, 190, 208, 196, 49, 203, 42, 173, 15, 202, 112, 255, 50, 105,
  148. 8, 98, 0, 36, 209, 251, 186, 237, 69, 129, 115, 109, 132, 159, 238, 74,
  149. 195, 46, 193, 1, 230, 37, 72, 153, 185, 179, 123, 249, 206, 191, 223, 113,
  150. 41, 205, 108, 19, 100, 155, 99, 157, 192, 75, 183, 165, 137, 95, 177, 23,
  151. 244, 188, 211, 70, 207, 55, 94, 71, 148, 250, 252, 91, 151, 254, 90, 172,
  152. 60, 76, 3, 53, 243, 35, 184, 93, 106, 146, 213, 33, 68, 81, 198, 125,
  153. 57, 131, 220, 170, 124, 119, 86, 5, 27, 164, 21, 52, 30, 28, 248, 82,
  154. 32, 20, 233, 189, 221, 228, 161, 224, 138, 241, 214, 122, 187, 227, 64, 79
  155. };
  156. static const unsigned char FSb4[256] =
  157. {
  158. 112, 44, 179, 192, 228, 87, 234, 174, 35, 107, 69, 165, 237, 79, 29, 146,
  159. 134, 175, 124, 31, 62, 220, 94, 11, 166, 57, 213, 93, 217, 90, 81, 108,
  160. 139, 154, 251, 176, 116, 43, 240, 132, 223, 203, 52, 118, 109, 169, 209, 4,
  161. 20, 58, 222, 17, 50, 156, 83, 242, 254, 207, 195, 122, 36, 232, 96, 105,
  162. 170, 160, 161, 98, 84, 30, 224, 100, 16, 0, 163, 117, 138, 230, 9, 221,
  163. 135, 131, 205, 144, 115, 246, 157, 191, 82, 216, 200, 198, 129, 111, 19, 99,
  164. 233, 167, 159, 188, 41, 249, 47, 180, 120, 6, 231, 113, 212, 171, 136, 141,
  165. 114, 185, 248, 172, 54, 42, 60, 241, 64, 211, 187, 67, 21, 173, 119, 128,
  166. 130, 236, 39, 229, 133, 53, 12, 65, 239, 147, 25, 33, 14, 78, 101, 189,
  167. 184, 143, 235, 206, 48, 95, 197, 26, 225, 202, 71, 61, 1, 214, 86, 77,
  168. 13, 102, 204, 45, 18, 32, 177, 153, 76, 194, 126, 5, 183, 49, 23, 215,
  169. 88, 97, 27, 28, 15, 22, 24, 34, 68, 178, 181, 145, 8, 168, 252, 80,
  170. 208, 125, 137, 151, 91, 149, 255, 210, 196, 72, 247, 219, 3, 218, 63, 148,
  171. 92, 2, 74, 51, 103, 243, 127, 226, 155, 38, 55, 59, 150, 75, 190, 46,
  172. 121, 140, 110, 142, 245, 182, 253, 89, 152, 106, 70, 186, 37, 66, 162, 250,
  173. 7, 85, 238, 10, 73, 104, 56, 164, 40, 123, 201, 193, 227, 244, 199, 158
  174. };
  175. #define SBOX1(n) FSb[(n)]
  176. #define SBOX2(n) FSb2[(n)]
  177. #define SBOX3(n) FSb3[(n)]
  178. #define SBOX4(n) FSb4[(n)]
  179. #endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */
  180. static const unsigned char shifts[2][4][4] =
  181. {
  182. {
  183. { 1, 1, 1, 1 }, /* KL */
  184. { 0, 0, 0, 0 }, /* KR */
  185. { 1, 1, 1, 1 }, /* KA */
  186. { 0, 0, 0, 0 } /* KB */
  187. },
  188. {
  189. { 1, 0, 1, 1 }, /* KL */
  190. { 1, 1, 0, 1 }, /* KR */
  191. { 1, 1, 1, 0 }, /* KA */
  192. { 1, 1, 0, 1 } /* KB */
  193. }
  194. };
  195. static const signed char indexes[2][4][20] =
  196. {
  197. {
  198. { 0, 1, 2, 3, 8, 9, 10, 11, 38, 39,
  199. 36, 37, 23, 20, 21, 22, 27, -1, -1, 26 }, /* KL -> RK */
  200. { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  201. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }, /* KR -> RK */
  202. { 4, 5, 6, 7, 12, 13, 14, 15, 16, 17,
  203. 18, 19, -1, 24, 25, -1, 31, 28, 29, 30 }, /* KA -> RK */
  204. { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  205. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 } /* KB -> RK */
  206. },
  207. {
  208. { 0, 1, 2, 3, 61, 62, 63, 60, -1, -1,
  209. -1, -1, 27, 24, 25, 26, 35, 32, 33, 34 }, /* KL -> RK */
  210. { -1, -1, -1, -1, 8, 9, 10, 11, 16, 17,
  211. 18, 19, -1, -1, -1, -1, 39, 36, 37, 38 }, /* KR -> RK */
  212. { -1, -1, -1, -1, 12, 13, 14, 15, 58, 59,
  213. 56, 57, 31, 28, 29, 30, -1, -1, -1, -1 }, /* KA -> RK */
  214. { 4, 5, 6, 7, 65, 66, 67, 64, 20, 21,
  215. 22, 23, -1, -1, -1, -1, 43, 40, 41, 42 } /* KB -> RK */
  216. }
  217. };
  218. static const signed char transposes[2][20] =
  219. {
  220. {
  221. 21, 22, 23, 20,
  222. -1, -1, -1, -1,
  223. 18, 19, 16, 17,
  224. 11, 8, 9, 10,
  225. 15, 12, 13, 14
  226. },
  227. {
  228. 25, 26, 27, 24,
  229. 29, 30, 31, 28,
  230. 18, 19, 16, 17,
  231. -1, -1, -1, -1,
  232. -1, -1, -1, -1
  233. }
  234. };
  235. /* Shift macro for 128 bit strings with rotation smaller than 32 bits (!) */
  236. #define ROTL(DEST, SRC, SHIFT) \
  237. { \
  238. (DEST)[0] = (SRC)[0] << (SHIFT) ^ (SRC)[1] >> (32 - (SHIFT)); \
  239. (DEST)[1] = (SRC)[1] << (SHIFT) ^ (SRC)[2] >> (32 - (SHIFT)); \
  240. (DEST)[2] = (SRC)[2] << (SHIFT) ^ (SRC)[3] >> (32 - (SHIFT)); \
  241. (DEST)[3] = (SRC)[3] << (SHIFT) ^ (SRC)[0] >> (32 - (SHIFT)); \
  242. }
  243. #define FL(XL, XR, KL, KR) \
  244. { \
  245. (XR) = ((((XL) & (KL)) << 1) | (((XL) & (KL)) >> 31)) ^ (XR); \
  246. (XL) = ((XR) | (KR)) ^ (XL); \
  247. }
  248. #define FLInv(YL, YR, KL, KR) \
  249. { \
  250. (YL) = ((YR) | (KR)) ^ (YL); \
  251. (YR) = ((((YL) & (KL)) << 1) | (((YL) & (KL)) >> 31)) ^ (YR); \
  252. }
  253. #define SHIFT_AND_PLACE(INDEX, OFFSET) \
  254. { \
  255. TK[0] = KC[(OFFSET) * 4 + 0]; \
  256. TK[1] = KC[(OFFSET) * 4 + 1]; \
  257. TK[2] = KC[(OFFSET) * 4 + 2]; \
  258. TK[3] = KC[(OFFSET) * 4 + 3]; \
  259. \
  260. for( i = 1; i <= 4; i++ ) \
  261. if( shifts[(INDEX)][(OFFSET)][i -1] ) \
  262. ROTL(TK + i * 4, TK, ( 15 * i ) % 32); \
  263. \
  264. for( i = 0; i < 20; i++ ) \
  265. if( indexes[(INDEX)][(OFFSET)][i] != -1 ) { \
  266. RK[indexes[(INDEX)][(OFFSET)][i]] = TK[ i ]; \
  267. } \
  268. }
  269. static void camellia_feistel( const uint32_t x[2], const uint32_t k[2],
  270. uint32_t z[2])
  271. {
  272. uint32_t I0, I1;
  273. I0 = x[0] ^ k[0];
  274. I1 = x[1] ^ k[1];
  275. I0 = ((uint32_t) SBOX1((I0 >> 24) & 0xFF) << 24) |
  276. ((uint32_t) SBOX2((I0 >> 16) & 0xFF) << 16) |
  277. ((uint32_t) SBOX3((I0 >> 8) & 0xFF) << 8) |
  278. ((uint32_t) SBOX4((I0 ) & 0xFF) );
  279. I1 = ((uint32_t) SBOX2((I1 >> 24) & 0xFF) << 24) |
  280. ((uint32_t) SBOX3((I1 >> 16) & 0xFF) << 16) |
  281. ((uint32_t) SBOX4((I1 >> 8) & 0xFF) << 8) |
  282. ((uint32_t) SBOX1((I1 ) & 0xFF) );
  283. I0 ^= (I1 << 8) | (I1 >> 24);
  284. I1 ^= (I0 << 16) | (I0 >> 16);
  285. I0 ^= (I1 >> 8) | (I1 << 24);
  286. I1 ^= (I0 >> 8) | (I0 << 24);
  287. z[0] ^= I1;
  288. z[1] ^= I0;
  289. }
  290. void mbedtls_camellia_init( mbedtls_camellia_context *ctx )
  291. {
  292. CAMELLIA_VALIDATE( ctx != NULL );
  293. memset( ctx, 0, sizeof( mbedtls_camellia_context ) );
  294. }
  295. void mbedtls_camellia_free( mbedtls_camellia_context *ctx )
  296. {
  297. if( ctx == NULL )
  298. return;
  299. mbedtls_platform_zeroize( ctx, sizeof( mbedtls_camellia_context ) );
  300. }
  301. /*
  302. * Camellia key schedule (encryption)
  303. */
  304. int mbedtls_camellia_setkey_enc( mbedtls_camellia_context *ctx,
  305. const unsigned char *key,
  306. unsigned int keybits )
  307. {
  308. int idx;
  309. size_t i;
  310. uint32_t *RK;
  311. unsigned char t[64];
  312. uint32_t SIGMA[6][2];
  313. uint32_t KC[16];
  314. uint32_t TK[20];
  315. CAMELLIA_VALIDATE_RET( ctx != NULL );
  316. CAMELLIA_VALIDATE_RET( key != NULL );
  317. RK = ctx->rk;
  318. memset( t, 0, 64 );
  319. memset( RK, 0, sizeof(ctx->rk) );
  320. switch( keybits )
  321. {
  322. case 128: ctx->nr = 3; idx = 0; break;
  323. case 192:
  324. case 256: ctx->nr = 4; idx = 1; break;
  325. default : return( MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA );
  326. }
  327. for( i = 0; i < keybits / 8; ++i )
  328. t[i] = key[i];
  329. if( keybits == 192 ) {
  330. for( i = 0; i < 8; i++ )
  331. t[24 + i] = ~t[16 + i];
  332. }
  333. /*
  334. * Prepare SIGMA values
  335. */
  336. for( i = 0; i < 6; i++ ) {
  337. GET_UINT32_BE( SIGMA[i][0], SIGMA_CHARS[i], 0 );
  338. GET_UINT32_BE( SIGMA[i][1], SIGMA_CHARS[i], 4 );
  339. }
  340. /*
  341. * Key storage in KC
  342. * Order: KL, KR, KA, KB
  343. */
  344. memset( KC, 0, sizeof(KC) );
  345. /* Store KL, KR */
  346. for( i = 0; i < 8; i++ )
  347. GET_UINT32_BE( KC[i], t, i * 4 );
  348. /* Generate KA */
  349. for( i = 0; i < 4; ++i )
  350. KC[8 + i] = KC[i] ^ KC[4 + i];
  351. camellia_feistel( KC + 8, SIGMA[0], KC + 10 );
  352. camellia_feistel( KC + 10, SIGMA[1], KC + 8 );
  353. for( i = 0; i < 4; ++i )
  354. KC[8 + i] ^= KC[i];
  355. camellia_feistel( KC + 8, SIGMA[2], KC + 10 );
  356. camellia_feistel( KC + 10, SIGMA[3], KC + 8 );
  357. if( keybits > 128 ) {
  358. /* Generate KB */
  359. for( i = 0; i < 4; ++i )
  360. KC[12 + i] = KC[4 + i] ^ KC[8 + i];
  361. camellia_feistel( KC + 12, SIGMA[4], KC + 14 );
  362. camellia_feistel( KC + 14, SIGMA[5], KC + 12 );
  363. }
  364. /*
  365. * Generating subkeys
  366. */
  367. /* Manipulating KL */
  368. SHIFT_AND_PLACE( idx, 0 );
  369. /* Manipulating KR */
  370. if( keybits > 128 ) {
  371. SHIFT_AND_PLACE( idx, 1 );
  372. }
  373. /* Manipulating KA */
  374. SHIFT_AND_PLACE( idx, 2 );
  375. /* Manipulating KB */
  376. if( keybits > 128 ) {
  377. SHIFT_AND_PLACE( idx, 3 );
  378. }
  379. /* Do transpositions */
  380. for( i = 0; i < 20; i++ ) {
  381. if( transposes[idx][i] != -1 ) {
  382. RK[32 + 12 * idx + i] = RK[transposes[idx][i]];
  383. }
  384. }
  385. return( 0 );
  386. }
  387. /*
  388. * Camellia key schedule (decryption)
  389. */
  390. int mbedtls_camellia_setkey_dec( mbedtls_camellia_context *ctx,
  391. const unsigned char *key,
  392. unsigned int keybits )
  393. {
  394. int idx, ret;
  395. size_t i;
  396. mbedtls_camellia_context cty;
  397. uint32_t *RK;
  398. uint32_t *SK;
  399. CAMELLIA_VALIDATE_RET( ctx != NULL );
  400. CAMELLIA_VALIDATE_RET( key != NULL );
  401. mbedtls_camellia_init( &cty );
  402. /* Also checks keybits */
  403. if( ( ret = mbedtls_camellia_setkey_enc( &cty, key, keybits ) ) != 0 )
  404. goto exit;
  405. ctx->nr = cty.nr;
  406. idx = ( ctx->nr == 4 );
  407. RK = ctx->rk;
  408. SK = cty.rk + 24 * 2 + 8 * idx * 2;
  409. *RK++ = *SK++;
  410. *RK++ = *SK++;
  411. *RK++ = *SK++;
  412. *RK++ = *SK++;
  413. for( i = 22 + 8 * idx, SK -= 6; i > 0; i--, SK -= 4 )
  414. {
  415. *RK++ = *SK++;
  416. *RK++ = *SK++;
  417. }
  418. SK -= 2;
  419. *RK++ = *SK++;
  420. *RK++ = *SK++;
  421. *RK++ = *SK++;
  422. *RK++ = *SK++;
  423. exit:
  424. mbedtls_camellia_free( &cty );
  425. return( ret );
  426. }
  427. /*
  428. * Camellia-ECB block encryption/decryption
  429. */
  430. int mbedtls_camellia_crypt_ecb( mbedtls_camellia_context *ctx,
  431. int mode,
  432. const unsigned char input[16],
  433. unsigned char output[16] )
  434. {
  435. int NR;
  436. uint32_t *RK, X[4];
  437. CAMELLIA_VALIDATE_RET( ctx != NULL );
  438. CAMELLIA_VALIDATE_RET( mode == MBEDTLS_CAMELLIA_ENCRYPT ||
  439. mode == MBEDTLS_CAMELLIA_DECRYPT );
  440. CAMELLIA_VALIDATE_RET( input != NULL );
  441. CAMELLIA_VALIDATE_RET( output != NULL );
  442. ( (void) mode );
  443. NR = ctx->nr;
  444. RK = ctx->rk;
  445. GET_UINT32_BE( X[0], input, 0 );
  446. GET_UINT32_BE( X[1], input, 4 );
  447. GET_UINT32_BE( X[2], input, 8 );
  448. GET_UINT32_BE( X[3], input, 12 );
  449. X[0] ^= *RK++;
  450. X[1] ^= *RK++;
  451. X[2] ^= *RK++;
  452. X[3] ^= *RK++;
  453. while( NR ) {
  454. --NR;
  455. camellia_feistel( X, RK, X + 2 );
  456. RK += 2;
  457. camellia_feistel( X + 2, RK, X );
  458. RK += 2;
  459. camellia_feistel( X, RK, X + 2 );
  460. RK += 2;
  461. camellia_feistel( X + 2, RK, X );
  462. RK += 2;
  463. camellia_feistel( X, RK, X + 2 );
  464. RK += 2;
  465. camellia_feistel( X + 2, RK, X );
  466. RK += 2;
  467. if( NR ) {
  468. FL(X[0], X[1], RK[0], RK[1]);
  469. RK += 2;
  470. FLInv(X[2], X[3], RK[0], RK[1]);
  471. RK += 2;
  472. }
  473. }
  474. X[2] ^= *RK++;
  475. X[3] ^= *RK++;
  476. X[0] ^= *RK++;
  477. X[1] ^= *RK++;
  478. PUT_UINT32_BE( X[2], output, 0 );
  479. PUT_UINT32_BE( X[3], output, 4 );
  480. PUT_UINT32_BE( X[0], output, 8 );
  481. PUT_UINT32_BE( X[1], output, 12 );
  482. return( 0 );
  483. }
  484. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  485. /*
  486. * Camellia-CBC buffer encryption/decryption
  487. */
  488. int mbedtls_camellia_crypt_cbc( mbedtls_camellia_context *ctx,
  489. int mode,
  490. size_t length,
  491. unsigned char iv[16],
  492. const unsigned char *input,
  493. unsigned char *output )
  494. {
  495. int i;
  496. unsigned char temp[16];
  497. CAMELLIA_VALIDATE_RET( ctx != NULL );
  498. CAMELLIA_VALIDATE_RET( mode == MBEDTLS_CAMELLIA_ENCRYPT ||
  499. mode == MBEDTLS_CAMELLIA_DECRYPT );
  500. CAMELLIA_VALIDATE_RET( iv != NULL );
  501. CAMELLIA_VALIDATE_RET( length == 0 || input != NULL );
  502. CAMELLIA_VALIDATE_RET( length == 0 || output != NULL );
  503. if( length % 16 )
  504. return( MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH );
  505. if( mode == MBEDTLS_CAMELLIA_DECRYPT )
  506. {
  507. while( length > 0 )
  508. {
  509. memcpy( temp, input, 16 );
  510. mbedtls_camellia_crypt_ecb( ctx, mode, input, output );
  511. for( i = 0; i < 16; i++ )
  512. output[i] = (unsigned char)( output[i] ^ iv[i] );
  513. memcpy( iv, temp, 16 );
  514. input += 16;
  515. output += 16;
  516. length -= 16;
  517. }
  518. }
  519. else
  520. {
  521. while( length > 0 )
  522. {
  523. for( i = 0; i < 16; i++ )
  524. output[i] = (unsigned char)( input[i] ^ iv[i] );
  525. mbedtls_camellia_crypt_ecb( ctx, mode, output, output );
  526. memcpy( iv, output, 16 );
  527. input += 16;
  528. output += 16;
  529. length -= 16;
  530. }
  531. }
  532. return( 0 );
  533. }
  534. #endif /* MBEDTLS_CIPHER_MODE_CBC */
  535. #if defined(MBEDTLS_CIPHER_MODE_CFB)
  536. /*
  537. * Camellia-CFB128 buffer encryption/decryption
  538. */
  539. int mbedtls_camellia_crypt_cfb128( mbedtls_camellia_context *ctx,
  540. int mode,
  541. size_t length,
  542. size_t *iv_off,
  543. unsigned char iv[16],
  544. const unsigned char *input,
  545. unsigned char *output )
  546. {
  547. int c;
  548. size_t n;
  549. CAMELLIA_VALIDATE_RET( ctx != NULL );
  550. CAMELLIA_VALIDATE_RET( mode == MBEDTLS_CAMELLIA_ENCRYPT ||
  551. mode == MBEDTLS_CAMELLIA_DECRYPT );
  552. CAMELLIA_VALIDATE_RET( iv != NULL );
  553. CAMELLIA_VALIDATE_RET( iv_off != NULL );
  554. CAMELLIA_VALIDATE_RET( length == 0 || input != NULL );
  555. CAMELLIA_VALIDATE_RET( length == 0 || output != NULL );
  556. n = *iv_off;
  557. if( n >= 16 )
  558. return( MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA );
  559. if( mode == MBEDTLS_CAMELLIA_DECRYPT )
  560. {
  561. while( length-- )
  562. {
  563. if( n == 0 )
  564. mbedtls_camellia_crypt_ecb( ctx, MBEDTLS_CAMELLIA_ENCRYPT, iv, iv );
  565. c = *input++;
  566. *output++ = (unsigned char)( c ^ iv[n] );
  567. iv[n] = (unsigned char) c;
  568. n = ( n + 1 ) & 0x0F;
  569. }
  570. }
  571. else
  572. {
  573. while( length-- )
  574. {
  575. if( n == 0 )
  576. mbedtls_camellia_crypt_ecb( ctx, MBEDTLS_CAMELLIA_ENCRYPT, iv, iv );
  577. iv[n] = *output++ = (unsigned char)( iv[n] ^ *input++ );
  578. n = ( n + 1 ) & 0x0F;
  579. }
  580. }
  581. *iv_off = n;
  582. return( 0 );
  583. }
  584. #endif /* MBEDTLS_CIPHER_MODE_CFB */
  585. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  586. /*
  587. * Camellia-CTR buffer encryption/decryption
  588. */
  589. int mbedtls_camellia_crypt_ctr( mbedtls_camellia_context *ctx,
  590. size_t length,
  591. size_t *nc_off,
  592. unsigned char nonce_counter[16],
  593. unsigned char stream_block[16],
  594. const unsigned char *input,
  595. unsigned char *output )
  596. {
  597. int c, i;
  598. size_t n;
  599. CAMELLIA_VALIDATE_RET( ctx != NULL );
  600. CAMELLIA_VALIDATE_RET( nonce_counter != NULL );
  601. CAMELLIA_VALIDATE_RET( stream_block != NULL );
  602. CAMELLIA_VALIDATE_RET( nc_off != NULL );
  603. CAMELLIA_VALIDATE_RET( length == 0 || input != NULL );
  604. CAMELLIA_VALIDATE_RET( length == 0 || output != NULL );
  605. n = *nc_off;
  606. if( n >= 16 )
  607. return( MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA );
  608. while( length-- )
  609. {
  610. if( n == 0 ) {
  611. mbedtls_camellia_crypt_ecb( ctx, MBEDTLS_CAMELLIA_ENCRYPT, nonce_counter,
  612. stream_block );
  613. for( i = 16; i > 0; i-- )
  614. if( ++nonce_counter[i - 1] != 0 )
  615. break;
  616. }
  617. c = *input++;
  618. *output++ = (unsigned char)( c ^ stream_block[n] );
  619. n = ( n + 1 ) & 0x0F;
  620. }
  621. *nc_off = n;
  622. return( 0 );
  623. }
  624. #endif /* MBEDTLS_CIPHER_MODE_CTR */
  625. #endif /* !MBEDTLS_CAMELLIA_ALT */
  626. #if defined(MBEDTLS_SELF_TEST)
  627. /*
  628. * Camellia test vectors from:
  629. *
  630. * http://info.isl.ntt.co.jp/crypt/eng/camellia/technology.html:
  631. * http://info.isl.ntt.co.jp/crypt/eng/camellia/dl/cryptrec/intermediate.txt
  632. * http://info.isl.ntt.co.jp/crypt/eng/camellia/dl/cryptrec/t_camellia.txt
  633. * (For each bitlength: Key 0, Nr 39)
  634. */
  635. #define CAMELLIA_TESTS_ECB 2
  636. static const unsigned char camellia_test_ecb_key[3][CAMELLIA_TESTS_ECB][32] =
  637. {
  638. {
  639. { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
  640. 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10 },
  641. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  642. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  643. },
  644. {
  645. { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
  646. 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10,
  647. 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77 },
  648. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  649. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  650. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  651. },
  652. {
  653. { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
  654. 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10,
  655. 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
  656. 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff },
  657. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  658. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  659. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  660. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  661. },
  662. };
  663. static const unsigned char camellia_test_ecb_plain[CAMELLIA_TESTS_ECB][16] =
  664. {
  665. { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
  666. 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10 },
  667. { 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
  668. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  669. };
  670. static const unsigned char camellia_test_ecb_cipher[3][CAMELLIA_TESTS_ECB][16] =
  671. {
  672. {
  673. { 0x67, 0x67, 0x31, 0x38, 0x54, 0x96, 0x69, 0x73,
  674. 0x08, 0x57, 0x06, 0x56, 0x48, 0xea, 0xbe, 0x43 },
  675. { 0x38, 0x3C, 0x6C, 0x2A, 0xAB, 0xEF, 0x7F, 0xDE,
  676. 0x25, 0xCD, 0x47, 0x0B, 0xF7, 0x74, 0xA3, 0x31 }
  677. },
  678. {
  679. { 0xb4, 0x99, 0x34, 0x01, 0xb3, 0xe9, 0x96, 0xf8,
  680. 0x4e, 0xe5, 0xce, 0xe7, 0xd7, 0x9b, 0x09, 0xb9 },
  681. { 0xD1, 0x76, 0x3F, 0xC0, 0x19, 0xD7, 0x7C, 0xC9,
  682. 0x30, 0xBF, 0xF2, 0xA5, 0x6F, 0x7C, 0x93, 0x64 }
  683. },
  684. {
  685. { 0x9a, 0xcc, 0x23, 0x7d, 0xff, 0x16, 0xd7, 0x6c,
  686. 0x20, 0xef, 0x7c, 0x91, 0x9e, 0x3a, 0x75, 0x09 },
  687. { 0x05, 0x03, 0xFB, 0x10, 0xAB, 0x24, 0x1E, 0x7C,
  688. 0xF4, 0x5D, 0x8C, 0xDE, 0xEE, 0x47, 0x43, 0x35 }
  689. }
  690. };
  691. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  692. #define CAMELLIA_TESTS_CBC 3
  693. static const unsigned char camellia_test_cbc_key[3][32] =
  694. {
  695. { 0x2B, 0x7E, 0x15, 0x16, 0x28, 0xAE, 0xD2, 0xA6,
  696. 0xAB, 0xF7, 0x15, 0x88, 0x09, 0xCF, 0x4F, 0x3C }
  697. ,
  698. { 0x8E, 0x73, 0xB0, 0xF7, 0xDA, 0x0E, 0x64, 0x52,
  699. 0xC8, 0x10, 0xF3, 0x2B, 0x80, 0x90, 0x79, 0xE5,
  700. 0x62, 0xF8, 0xEA, 0xD2, 0x52, 0x2C, 0x6B, 0x7B }
  701. ,
  702. { 0x60, 0x3D, 0xEB, 0x10, 0x15, 0xCA, 0x71, 0xBE,
  703. 0x2B, 0x73, 0xAE, 0xF0, 0x85, 0x7D, 0x77, 0x81,
  704. 0x1F, 0x35, 0x2C, 0x07, 0x3B, 0x61, 0x08, 0xD7,
  705. 0x2D, 0x98, 0x10, 0xA3, 0x09, 0x14, 0xDF, 0xF4 }
  706. };
  707. static const unsigned char camellia_test_cbc_iv[16] =
  708. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  709. 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F }
  710. ;
  711. static const unsigned char camellia_test_cbc_plain[CAMELLIA_TESTS_CBC][16] =
  712. {
  713. { 0x6B, 0xC1, 0xBE, 0xE2, 0x2E, 0x40, 0x9F, 0x96,
  714. 0xE9, 0x3D, 0x7E, 0x11, 0x73, 0x93, 0x17, 0x2A },
  715. { 0xAE, 0x2D, 0x8A, 0x57, 0x1E, 0x03, 0xAC, 0x9C,
  716. 0x9E, 0xB7, 0x6F, 0xAC, 0x45, 0xAF, 0x8E, 0x51 },
  717. { 0x30, 0xC8, 0x1C, 0x46, 0xA3, 0x5C, 0xE4, 0x11,
  718. 0xE5, 0xFB, 0xC1, 0x19, 0x1A, 0x0A, 0x52, 0xEF }
  719. };
  720. static const unsigned char camellia_test_cbc_cipher[3][CAMELLIA_TESTS_CBC][16] =
  721. {
  722. {
  723. { 0x16, 0x07, 0xCF, 0x49, 0x4B, 0x36, 0xBB, 0xF0,
  724. 0x0D, 0xAE, 0xB0, 0xB5, 0x03, 0xC8, 0x31, 0xAB },
  725. { 0xA2, 0xF2, 0xCF, 0x67, 0x16, 0x29, 0xEF, 0x78,
  726. 0x40, 0xC5, 0xA5, 0xDF, 0xB5, 0x07, 0x48, 0x87 },
  727. { 0x0F, 0x06, 0x16, 0x50, 0x08, 0xCF, 0x8B, 0x8B,
  728. 0x5A, 0x63, 0x58, 0x63, 0x62, 0x54, 0x3E, 0x54 }
  729. },
  730. {
  731. { 0x2A, 0x48, 0x30, 0xAB, 0x5A, 0xC4, 0xA1, 0xA2,
  732. 0x40, 0x59, 0x55, 0xFD, 0x21, 0x95, 0xCF, 0x93 },
  733. { 0x5D, 0x5A, 0x86, 0x9B, 0xD1, 0x4C, 0xE5, 0x42,
  734. 0x64, 0xF8, 0x92, 0xA6, 0xDD, 0x2E, 0xC3, 0xD5 },
  735. { 0x37, 0xD3, 0x59, 0xC3, 0x34, 0x98, 0x36, 0xD8,
  736. 0x84, 0xE3, 0x10, 0xAD, 0xDF, 0x68, 0xC4, 0x49 }
  737. },
  738. {
  739. { 0xE6, 0xCF, 0xA3, 0x5F, 0xC0, 0x2B, 0x13, 0x4A,
  740. 0x4D, 0x2C, 0x0B, 0x67, 0x37, 0xAC, 0x3E, 0xDA },
  741. { 0x36, 0xCB, 0xEB, 0x73, 0xBD, 0x50, 0x4B, 0x40,
  742. 0x70, 0xB1, 0xB7, 0xDE, 0x2B, 0x21, 0xEB, 0x50 },
  743. { 0xE3, 0x1A, 0x60, 0x55, 0x29, 0x7D, 0x96, 0xCA,
  744. 0x33, 0x30, 0xCD, 0xF1, 0xB1, 0x86, 0x0A, 0x83 }
  745. }
  746. };
  747. #endif /* MBEDTLS_CIPHER_MODE_CBC */
  748. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  749. /*
  750. * Camellia-CTR test vectors from:
  751. *
  752. * http://www.faqs.org/rfcs/rfc5528.html
  753. */
  754. static const unsigned char camellia_test_ctr_key[3][16] =
  755. {
  756. { 0xAE, 0x68, 0x52, 0xF8, 0x12, 0x10, 0x67, 0xCC,
  757. 0x4B, 0xF7, 0xA5, 0x76, 0x55, 0x77, 0xF3, 0x9E },
  758. { 0x7E, 0x24, 0x06, 0x78, 0x17, 0xFA, 0xE0, 0xD7,
  759. 0x43, 0xD6, 0xCE, 0x1F, 0x32, 0x53, 0x91, 0x63 },
  760. { 0x76, 0x91, 0xBE, 0x03, 0x5E, 0x50, 0x20, 0xA8,
  761. 0xAC, 0x6E, 0x61, 0x85, 0x29, 0xF9, 0xA0, 0xDC }
  762. };
  763. static const unsigned char camellia_test_ctr_nonce_counter[3][16] =
  764. {
  765. { 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00,
  766. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 },
  767. { 0x00, 0x6C, 0xB6, 0xDB, 0xC0, 0x54, 0x3B, 0x59,
  768. 0xDA, 0x48, 0xD9, 0x0B, 0x00, 0x00, 0x00, 0x01 },
  769. { 0x00, 0xE0, 0x01, 0x7B, 0x27, 0x77, 0x7F, 0x3F,
  770. 0x4A, 0x17, 0x86, 0xF0, 0x00, 0x00, 0x00, 0x01 }
  771. };
  772. static const unsigned char camellia_test_ctr_pt[3][48] =
  773. {
  774. { 0x53, 0x69, 0x6E, 0x67, 0x6C, 0x65, 0x20, 0x62,
  775. 0x6C, 0x6F, 0x63, 0x6B, 0x20, 0x6D, 0x73, 0x67 },
  776. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  777. 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
  778. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
  779. 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F },
  780. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  781. 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
  782. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
  783. 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F,
  784. 0x20, 0x21, 0x22, 0x23 }
  785. };
  786. static const unsigned char camellia_test_ctr_ct[3][48] =
  787. {
  788. { 0xD0, 0x9D, 0xC2, 0x9A, 0x82, 0x14, 0x61, 0x9A,
  789. 0x20, 0x87, 0x7C, 0x76, 0xDB, 0x1F, 0x0B, 0x3F },
  790. { 0xDB, 0xF3, 0xC7, 0x8D, 0xC0, 0x83, 0x96, 0xD4,
  791. 0xDA, 0x7C, 0x90, 0x77, 0x65, 0xBB, 0xCB, 0x44,
  792. 0x2B, 0x8E, 0x8E, 0x0F, 0x31, 0xF0, 0xDC, 0xA7,
  793. 0x2C, 0x74, 0x17, 0xE3, 0x53, 0x60, 0xE0, 0x48 },
  794. { 0xB1, 0x9D, 0x1F, 0xCD, 0xCB, 0x75, 0xEB, 0x88,
  795. 0x2F, 0x84, 0x9C, 0xE2, 0x4D, 0x85, 0xCF, 0x73,
  796. 0x9C, 0xE6, 0x4B, 0x2B, 0x5C, 0x9D, 0x73, 0xF1,
  797. 0x4F, 0x2D, 0x5D, 0x9D, 0xCE, 0x98, 0x89, 0xCD,
  798. 0xDF, 0x50, 0x86, 0x96 }
  799. };
  800. static const int camellia_test_ctr_len[3] =
  801. { 16, 32, 36 };
  802. #endif /* MBEDTLS_CIPHER_MODE_CTR */
  803. /*
  804. * Checkup routine
  805. */
  806. int mbedtls_camellia_self_test( int verbose )
  807. {
  808. int i, j, u, v;
  809. unsigned char key[32];
  810. unsigned char buf[64];
  811. unsigned char src[16];
  812. unsigned char dst[16];
  813. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  814. unsigned char iv[16];
  815. #endif
  816. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  817. size_t offset, len;
  818. unsigned char nonce_counter[16];
  819. unsigned char stream_block[16];
  820. #endif
  821. int ret = 1;
  822. mbedtls_camellia_context ctx;
  823. mbedtls_camellia_init( &ctx );
  824. memset( key, 0, 32 );
  825. for( j = 0; j < 6; j++ ) {
  826. u = j >> 1;
  827. v = j & 1;
  828. if( verbose != 0 )
  829. mbedtls_printf( " CAMELLIA-ECB-%3d (%s): ", 128 + u * 64,
  830. (v == MBEDTLS_CAMELLIA_DECRYPT) ? "dec" : "enc");
  831. for( i = 0; i < CAMELLIA_TESTS_ECB; i++ ) {
  832. memcpy( key, camellia_test_ecb_key[u][i], 16 + 8 * u );
  833. if( v == MBEDTLS_CAMELLIA_DECRYPT ) {
  834. mbedtls_camellia_setkey_dec( &ctx, key, 128 + u * 64 );
  835. memcpy( src, camellia_test_ecb_cipher[u][i], 16 );
  836. memcpy( dst, camellia_test_ecb_plain[i], 16 );
  837. } else { /* MBEDTLS_CAMELLIA_ENCRYPT */
  838. mbedtls_camellia_setkey_enc( &ctx, key, 128 + u * 64 );
  839. memcpy( src, camellia_test_ecb_plain[i], 16 );
  840. memcpy( dst, camellia_test_ecb_cipher[u][i], 16 );
  841. }
  842. mbedtls_camellia_crypt_ecb( &ctx, v, src, buf );
  843. if( memcmp( buf, dst, 16 ) != 0 )
  844. {
  845. if( verbose != 0 )
  846. mbedtls_printf( "failed\n" );
  847. goto exit;
  848. }
  849. }
  850. if( verbose != 0 )
  851. mbedtls_printf( "passed\n" );
  852. }
  853. if( verbose != 0 )
  854. mbedtls_printf( "\n" );
  855. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  856. /*
  857. * CBC mode
  858. */
  859. for( j = 0; j < 6; j++ )
  860. {
  861. u = j >> 1;
  862. v = j & 1;
  863. if( verbose != 0 )
  864. mbedtls_printf( " CAMELLIA-CBC-%3d (%s): ", 128 + u * 64,
  865. ( v == MBEDTLS_CAMELLIA_DECRYPT ) ? "dec" : "enc" );
  866. memcpy( src, camellia_test_cbc_iv, 16 );
  867. memcpy( dst, camellia_test_cbc_iv, 16 );
  868. memcpy( key, camellia_test_cbc_key[u], 16 + 8 * u );
  869. if( v == MBEDTLS_CAMELLIA_DECRYPT ) {
  870. mbedtls_camellia_setkey_dec( &ctx, key, 128 + u * 64 );
  871. } else {
  872. mbedtls_camellia_setkey_enc( &ctx, key, 128 + u * 64 );
  873. }
  874. for( i = 0; i < CAMELLIA_TESTS_CBC; i++ ) {
  875. if( v == MBEDTLS_CAMELLIA_DECRYPT ) {
  876. memcpy( iv , src, 16 );
  877. memcpy( src, camellia_test_cbc_cipher[u][i], 16 );
  878. memcpy( dst, camellia_test_cbc_plain[i], 16 );
  879. } else { /* MBEDTLS_CAMELLIA_ENCRYPT */
  880. memcpy( iv , dst, 16 );
  881. memcpy( src, camellia_test_cbc_plain[i], 16 );
  882. memcpy( dst, camellia_test_cbc_cipher[u][i], 16 );
  883. }
  884. mbedtls_camellia_crypt_cbc( &ctx, v, 16, iv, src, buf );
  885. if( memcmp( buf, dst, 16 ) != 0 )
  886. {
  887. if( verbose != 0 )
  888. mbedtls_printf( "failed\n" );
  889. goto exit;
  890. }
  891. }
  892. if( verbose != 0 )
  893. mbedtls_printf( "passed\n" );
  894. }
  895. #endif /* MBEDTLS_CIPHER_MODE_CBC */
  896. if( verbose != 0 )
  897. mbedtls_printf( "\n" );
  898. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  899. /*
  900. * CTR mode
  901. */
  902. for( i = 0; i < 6; i++ )
  903. {
  904. u = i >> 1;
  905. v = i & 1;
  906. if( verbose != 0 )
  907. mbedtls_printf( " CAMELLIA-CTR-128 (%s): ",
  908. ( v == MBEDTLS_CAMELLIA_DECRYPT ) ? "dec" : "enc" );
  909. memcpy( nonce_counter, camellia_test_ctr_nonce_counter[u], 16 );
  910. memcpy( key, camellia_test_ctr_key[u], 16 );
  911. offset = 0;
  912. mbedtls_camellia_setkey_enc( &ctx, key, 128 );
  913. if( v == MBEDTLS_CAMELLIA_DECRYPT )
  914. {
  915. len = camellia_test_ctr_len[u];
  916. memcpy( buf, camellia_test_ctr_ct[u], len );
  917. mbedtls_camellia_crypt_ctr( &ctx, len, &offset, nonce_counter, stream_block,
  918. buf, buf );
  919. if( memcmp( buf, camellia_test_ctr_pt[u], len ) != 0 )
  920. {
  921. if( verbose != 0 )
  922. mbedtls_printf( "failed\n" );
  923. goto exit;
  924. }
  925. }
  926. else
  927. {
  928. len = camellia_test_ctr_len[u];
  929. memcpy( buf, camellia_test_ctr_pt[u], len );
  930. mbedtls_camellia_crypt_ctr( &ctx, len, &offset, nonce_counter, stream_block,
  931. buf, buf );
  932. if( memcmp( buf, camellia_test_ctr_ct[u], len ) != 0 )
  933. {
  934. if( verbose != 0 )
  935. mbedtls_printf( "failed\n" );
  936. goto exit;
  937. }
  938. }
  939. if( verbose != 0 )
  940. mbedtls_printf( "passed\n" );
  941. }
  942. if( verbose != 0 )
  943. mbedtls_printf( "\n" );
  944. #endif /* MBEDTLS_CIPHER_MODE_CTR */
  945. ret = 0;
  946. exit:
  947. mbedtls_camellia_free( &ctx );
  948. return( ret );
  949. }
  950. #endif /* MBEDTLS_SELF_TEST */
  951. #endif /* MBEDTLS_CAMELLIA_C */