camellia.c 34 KB

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