camellia.c 37 KB

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