camellia.c 34 KB

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