camellia.c 34 KB

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