aria.c 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105
  1. /*
  2. * ARIA 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. * This implementation is based on the following standards:
  48. * [1] http://210.104.33.10/ARIA/doc/ARIA-specification-e.pdf
  49. * [2] https://tools.ietf.org/html/rfc5794
  50. */
  51. #if !defined(MBEDTLS_CONFIG_FILE)
  52. #include "mbedtls/config.h"
  53. #else
  54. #include MBEDTLS_CONFIG_FILE
  55. #endif
  56. #if defined(MBEDTLS_ARIA_C)
  57. #include "mbedtls/aria.h"
  58. #include <string.h>
  59. #if defined(MBEDTLS_SELF_TEST)
  60. #if defined(MBEDTLS_PLATFORM_C)
  61. #include "mbedtls/platform.h"
  62. #else
  63. #include <stdio.h>
  64. #define mbedtls_printf printf
  65. #endif /* MBEDTLS_PLATFORM_C */
  66. #endif /* MBEDTLS_SELF_TEST */
  67. #if !defined(MBEDTLS_ARIA_ALT)
  68. #include "mbedtls/platform_util.h"
  69. #if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
  70. !defined(inline) && !defined(__cplusplus)
  71. #define inline __inline
  72. #endif
  73. /* Parameter validation macros */
  74. #define ARIA_VALIDATE_RET( cond ) \
  75. MBEDTLS_INTERNAL_VALIDATE_RET( cond, MBEDTLS_ERR_ARIA_BAD_INPUT_DATA )
  76. #define ARIA_VALIDATE( cond ) \
  77. MBEDTLS_INTERNAL_VALIDATE( cond )
  78. /*
  79. * 32-bit integer manipulation macros (little endian)
  80. */
  81. #ifndef GET_UINT32_LE
  82. #define GET_UINT32_LE( n, b, i ) \
  83. { \
  84. (n) = ( (uint32_t) (b)[(i) ] ) \
  85. | ( (uint32_t) (b)[(i) + 1] << 8 ) \
  86. | ( (uint32_t) (b)[(i) + 2] << 16 ) \
  87. | ( (uint32_t) (b)[(i) + 3] << 24 ); \
  88. }
  89. #endif
  90. #ifndef PUT_UINT32_LE
  91. #define PUT_UINT32_LE( n, b, i ) \
  92. { \
  93. (b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
  94. (b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
  95. (b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
  96. (b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
  97. }
  98. #endif
  99. /*
  100. * modify byte order: ( A B C D ) -> ( B A D C ), i.e. swap pairs of bytes
  101. *
  102. * This is submatrix P1 in [1] Appendix B.1
  103. *
  104. * Common compilers fail to translate this to minimal number of instructions,
  105. * so let's provide asm versions for common platforms with C fallback.
  106. */
  107. #if defined(MBEDTLS_HAVE_ASM)
  108. #if defined(__arm__) /* rev16 available from v6 up */
  109. /* armcc5 --gnu defines __GNUC__ but doesn't support GNU's extended asm */
  110. #if defined(__GNUC__) && \
  111. ( !defined(__ARMCC_VERSION) || __ARMCC_VERSION >= 6000000 ) && \
  112. __ARM_ARCH >= 6
  113. static inline uint32_t aria_p1( uint32_t x )
  114. {
  115. uint32_t r;
  116. __asm( "rev16 %0, %1" : "=l" (r) : "l" (x) );
  117. return( r );
  118. }
  119. #define ARIA_P1 aria_p1
  120. #elif defined(__ARMCC_VERSION) && __ARMCC_VERSION < 6000000 && \
  121. ( __TARGET_ARCH_ARM >= 6 || __TARGET_ARCH_THUMB >= 3 )
  122. static inline uint32_t aria_p1( uint32_t x )
  123. {
  124. uint32_t r;
  125. __asm( "rev16 r, x" );
  126. return( r );
  127. }
  128. #define ARIA_P1 aria_p1
  129. #endif
  130. #endif /* arm */
  131. #if defined(__GNUC__) && \
  132. defined(__i386__) || defined(__amd64__) || defined( __x86_64__)
  133. /* I couldn't find an Intel equivalent of rev16, so two instructions */
  134. #define ARIA_P1(x) ARIA_P2( ARIA_P3( x ) )
  135. #endif /* x86 gnuc */
  136. #endif /* MBEDTLS_HAVE_ASM && GNUC */
  137. #if !defined(ARIA_P1)
  138. #define ARIA_P1(x) ((((x) >> 8) & 0x00FF00FF) ^ (((x) & 0x00FF00FF) << 8))
  139. #endif
  140. /*
  141. * modify byte order: ( A B C D ) -> ( C D A B ), i.e. rotate by 16 bits
  142. *
  143. * This is submatrix P2 in [1] Appendix B.1
  144. *
  145. * Common compilers will translate this to a single instruction.
  146. */
  147. #define ARIA_P2(x) (((x) >> 16) ^ ((x) << 16))
  148. /*
  149. * modify byte order: ( A B C D ) -> ( D C B A ), i.e. change endianness
  150. *
  151. * This is submatrix P3 in [1] Appendix B.1
  152. *
  153. * Some compilers fail to translate this to a single instruction,
  154. * so let's provide asm versions for common platforms with C fallback.
  155. */
  156. #if defined(MBEDTLS_HAVE_ASM)
  157. #if defined(__arm__) /* rev available from v6 up */
  158. /* armcc5 --gnu defines __GNUC__ but doesn't support GNU's extended asm */
  159. #if defined(__GNUC__) && \
  160. ( !defined(__ARMCC_VERSION) || __ARMCC_VERSION >= 6000000 ) && \
  161. __ARM_ARCH >= 6
  162. static inline uint32_t aria_p3( uint32_t x )
  163. {
  164. uint32_t r;
  165. __asm( "rev %0, %1" : "=l" (r) : "l" (x) );
  166. return( r );
  167. }
  168. #define ARIA_P3 aria_p3
  169. #elif defined(__ARMCC_VERSION) && __ARMCC_VERSION < 6000000 && \
  170. ( __TARGET_ARCH_ARM >= 6 || __TARGET_ARCH_THUMB >= 3 )
  171. static inline uint32_t aria_p3( uint32_t x )
  172. {
  173. uint32_t r;
  174. __asm( "rev r, x" );
  175. return( r );
  176. }
  177. #define ARIA_P3 aria_p3
  178. #endif
  179. #endif /* arm */
  180. #if defined(__GNUC__) && \
  181. defined(__i386__) || defined(__amd64__) || defined( __x86_64__)
  182. static inline uint32_t aria_p3( uint32_t x )
  183. {
  184. __asm( "bswap %0" : "=r" (x) : "0" (x) );
  185. return( x );
  186. }
  187. #define ARIA_P3 aria_p3
  188. #endif /* x86 gnuc */
  189. #endif /* MBEDTLS_HAVE_ASM && GNUC */
  190. #if !defined(ARIA_P3)
  191. #define ARIA_P3(x) ARIA_P2( ARIA_P1 ( x ) )
  192. #endif
  193. /*
  194. * ARIA Affine Transform
  195. * (a, b, c, d) = state in/out
  196. *
  197. * If we denote the first byte of input by 0, ..., the last byte by f,
  198. * then inputs are: a = 0123, b = 4567, c = 89ab, d = cdef.
  199. *
  200. * Reading [1] 2.4 or [2] 2.4.3 in columns and performing simple
  201. * rearrangements on adjacent pairs, output is:
  202. *
  203. * a = 3210 + 4545 + 6767 + 88aa + 99bb + dccd + effe
  204. * = 3210 + 4567 + 6745 + 89ab + 98ba + dcfe + efcd
  205. * b = 0101 + 2323 + 5476 + 8998 + baab + eecc + ffdd
  206. * = 0123 + 2301 + 5476 + 89ab + ba98 + efcd + fedc
  207. * c = 0022 + 1133 + 4554 + 7667 + ab89 + dcdc + fefe
  208. * = 0123 + 1032 + 4567 + 7654 + ab89 + dcfe + fedc
  209. * d = 1001 + 2332 + 6644 + 7755 + 9898 + baba + cdef
  210. * = 1032 + 2301 + 6745 + 7654 + 98ba + ba98 + cdef
  211. *
  212. * Note: another presentation of the A transform can be found as the first
  213. * half of App. B.1 in [1] in terms of 4-byte operators P1, P2, P3 and P4.
  214. * The implementation below uses only P1 and P2 as they are sufficient.
  215. */
  216. static inline void aria_a( uint32_t *a, uint32_t *b,
  217. uint32_t *c, uint32_t *d )
  218. {
  219. uint32_t ta, tb, tc;
  220. ta = *b; // 4567
  221. *b = *a; // 0123
  222. *a = ARIA_P2( ta ); // 6745
  223. tb = ARIA_P2( *d ); // efcd
  224. *d = ARIA_P1( *c ); // 98ba
  225. *c = ARIA_P1( tb ); // fedc
  226. ta ^= *d; // 4567+98ba
  227. tc = ARIA_P2( *b ); // 2301
  228. ta = ARIA_P1( ta ) ^ tc ^ *c; // 2301+5476+89ab+fedc
  229. tb ^= ARIA_P2( *d ); // ba98+efcd
  230. tc ^= ARIA_P1( *a ); // 2301+7654
  231. *b ^= ta ^ tb; // 0123+2301+5476+89ab+ba98+efcd+fedc OUT
  232. tb = ARIA_P2( tb ) ^ ta; // 2301+5476+89ab+98ba+cdef+fedc
  233. *a ^= ARIA_P1( tb ); // 3210+4567+6745+89ab+98ba+dcfe+efcd OUT
  234. ta = ARIA_P2( ta ); // 0123+7654+ab89+dcfe
  235. *d ^= ARIA_P1( ta ) ^ tc; // 1032+2301+6745+7654+98ba+ba98+cdef OUT
  236. tc = ARIA_P2( tc ); // 0123+5476
  237. *c ^= ARIA_P1( tc ) ^ ta; // 0123+1032+4567+7654+ab89+dcfe+fedc OUT
  238. }
  239. /*
  240. * ARIA Substitution Layer SL1 / SL2
  241. * (a, b, c, d) = state in/out
  242. * (sa, sb, sc, sd) = 256 8-bit S-Boxes (see below)
  243. *
  244. * By passing sb1, sb2, is1, is2 as S-Boxes you get SL1
  245. * By passing is1, is2, sb1, sb2 as S-Boxes you get SL2
  246. */
  247. static inline void aria_sl( uint32_t *a, uint32_t *b,
  248. uint32_t *c, uint32_t *d,
  249. const uint8_t sa[256], const uint8_t sb[256],
  250. const uint8_t sc[256], const uint8_t sd[256] )
  251. {
  252. *a = ( (uint32_t) sa[ *a & 0xFF] ) ^
  253. (((uint32_t) sb[(*a >> 8) & 0xFF]) << 8) ^
  254. (((uint32_t) sc[(*a >> 16) & 0xFF]) << 16) ^
  255. (((uint32_t) sd[ *a >> 24 ]) << 24);
  256. *b = ( (uint32_t) sa[ *b & 0xFF] ) ^
  257. (((uint32_t) sb[(*b >> 8) & 0xFF]) << 8) ^
  258. (((uint32_t) sc[(*b >> 16) & 0xFF]) << 16) ^
  259. (((uint32_t) sd[ *b >> 24 ]) << 24);
  260. *c = ( (uint32_t) sa[ *c & 0xFF] ) ^
  261. (((uint32_t) sb[(*c >> 8) & 0xFF]) << 8) ^
  262. (((uint32_t) sc[(*c >> 16) & 0xFF]) << 16) ^
  263. (((uint32_t) sd[ *c >> 24 ]) << 24);
  264. *d = ( (uint32_t) sa[ *d & 0xFF] ) ^
  265. (((uint32_t) sb[(*d >> 8) & 0xFF]) << 8) ^
  266. (((uint32_t) sc[(*d >> 16) & 0xFF]) << 16) ^
  267. (((uint32_t) sd[ *d >> 24 ]) << 24);
  268. }
  269. /*
  270. * S-Boxes
  271. */
  272. static const uint8_t aria_sb1[256] =
  273. {
  274. 0x63, 0x7C, 0x77, 0x7B, 0xF2, 0x6B, 0x6F, 0xC5, 0x30, 0x01, 0x67, 0x2B,
  275. 0xFE, 0xD7, 0xAB, 0x76, 0xCA, 0x82, 0xC9, 0x7D, 0xFA, 0x59, 0x47, 0xF0,
  276. 0xAD, 0xD4, 0xA2, 0xAF, 0x9C, 0xA4, 0x72, 0xC0, 0xB7, 0xFD, 0x93, 0x26,
  277. 0x36, 0x3F, 0xF7, 0xCC, 0x34, 0xA5, 0xE5, 0xF1, 0x71, 0xD8, 0x31, 0x15,
  278. 0x04, 0xC7, 0x23, 0xC3, 0x18, 0x96, 0x05, 0x9A, 0x07, 0x12, 0x80, 0xE2,
  279. 0xEB, 0x27, 0xB2, 0x75, 0x09, 0x83, 0x2C, 0x1A, 0x1B, 0x6E, 0x5A, 0xA0,
  280. 0x52, 0x3B, 0xD6, 0xB3, 0x29, 0xE3, 0x2F, 0x84, 0x53, 0xD1, 0x00, 0xED,
  281. 0x20, 0xFC, 0xB1, 0x5B, 0x6A, 0xCB, 0xBE, 0x39, 0x4A, 0x4C, 0x58, 0xCF,
  282. 0xD0, 0xEF, 0xAA, 0xFB, 0x43, 0x4D, 0x33, 0x85, 0x45, 0xF9, 0x02, 0x7F,
  283. 0x50, 0x3C, 0x9F, 0xA8, 0x51, 0xA3, 0x40, 0x8F, 0x92, 0x9D, 0x38, 0xF5,
  284. 0xBC, 0xB6, 0xDA, 0x21, 0x10, 0xFF, 0xF3, 0xD2, 0xCD, 0x0C, 0x13, 0xEC,
  285. 0x5F, 0x97, 0x44, 0x17, 0xC4, 0xA7, 0x7E, 0x3D, 0x64, 0x5D, 0x19, 0x73,
  286. 0x60, 0x81, 0x4F, 0xDC, 0x22, 0x2A, 0x90, 0x88, 0x46, 0xEE, 0xB8, 0x14,
  287. 0xDE, 0x5E, 0x0B, 0xDB, 0xE0, 0x32, 0x3A, 0x0A, 0x49, 0x06, 0x24, 0x5C,
  288. 0xC2, 0xD3, 0xAC, 0x62, 0x91, 0x95, 0xE4, 0x79, 0xE7, 0xC8, 0x37, 0x6D,
  289. 0x8D, 0xD5, 0x4E, 0xA9, 0x6C, 0x56, 0xF4, 0xEA, 0x65, 0x7A, 0xAE, 0x08,
  290. 0xBA, 0x78, 0x25, 0x2E, 0x1C, 0xA6, 0xB4, 0xC6, 0xE8, 0xDD, 0x74, 0x1F,
  291. 0x4B, 0xBD, 0x8B, 0x8A, 0x70, 0x3E, 0xB5, 0x66, 0x48, 0x03, 0xF6, 0x0E,
  292. 0x61, 0x35, 0x57, 0xB9, 0x86, 0xC1, 0x1D, 0x9E, 0xE1, 0xF8, 0x98, 0x11,
  293. 0x69, 0xD9, 0x8E, 0x94, 0x9B, 0x1E, 0x87, 0xE9, 0xCE, 0x55, 0x28, 0xDF,
  294. 0x8C, 0xA1, 0x89, 0x0D, 0xBF, 0xE6, 0x42, 0x68, 0x41, 0x99, 0x2D, 0x0F,
  295. 0xB0, 0x54, 0xBB, 0x16
  296. };
  297. static const uint8_t aria_sb2[256] =
  298. {
  299. 0xE2, 0x4E, 0x54, 0xFC, 0x94, 0xC2, 0x4A, 0xCC, 0x62, 0x0D, 0x6A, 0x46,
  300. 0x3C, 0x4D, 0x8B, 0xD1, 0x5E, 0xFA, 0x64, 0xCB, 0xB4, 0x97, 0xBE, 0x2B,
  301. 0xBC, 0x77, 0x2E, 0x03, 0xD3, 0x19, 0x59, 0xC1, 0x1D, 0x06, 0x41, 0x6B,
  302. 0x55, 0xF0, 0x99, 0x69, 0xEA, 0x9C, 0x18, 0xAE, 0x63, 0xDF, 0xE7, 0xBB,
  303. 0x00, 0x73, 0x66, 0xFB, 0x96, 0x4C, 0x85, 0xE4, 0x3A, 0x09, 0x45, 0xAA,
  304. 0x0F, 0xEE, 0x10, 0xEB, 0x2D, 0x7F, 0xF4, 0x29, 0xAC, 0xCF, 0xAD, 0x91,
  305. 0x8D, 0x78, 0xC8, 0x95, 0xF9, 0x2F, 0xCE, 0xCD, 0x08, 0x7A, 0x88, 0x38,
  306. 0x5C, 0x83, 0x2A, 0x28, 0x47, 0xDB, 0xB8, 0xC7, 0x93, 0xA4, 0x12, 0x53,
  307. 0xFF, 0x87, 0x0E, 0x31, 0x36, 0x21, 0x58, 0x48, 0x01, 0x8E, 0x37, 0x74,
  308. 0x32, 0xCA, 0xE9, 0xB1, 0xB7, 0xAB, 0x0C, 0xD7, 0xC4, 0x56, 0x42, 0x26,
  309. 0x07, 0x98, 0x60, 0xD9, 0xB6, 0xB9, 0x11, 0x40, 0xEC, 0x20, 0x8C, 0xBD,
  310. 0xA0, 0xC9, 0x84, 0x04, 0x49, 0x23, 0xF1, 0x4F, 0x50, 0x1F, 0x13, 0xDC,
  311. 0xD8, 0xC0, 0x9E, 0x57, 0xE3, 0xC3, 0x7B, 0x65, 0x3B, 0x02, 0x8F, 0x3E,
  312. 0xE8, 0x25, 0x92, 0xE5, 0x15, 0xDD, 0xFD, 0x17, 0xA9, 0xBF, 0xD4, 0x9A,
  313. 0x7E, 0xC5, 0x39, 0x67, 0xFE, 0x76, 0x9D, 0x43, 0xA7, 0xE1, 0xD0, 0xF5,
  314. 0x68, 0xF2, 0x1B, 0x34, 0x70, 0x05, 0xA3, 0x8A, 0xD5, 0x79, 0x86, 0xA8,
  315. 0x30, 0xC6, 0x51, 0x4B, 0x1E, 0xA6, 0x27, 0xF6, 0x35, 0xD2, 0x6E, 0x24,
  316. 0x16, 0x82, 0x5F, 0xDA, 0xE6, 0x75, 0xA2, 0xEF, 0x2C, 0xB2, 0x1C, 0x9F,
  317. 0x5D, 0x6F, 0x80, 0x0A, 0x72, 0x44, 0x9B, 0x6C, 0x90, 0x0B, 0x5B, 0x33,
  318. 0x7D, 0x5A, 0x52, 0xF3, 0x61, 0xA1, 0xF7, 0xB0, 0xD6, 0x3F, 0x7C, 0x6D,
  319. 0xED, 0x14, 0xE0, 0xA5, 0x3D, 0x22, 0xB3, 0xF8, 0x89, 0xDE, 0x71, 0x1A,
  320. 0xAF, 0xBA, 0xB5, 0x81
  321. };
  322. static const uint8_t aria_is1[256] =
  323. {
  324. 0x52, 0x09, 0x6A, 0xD5, 0x30, 0x36, 0xA5, 0x38, 0xBF, 0x40, 0xA3, 0x9E,
  325. 0x81, 0xF3, 0xD7, 0xFB, 0x7C, 0xE3, 0x39, 0x82, 0x9B, 0x2F, 0xFF, 0x87,
  326. 0x34, 0x8E, 0x43, 0x44, 0xC4, 0xDE, 0xE9, 0xCB, 0x54, 0x7B, 0x94, 0x32,
  327. 0xA6, 0xC2, 0x23, 0x3D, 0xEE, 0x4C, 0x95, 0x0B, 0x42, 0xFA, 0xC3, 0x4E,
  328. 0x08, 0x2E, 0xA1, 0x66, 0x28, 0xD9, 0x24, 0xB2, 0x76, 0x5B, 0xA2, 0x49,
  329. 0x6D, 0x8B, 0xD1, 0x25, 0x72, 0xF8, 0xF6, 0x64, 0x86, 0x68, 0x98, 0x16,
  330. 0xD4, 0xA4, 0x5C, 0xCC, 0x5D, 0x65, 0xB6, 0x92, 0x6C, 0x70, 0x48, 0x50,
  331. 0xFD, 0xED, 0xB9, 0xDA, 0x5E, 0x15, 0x46, 0x57, 0xA7, 0x8D, 0x9D, 0x84,
  332. 0x90, 0xD8, 0xAB, 0x00, 0x8C, 0xBC, 0xD3, 0x0A, 0xF7, 0xE4, 0x58, 0x05,
  333. 0xB8, 0xB3, 0x45, 0x06, 0xD0, 0x2C, 0x1E, 0x8F, 0xCA, 0x3F, 0x0F, 0x02,
  334. 0xC1, 0xAF, 0xBD, 0x03, 0x01, 0x13, 0x8A, 0x6B, 0x3A, 0x91, 0x11, 0x41,
  335. 0x4F, 0x67, 0xDC, 0xEA, 0x97, 0xF2, 0xCF, 0xCE, 0xF0, 0xB4, 0xE6, 0x73,
  336. 0x96, 0xAC, 0x74, 0x22, 0xE7, 0xAD, 0x35, 0x85, 0xE2, 0xF9, 0x37, 0xE8,
  337. 0x1C, 0x75, 0xDF, 0x6E, 0x47, 0xF1, 0x1A, 0x71, 0x1D, 0x29, 0xC5, 0x89,
  338. 0x6F, 0xB7, 0x62, 0x0E, 0xAA, 0x18, 0xBE, 0x1B, 0xFC, 0x56, 0x3E, 0x4B,
  339. 0xC6, 0xD2, 0x79, 0x20, 0x9A, 0xDB, 0xC0, 0xFE, 0x78, 0xCD, 0x5A, 0xF4,
  340. 0x1F, 0xDD, 0xA8, 0x33, 0x88, 0x07, 0xC7, 0x31, 0xB1, 0x12, 0x10, 0x59,
  341. 0x27, 0x80, 0xEC, 0x5F, 0x60, 0x51, 0x7F, 0xA9, 0x19, 0xB5, 0x4A, 0x0D,
  342. 0x2D, 0xE5, 0x7A, 0x9F, 0x93, 0xC9, 0x9C, 0xEF, 0xA0, 0xE0, 0x3B, 0x4D,
  343. 0xAE, 0x2A, 0xF5, 0xB0, 0xC8, 0xEB, 0xBB, 0x3C, 0x83, 0x53, 0x99, 0x61,
  344. 0x17, 0x2B, 0x04, 0x7E, 0xBA, 0x77, 0xD6, 0x26, 0xE1, 0x69, 0x14, 0x63,
  345. 0x55, 0x21, 0x0C, 0x7D
  346. };
  347. static const uint8_t aria_is2[256] =
  348. {
  349. 0x30, 0x68, 0x99, 0x1B, 0x87, 0xB9, 0x21, 0x78, 0x50, 0x39, 0xDB, 0xE1,
  350. 0x72, 0x09, 0x62, 0x3C, 0x3E, 0x7E, 0x5E, 0x8E, 0xF1, 0xA0, 0xCC, 0xA3,
  351. 0x2A, 0x1D, 0xFB, 0xB6, 0xD6, 0x20, 0xC4, 0x8D, 0x81, 0x65, 0xF5, 0x89,
  352. 0xCB, 0x9D, 0x77, 0xC6, 0x57, 0x43, 0x56, 0x17, 0xD4, 0x40, 0x1A, 0x4D,
  353. 0xC0, 0x63, 0x6C, 0xE3, 0xB7, 0xC8, 0x64, 0x6A, 0x53, 0xAA, 0x38, 0x98,
  354. 0x0C, 0xF4, 0x9B, 0xED, 0x7F, 0x22, 0x76, 0xAF, 0xDD, 0x3A, 0x0B, 0x58,
  355. 0x67, 0x88, 0x06, 0xC3, 0x35, 0x0D, 0x01, 0x8B, 0x8C, 0xC2, 0xE6, 0x5F,
  356. 0x02, 0x24, 0x75, 0x93, 0x66, 0x1E, 0xE5, 0xE2, 0x54, 0xD8, 0x10, 0xCE,
  357. 0x7A, 0xE8, 0x08, 0x2C, 0x12, 0x97, 0x32, 0xAB, 0xB4, 0x27, 0x0A, 0x23,
  358. 0xDF, 0xEF, 0xCA, 0xD9, 0xB8, 0xFA, 0xDC, 0x31, 0x6B, 0xD1, 0xAD, 0x19,
  359. 0x49, 0xBD, 0x51, 0x96, 0xEE, 0xE4, 0xA8, 0x41, 0xDA, 0xFF, 0xCD, 0x55,
  360. 0x86, 0x36, 0xBE, 0x61, 0x52, 0xF8, 0xBB, 0x0E, 0x82, 0x48, 0x69, 0x9A,
  361. 0xE0, 0x47, 0x9E, 0x5C, 0x04, 0x4B, 0x34, 0x15, 0x79, 0x26, 0xA7, 0xDE,
  362. 0x29, 0xAE, 0x92, 0xD7, 0x84, 0xE9, 0xD2, 0xBA, 0x5D, 0xF3, 0xC5, 0xB0,
  363. 0xBF, 0xA4, 0x3B, 0x71, 0x44, 0x46, 0x2B, 0xFC, 0xEB, 0x6F, 0xD5, 0xF6,
  364. 0x14, 0xFE, 0x7C, 0x70, 0x5A, 0x7D, 0xFD, 0x2F, 0x18, 0x83, 0x16, 0xA5,
  365. 0x91, 0x1F, 0x05, 0x95, 0x74, 0xA9, 0xC1, 0x5B, 0x4A, 0x85, 0x6D, 0x13,
  366. 0x07, 0x4F, 0x4E, 0x45, 0xB2, 0x0F, 0xC9, 0x1C, 0xA6, 0xBC, 0xEC, 0x73,
  367. 0x90, 0x7B, 0xCF, 0x59, 0x8F, 0xA1, 0xF9, 0x2D, 0xF2, 0xB1, 0x00, 0x94,
  368. 0x37, 0x9F, 0xD0, 0x2E, 0x9C, 0x6E, 0x28, 0x3F, 0x80, 0xF0, 0x3D, 0xD3,
  369. 0x25, 0x8A, 0xB5, 0xE7, 0x42, 0xB3, 0xC7, 0xEA, 0xF7, 0x4C, 0x11, 0x33,
  370. 0x03, 0xA2, 0xAC, 0x60
  371. };
  372. /*
  373. * Helper for key schedule: r = FO( p, k ) ^ x
  374. */
  375. static void aria_fo_xor( uint32_t r[4], const uint32_t p[4],
  376. const uint32_t k[4], const uint32_t x[4] )
  377. {
  378. uint32_t a, b, c, d;
  379. a = p[0] ^ k[0];
  380. b = p[1] ^ k[1];
  381. c = p[2] ^ k[2];
  382. d = p[3] ^ k[3];
  383. aria_sl( &a, &b, &c, &d, aria_sb1, aria_sb2, aria_is1, aria_is2 );
  384. aria_a( &a, &b, &c, &d );
  385. r[0] = a ^ x[0];
  386. r[1] = b ^ x[1];
  387. r[2] = c ^ x[2];
  388. r[3] = d ^ x[3];
  389. }
  390. /*
  391. * Helper for key schedule: r = FE( p, k ) ^ x
  392. */
  393. static void aria_fe_xor( uint32_t r[4], const uint32_t p[4],
  394. const uint32_t k[4], const uint32_t x[4] )
  395. {
  396. uint32_t a, b, c, d;
  397. a = p[0] ^ k[0];
  398. b = p[1] ^ k[1];
  399. c = p[2] ^ k[2];
  400. d = p[3] ^ k[3];
  401. aria_sl( &a, &b, &c, &d, aria_is1, aria_is2, aria_sb1, aria_sb2 );
  402. aria_a( &a, &b, &c, &d );
  403. r[0] = a ^ x[0];
  404. r[1] = b ^ x[1];
  405. r[2] = c ^ x[2];
  406. r[3] = d ^ x[3];
  407. }
  408. /*
  409. * Big endian 128-bit rotation: r = a ^ (b <<< n), used only in key setup.
  410. *
  411. * We chose to store bytes into 32-bit words in little-endian format (see
  412. * GET/PUT_UINT32_LE) so we need to reverse bytes here.
  413. */
  414. static void aria_rot128( uint32_t r[4], const uint32_t a[4],
  415. const uint32_t b[4], uint8_t n )
  416. {
  417. uint8_t i, j;
  418. uint32_t t, u;
  419. const uint8_t n1 = n % 32; // bit offset
  420. const uint8_t n2 = n1 ? 32 - n1 : 0; // reverse bit offset
  421. j = ( n / 32 ) % 4; // initial word offset
  422. t = ARIA_P3( b[j] ); // big endian
  423. for( i = 0; i < 4; i++ )
  424. {
  425. j = ( j + 1 ) % 4; // get next word, big endian
  426. u = ARIA_P3( b[j] );
  427. t <<= n1; // rotate
  428. t |= u >> n2;
  429. t = ARIA_P3( t ); // back to little endian
  430. r[i] = a[i] ^ t; // store
  431. t = u; // move to next word
  432. }
  433. }
  434. /*
  435. * Set encryption key
  436. */
  437. int mbedtls_aria_setkey_enc( mbedtls_aria_context *ctx,
  438. const unsigned char *key, unsigned int keybits )
  439. {
  440. /* round constant masks */
  441. const uint32_t rc[3][4] =
  442. {
  443. { 0xB7C17C51, 0x940A2227, 0xE8AB13FE, 0xE06E9AFA },
  444. { 0xCC4AB16D, 0x20C8219E, 0xD5B128FF, 0xB0E25DEF },
  445. { 0x1D3792DB, 0x70E92621, 0x75972403, 0x0EC9E804 }
  446. };
  447. int i;
  448. uint32_t w[4][4], *w2;
  449. ARIA_VALIDATE_RET( ctx != NULL );
  450. ARIA_VALIDATE_RET( key != NULL );
  451. if( keybits != 128 && keybits != 192 && keybits != 256 )
  452. return( MBEDTLS_ERR_ARIA_BAD_INPUT_DATA );
  453. /* Copy key to W0 (and potential remainder to W1) */
  454. GET_UINT32_LE( w[0][0], key, 0 );
  455. GET_UINT32_LE( w[0][1], key, 4 );
  456. GET_UINT32_LE( w[0][2], key, 8 );
  457. GET_UINT32_LE( w[0][3], key, 12 );
  458. memset( w[1], 0, 16 );
  459. if( keybits >= 192 )
  460. {
  461. GET_UINT32_LE( w[1][0], key, 16 ); // 192 bit key
  462. GET_UINT32_LE( w[1][1], key, 20 );
  463. }
  464. if( keybits == 256 )
  465. {
  466. GET_UINT32_LE( w[1][2], key, 24 ); // 256 bit key
  467. GET_UINT32_LE( w[1][3], key, 28 );
  468. }
  469. i = ( keybits - 128 ) >> 6; // index: 0, 1, 2
  470. ctx->nr = 12 + 2 * i; // no. rounds: 12, 14, 16
  471. aria_fo_xor( w[1], w[0], rc[i], w[1] ); // W1 = FO(W0, CK1) ^ KR
  472. i = i < 2 ? i + 1 : 0;
  473. aria_fe_xor( w[2], w[1], rc[i], w[0] ); // W2 = FE(W1, CK2) ^ W0
  474. i = i < 2 ? i + 1 : 0;
  475. aria_fo_xor( w[3], w[2], rc[i], w[1] ); // W3 = FO(W2, CK3) ^ W1
  476. for( i = 0; i < 4; i++ ) // create round keys
  477. {
  478. w2 = w[(i + 1) & 3];
  479. aria_rot128( ctx->rk[i ], w[i], w2, 128 - 19 );
  480. aria_rot128( ctx->rk[i + 4], w[i], w2, 128 - 31 );
  481. aria_rot128( ctx->rk[i + 8], w[i], w2, 61 );
  482. aria_rot128( ctx->rk[i + 12], w[i], w2, 31 );
  483. }
  484. aria_rot128( ctx->rk[16], w[0], w[1], 19 );
  485. /* w holds enough info to reconstruct the round keys */
  486. mbedtls_platform_zeroize( w, sizeof( w ) );
  487. return( 0 );
  488. }
  489. /*
  490. * Set decryption key
  491. */
  492. int mbedtls_aria_setkey_dec( mbedtls_aria_context *ctx,
  493. const unsigned char *key, unsigned int keybits )
  494. {
  495. int i, j, k, ret;
  496. ARIA_VALIDATE_RET( ctx != NULL );
  497. ARIA_VALIDATE_RET( key != NULL );
  498. ret = mbedtls_aria_setkey_enc( ctx, key, keybits );
  499. if( ret != 0 )
  500. return( ret );
  501. /* flip the order of round keys */
  502. for( i = 0, j = ctx->nr; i < j; i++, j-- )
  503. {
  504. for( k = 0; k < 4; k++ )
  505. {
  506. uint32_t t = ctx->rk[i][k];
  507. ctx->rk[i][k] = ctx->rk[j][k];
  508. ctx->rk[j][k] = t;
  509. }
  510. }
  511. /* apply affine transform to middle keys */
  512. for( i = 1; i < ctx->nr; i++ )
  513. {
  514. aria_a( &ctx->rk[i][0], &ctx->rk[i][1],
  515. &ctx->rk[i][2], &ctx->rk[i][3] );
  516. }
  517. return( 0 );
  518. }
  519. /*
  520. * Encrypt a block
  521. */
  522. int mbedtls_aria_crypt_ecb( mbedtls_aria_context *ctx,
  523. const unsigned char input[MBEDTLS_ARIA_BLOCKSIZE],
  524. unsigned char output[MBEDTLS_ARIA_BLOCKSIZE] )
  525. {
  526. int i;
  527. uint32_t a, b, c, d;
  528. ARIA_VALIDATE_RET( ctx != NULL );
  529. ARIA_VALIDATE_RET( input != NULL );
  530. ARIA_VALIDATE_RET( output != NULL );
  531. GET_UINT32_LE( a, input, 0 );
  532. GET_UINT32_LE( b, input, 4 );
  533. GET_UINT32_LE( c, input, 8 );
  534. GET_UINT32_LE( d, input, 12 );
  535. i = 0;
  536. while( 1 )
  537. {
  538. a ^= ctx->rk[i][0];
  539. b ^= ctx->rk[i][1];
  540. c ^= ctx->rk[i][2];
  541. d ^= ctx->rk[i][3];
  542. i++;
  543. aria_sl( &a, &b, &c, &d, aria_sb1, aria_sb2, aria_is1, aria_is2 );
  544. aria_a( &a, &b, &c, &d );
  545. a ^= ctx->rk[i][0];
  546. b ^= ctx->rk[i][1];
  547. c ^= ctx->rk[i][2];
  548. d ^= ctx->rk[i][3];
  549. i++;
  550. aria_sl( &a, &b, &c, &d, aria_is1, aria_is2, aria_sb1, aria_sb2 );
  551. if( i >= ctx->nr )
  552. break;
  553. aria_a( &a, &b, &c, &d );
  554. }
  555. /* final key mixing */
  556. a ^= ctx->rk[i][0];
  557. b ^= ctx->rk[i][1];
  558. c ^= ctx->rk[i][2];
  559. d ^= ctx->rk[i][3];
  560. PUT_UINT32_LE( a, output, 0 );
  561. PUT_UINT32_LE( b, output, 4 );
  562. PUT_UINT32_LE( c, output, 8 );
  563. PUT_UINT32_LE( d, output, 12 );
  564. return( 0 );
  565. }
  566. /* Initialize context */
  567. void mbedtls_aria_init( mbedtls_aria_context *ctx )
  568. {
  569. ARIA_VALIDATE( ctx != NULL );
  570. memset( ctx, 0, sizeof( mbedtls_aria_context ) );
  571. }
  572. /* Clear context */
  573. void mbedtls_aria_free( mbedtls_aria_context *ctx )
  574. {
  575. if( ctx == NULL )
  576. return;
  577. mbedtls_platform_zeroize( ctx, sizeof( mbedtls_aria_context ) );
  578. }
  579. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  580. /*
  581. * ARIA-CBC buffer encryption/decryption
  582. */
  583. int mbedtls_aria_crypt_cbc( mbedtls_aria_context *ctx,
  584. int mode,
  585. size_t length,
  586. unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE],
  587. const unsigned char *input,
  588. unsigned char *output )
  589. {
  590. int i;
  591. unsigned char temp[MBEDTLS_ARIA_BLOCKSIZE];
  592. ARIA_VALIDATE_RET( ctx != NULL );
  593. ARIA_VALIDATE_RET( mode == MBEDTLS_ARIA_ENCRYPT ||
  594. mode == MBEDTLS_ARIA_DECRYPT );
  595. ARIA_VALIDATE_RET( length == 0 || input != NULL );
  596. ARIA_VALIDATE_RET( length == 0 || output != NULL );
  597. ARIA_VALIDATE_RET( iv != NULL );
  598. if( length % MBEDTLS_ARIA_BLOCKSIZE )
  599. return( MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH );
  600. if( mode == MBEDTLS_ARIA_DECRYPT )
  601. {
  602. while( length > 0 )
  603. {
  604. memcpy( temp, input, MBEDTLS_ARIA_BLOCKSIZE );
  605. mbedtls_aria_crypt_ecb( ctx, input, output );
  606. for( i = 0; i < MBEDTLS_ARIA_BLOCKSIZE; i++ )
  607. output[i] = (unsigned char)( output[i] ^ iv[i] );
  608. memcpy( iv, temp, MBEDTLS_ARIA_BLOCKSIZE );
  609. input += MBEDTLS_ARIA_BLOCKSIZE;
  610. output += MBEDTLS_ARIA_BLOCKSIZE;
  611. length -= MBEDTLS_ARIA_BLOCKSIZE;
  612. }
  613. }
  614. else
  615. {
  616. while( length > 0 )
  617. {
  618. for( i = 0; i < MBEDTLS_ARIA_BLOCKSIZE; i++ )
  619. output[i] = (unsigned char)( input[i] ^ iv[i] );
  620. mbedtls_aria_crypt_ecb( ctx, output, output );
  621. memcpy( iv, output, MBEDTLS_ARIA_BLOCKSIZE );
  622. input += MBEDTLS_ARIA_BLOCKSIZE;
  623. output += MBEDTLS_ARIA_BLOCKSIZE;
  624. length -= MBEDTLS_ARIA_BLOCKSIZE;
  625. }
  626. }
  627. return( 0 );
  628. }
  629. #endif /* MBEDTLS_CIPHER_MODE_CBC */
  630. #if defined(MBEDTLS_CIPHER_MODE_CFB)
  631. /*
  632. * ARIA-CFB128 buffer encryption/decryption
  633. */
  634. int mbedtls_aria_crypt_cfb128( mbedtls_aria_context *ctx,
  635. int mode,
  636. size_t length,
  637. size_t *iv_off,
  638. unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE],
  639. const unsigned char *input,
  640. unsigned char *output )
  641. {
  642. unsigned char c;
  643. size_t n;
  644. ARIA_VALIDATE_RET( ctx != NULL );
  645. ARIA_VALIDATE_RET( mode == MBEDTLS_ARIA_ENCRYPT ||
  646. mode == MBEDTLS_ARIA_DECRYPT );
  647. ARIA_VALIDATE_RET( length == 0 || input != NULL );
  648. ARIA_VALIDATE_RET( length == 0 || output != NULL );
  649. ARIA_VALIDATE_RET( iv != NULL );
  650. ARIA_VALIDATE_RET( iv_off != NULL );
  651. n = *iv_off;
  652. /* An overly large value of n can lead to an unlimited
  653. * buffer overflow. Therefore, guard against this
  654. * outside of parameter validation. */
  655. if( n >= MBEDTLS_ARIA_BLOCKSIZE )
  656. return( MBEDTLS_ERR_ARIA_BAD_INPUT_DATA );
  657. if( mode == MBEDTLS_ARIA_DECRYPT )
  658. {
  659. while( length-- )
  660. {
  661. if( n == 0 )
  662. mbedtls_aria_crypt_ecb( ctx, iv, iv );
  663. c = *input++;
  664. *output++ = c ^ iv[n];
  665. iv[n] = c;
  666. n = ( n + 1 ) & 0x0F;
  667. }
  668. }
  669. else
  670. {
  671. while( length-- )
  672. {
  673. if( n == 0 )
  674. mbedtls_aria_crypt_ecb( ctx, iv, iv );
  675. iv[n] = *output++ = (unsigned char)( iv[n] ^ *input++ );
  676. n = ( n + 1 ) & 0x0F;
  677. }
  678. }
  679. *iv_off = n;
  680. return( 0 );
  681. }
  682. #endif /* MBEDTLS_CIPHER_MODE_CFB */
  683. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  684. /*
  685. * ARIA-CTR buffer encryption/decryption
  686. */
  687. int mbedtls_aria_crypt_ctr( mbedtls_aria_context *ctx,
  688. size_t length,
  689. size_t *nc_off,
  690. unsigned char nonce_counter[MBEDTLS_ARIA_BLOCKSIZE],
  691. unsigned char stream_block[MBEDTLS_ARIA_BLOCKSIZE],
  692. const unsigned char *input,
  693. unsigned char *output )
  694. {
  695. int c, i;
  696. size_t n;
  697. ARIA_VALIDATE_RET( ctx != NULL );
  698. ARIA_VALIDATE_RET( length == 0 || input != NULL );
  699. ARIA_VALIDATE_RET( length == 0 || output != NULL );
  700. ARIA_VALIDATE_RET( nonce_counter != NULL );
  701. ARIA_VALIDATE_RET( stream_block != NULL );
  702. ARIA_VALIDATE_RET( nc_off != NULL );
  703. n = *nc_off;
  704. /* An overly large value of n can lead to an unlimited
  705. * buffer overflow. Therefore, guard against this
  706. * outside of parameter validation. */
  707. if( n >= MBEDTLS_ARIA_BLOCKSIZE )
  708. return( MBEDTLS_ERR_ARIA_BAD_INPUT_DATA );
  709. while( length-- )
  710. {
  711. if( n == 0 ) {
  712. mbedtls_aria_crypt_ecb( ctx, nonce_counter,
  713. stream_block );
  714. for( i = MBEDTLS_ARIA_BLOCKSIZE; i > 0; i-- )
  715. if( ++nonce_counter[i - 1] != 0 )
  716. break;
  717. }
  718. c = *input++;
  719. *output++ = (unsigned char)( c ^ stream_block[n] );
  720. n = ( n + 1 ) & 0x0F;
  721. }
  722. *nc_off = n;
  723. return( 0 );
  724. }
  725. #endif /* MBEDTLS_CIPHER_MODE_CTR */
  726. #endif /* !MBEDTLS_ARIA_ALT */
  727. #if defined(MBEDTLS_SELF_TEST)
  728. /*
  729. * Basic ARIA ECB test vectors from RFC 5794
  730. */
  731. static const uint8_t aria_test1_ecb_key[32] = // test key
  732. {
  733. 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, // 128 bit
  734. 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
  735. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, // 192 bit
  736. 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F // 256 bit
  737. };
  738. static const uint8_t aria_test1_ecb_pt[MBEDTLS_ARIA_BLOCKSIZE] = // plaintext
  739. {
  740. 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, // same for all
  741. 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF // key sizes
  742. };
  743. static const uint8_t aria_test1_ecb_ct[3][MBEDTLS_ARIA_BLOCKSIZE] = // ciphertext
  744. {
  745. { 0xD7, 0x18, 0xFB, 0xD6, 0xAB, 0x64, 0x4C, 0x73, // 128 bit
  746. 0x9D, 0xA9, 0x5F, 0x3B, 0xE6, 0x45, 0x17, 0x78 },
  747. { 0x26, 0x44, 0x9C, 0x18, 0x05, 0xDB, 0xE7, 0xAA, // 192 bit
  748. 0x25, 0xA4, 0x68, 0xCE, 0x26, 0x3A, 0x9E, 0x79 },
  749. { 0xF9, 0x2B, 0xD7, 0xC7, 0x9F, 0xB7, 0x2E, 0x2F, // 256 bit
  750. 0x2B, 0x8F, 0x80, 0xC1, 0x97, 0x2D, 0x24, 0xFC }
  751. };
  752. /*
  753. * Mode tests from "Test Vectors for ARIA" Version 1.0
  754. * http://210.104.33.10/ARIA/doc/ARIA-testvector-e.pdf
  755. */
  756. #if (defined(MBEDTLS_CIPHER_MODE_CBC) || defined(MBEDTLS_CIPHER_MODE_CFB) || \
  757. defined(MBEDTLS_CIPHER_MODE_CTR))
  758. static const uint8_t aria_test2_key[32] =
  759. {
  760. 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, // 128 bit
  761. 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff,
  762. 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, // 192 bit
  763. 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff // 256 bit
  764. };
  765. static const uint8_t aria_test2_pt[48] =
  766. {
  767. 0x11, 0x11, 0x11, 0x11, 0xaa, 0xaa, 0xaa, 0xaa, // same for all
  768. 0x11, 0x11, 0x11, 0x11, 0xbb, 0xbb, 0xbb, 0xbb,
  769. 0x11, 0x11, 0x11, 0x11, 0xcc, 0xcc, 0xcc, 0xcc,
  770. 0x11, 0x11, 0x11, 0x11, 0xdd, 0xdd, 0xdd, 0xdd,
  771. 0x22, 0x22, 0x22, 0x22, 0xaa, 0xaa, 0xaa, 0xaa,
  772. 0x22, 0x22, 0x22, 0x22, 0xbb, 0xbb, 0xbb, 0xbb,
  773. };
  774. #endif
  775. #if (defined(MBEDTLS_CIPHER_MODE_CBC) || defined(MBEDTLS_CIPHER_MODE_CFB))
  776. static const uint8_t aria_test2_iv[MBEDTLS_ARIA_BLOCKSIZE] =
  777. {
  778. 0x0f, 0x1e, 0x2d, 0x3c, 0x4b, 0x5a, 0x69, 0x78, // same for CBC, CFB
  779. 0x87, 0x96, 0xa5, 0xb4, 0xc3, 0xd2, 0xe1, 0xf0 // CTR has zero IV
  780. };
  781. #endif
  782. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  783. static const uint8_t aria_test2_cbc_ct[3][48] = // CBC ciphertext
  784. {
  785. { 0x49, 0xd6, 0x18, 0x60, 0xb1, 0x49, 0x09, 0x10, // 128-bit key
  786. 0x9c, 0xef, 0x0d, 0x22, 0xa9, 0x26, 0x81, 0x34,
  787. 0xfa, 0xdf, 0x9f, 0xb2, 0x31, 0x51, 0xe9, 0x64,
  788. 0x5f, 0xba, 0x75, 0x01, 0x8b, 0xdb, 0x15, 0x38,
  789. 0xb5, 0x33, 0x34, 0x63, 0x4b, 0xbf, 0x7d, 0x4c,
  790. 0xd4, 0xb5, 0x37, 0x70, 0x33, 0x06, 0x0c, 0x15 },
  791. { 0xaf, 0xe6, 0xcf, 0x23, 0x97, 0x4b, 0x53, 0x3c, // 192-bit key
  792. 0x67, 0x2a, 0x82, 0x62, 0x64, 0xea, 0x78, 0x5f,
  793. 0x4e, 0x4f, 0x7f, 0x78, 0x0d, 0xc7, 0xf3, 0xf1,
  794. 0xe0, 0x96, 0x2b, 0x80, 0x90, 0x23, 0x86, 0xd5,
  795. 0x14, 0xe9, 0xc3, 0xe7, 0x72, 0x59, 0xde, 0x92,
  796. 0xdd, 0x11, 0x02, 0xff, 0xab, 0x08, 0x6c, 0x1e },
  797. { 0x52, 0x3a, 0x8a, 0x80, 0x6a, 0xe6, 0x21, 0xf1, // 256-bit key
  798. 0x55, 0xfd, 0xd2, 0x8d, 0xbc, 0x34, 0xe1, 0xab,
  799. 0x7b, 0x9b, 0x42, 0x43, 0x2a, 0xd8, 0xb2, 0xef,
  800. 0xb9, 0x6e, 0x23, 0xb1, 0x3f, 0x0a, 0x6e, 0x52,
  801. 0xf3, 0x61, 0x85, 0xd5, 0x0a, 0xd0, 0x02, 0xc5,
  802. 0xf6, 0x01, 0xbe, 0xe5, 0x49, 0x3f, 0x11, 0x8b }
  803. };
  804. #endif /* MBEDTLS_CIPHER_MODE_CBC */
  805. #if defined(MBEDTLS_CIPHER_MODE_CFB)
  806. static const uint8_t aria_test2_cfb_ct[3][48] = // CFB ciphertext
  807. {
  808. { 0x37, 0x20, 0xe5, 0x3b, 0xa7, 0xd6, 0x15, 0x38, // 128-bit key
  809. 0x34, 0x06, 0xb0, 0x9f, 0x0a, 0x05, 0xa2, 0x00,
  810. 0xc0, 0x7c, 0x21, 0xe6, 0x37, 0x0f, 0x41, 0x3a,
  811. 0x5d, 0x13, 0x25, 0x00, 0xa6, 0x82, 0x85, 0x01,
  812. 0x7c, 0x61, 0xb4, 0x34, 0xc7, 0xb7, 0xca, 0x96,
  813. 0x85, 0xa5, 0x10, 0x71, 0x86, 0x1e, 0x4d, 0x4b },
  814. { 0x41, 0x71, 0xf7, 0x19, 0x2b, 0xf4, 0x49, 0x54, // 192-bit key
  815. 0x94, 0xd2, 0x73, 0x61, 0x29, 0x64, 0x0f, 0x5c,
  816. 0x4d, 0x87, 0xa9, 0xa2, 0x13, 0x66, 0x4c, 0x94,
  817. 0x48, 0x47, 0x7c, 0x6e, 0xcc, 0x20, 0x13, 0x59,
  818. 0x8d, 0x97, 0x66, 0x95, 0x2d, 0xd8, 0xc3, 0x86,
  819. 0x8f, 0x17, 0xe3, 0x6e, 0xf6, 0x6f, 0xd8, 0x4b },
  820. { 0x26, 0x83, 0x47, 0x05, 0xb0, 0xf2, 0xc0, 0xe2, // 256-bit key
  821. 0x58, 0x8d, 0x4a, 0x7f, 0x09, 0x00, 0x96, 0x35,
  822. 0xf2, 0x8b, 0xb9, 0x3d, 0x8c, 0x31, 0xf8, 0x70,
  823. 0xec, 0x1e, 0x0b, 0xdb, 0x08, 0x2b, 0x66, 0xfa,
  824. 0x40, 0x2d, 0xd9, 0xc2, 0x02, 0xbe, 0x30, 0x0c,
  825. 0x45, 0x17, 0xd1, 0x96, 0xb1, 0x4d, 0x4c, 0xe1 }
  826. };
  827. #endif /* MBEDTLS_CIPHER_MODE_CFB */
  828. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  829. static const uint8_t aria_test2_ctr_ct[3][48] = // CTR ciphertext
  830. {
  831. { 0xac, 0x5d, 0x7d, 0xe8, 0x05, 0xa0, 0xbf, 0x1c, // 128-bit key
  832. 0x57, 0xc8, 0x54, 0x50, 0x1a, 0xf6, 0x0f, 0xa1,
  833. 0x14, 0x97, 0xe2, 0xa3, 0x45, 0x19, 0xde, 0xa1,
  834. 0x56, 0x9e, 0x91, 0xe5, 0xb5, 0xcc, 0xae, 0x2f,
  835. 0xf3, 0xbf, 0xa1, 0xbf, 0x97, 0x5f, 0x45, 0x71,
  836. 0xf4, 0x8b, 0xe1, 0x91, 0x61, 0x35, 0x46, 0xc3 },
  837. { 0x08, 0x62, 0x5c, 0xa8, 0xfe, 0x56, 0x9c, 0x19, // 192-bit key
  838. 0xba, 0x7a, 0xf3, 0x76, 0x0a, 0x6e, 0xd1, 0xce,
  839. 0xf4, 0xd1, 0x99, 0x26, 0x3e, 0x99, 0x9d, 0xde,
  840. 0x14, 0x08, 0x2d, 0xbb, 0xa7, 0x56, 0x0b, 0x79,
  841. 0xa4, 0xc6, 0xb4, 0x56, 0xb8, 0x70, 0x7d, 0xce,
  842. 0x75, 0x1f, 0x98, 0x54, 0xf1, 0x88, 0x93, 0xdf },
  843. { 0x30, 0x02, 0x6c, 0x32, 0x96, 0x66, 0x14, 0x17, // 256-bit key
  844. 0x21, 0x17, 0x8b, 0x99, 0xc0, 0xa1, 0xf1, 0xb2,
  845. 0xf0, 0x69, 0x40, 0x25, 0x3f, 0x7b, 0x30, 0x89,
  846. 0xe2, 0xa3, 0x0e, 0xa8, 0x6a, 0xa3, 0xc8, 0x8f,
  847. 0x59, 0x40, 0xf0, 0x5a, 0xd7, 0xee, 0x41, 0xd7,
  848. 0x13, 0x47, 0xbb, 0x72, 0x61, 0xe3, 0x48, 0xf1 }
  849. };
  850. #endif /* MBEDTLS_CIPHER_MODE_CFB */
  851. #define ARIA_SELF_TEST_IF_FAIL \
  852. { \
  853. if( verbose ) \
  854. mbedtls_printf( "failed\n" ); \
  855. return( 1 ); \
  856. } else { \
  857. if( verbose ) \
  858. mbedtls_printf( "passed\n" ); \
  859. }
  860. /*
  861. * Checkup routine
  862. */
  863. int mbedtls_aria_self_test( int verbose )
  864. {
  865. int i;
  866. uint8_t blk[MBEDTLS_ARIA_BLOCKSIZE];
  867. mbedtls_aria_context ctx;
  868. #if (defined(MBEDTLS_CIPHER_MODE_CFB) || defined(MBEDTLS_CIPHER_MODE_CTR))
  869. size_t j;
  870. #endif
  871. #if (defined(MBEDTLS_CIPHER_MODE_CBC) || \
  872. defined(MBEDTLS_CIPHER_MODE_CFB) || \
  873. defined(MBEDTLS_CIPHER_MODE_CTR))
  874. uint8_t buf[48], iv[MBEDTLS_ARIA_BLOCKSIZE];
  875. #endif
  876. /*
  877. * Test set 1
  878. */
  879. for( i = 0; i < 3; i++ )
  880. {
  881. /* test ECB encryption */
  882. if( verbose )
  883. mbedtls_printf( " ARIA-ECB-%d (enc): ", 128 + 64 * i );
  884. mbedtls_aria_setkey_enc( &ctx, aria_test1_ecb_key, 128 + 64 * i );
  885. mbedtls_aria_crypt_ecb( &ctx, aria_test1_ecb_pt, blk );
  886. if( memcmp( blk, aria_test1_ecb_ct[i], MBEDTLS_ARIA_BLOCKSIZE ) != 0 )
  887. ARIA_SELF_TEST_IF_FAIL;
  888. /* test ECB decryption */
  889. if( verbose )
  890. mbedtls_printf( " ARIA-ECB-%d (dec): ", 128 + 64 * i );
  891. mbedtls_aria_setkey_dec( &ctx, aria_test1_ecb_key, 128 + 64 * i );
  892. mbedtls_aria_crypt_ecb( &ctx, aria_test1_ecb_ct[i], blk );
  893. if( memcmp( blk, aria_test1_ecb_pt, MBEDTLS_ARIA_BLOCKSIZE ) != 0 )
  894. ARIA_SELF_TEST_IF_FAIL;
  895. }
  896. if( verbose )
  897. mbedtls_printf( "\n" );
  898. /*
  899. * Test set 2
  900. */
  901. #if defined(MBEDTLS_CIPHER_MODE_CBC)
  902. for( i = 0; i < 3; i++ )
  903. {
  904. /* Test CBC encryption */
  905. if( verbose )
  906. mbedtls_printf( " ARIA-CBC-%d (enc): ", 128 + 64 * i );
  907. mbedtls_aria_setkey_enc( &ctx, aria_test2_key, 128 + 64 * i );
  908. memcpy( iv, aria_test2_iv, MBEDTLS_ARIA_BLOCKSIZE );
  909. memset( buf, 0x55, sizeof( buf ) );
  910. mbedtls_aria_crypt_cbc( &ctx, MBEDTLS_ARIA_ENCRYPT, 48, iv,
  911. aria_test2_pt, buf );
  912. if( memcmp( buf, aria_test2_cbc_ct[i], 48 ) != 0 )
  913. ARIA_SELF_TEST_IF_FAIL;
  914. /* Test CBC decryption */
  915. if( verbose )
  916. mbedtls_printf( " ARIA-CBC-%d (dec): ", 128 + 64 * i );
  917. mbedtls_aria_setkey_dec( &ctx, aria_test2_key, 128 + 64 * i );
  918. memcpy( iv, aria_test2_iv, MBEDTLS_ARIA_BLOCKSIZE );
  919. memset( buf, 0xAA, sizeof( buf ) );
  920. mbedtls_aria_crypt_cbc( &ctx, MBEDTLS_ARIA_DECRYPT, 48, iv,
  921. aria_test2_cbc_ct[i], buf );
  922. if( memcmp( buf, aria_test2_pt, 48 ) != 0 )
  923. ARIA_SELF_TEST_IF_FAIL;
  924. }
  925. if( verbose )
  926. mbedtls_printf( "\n" );
  927. #endif /* MBEDTLS_CIPHER_MODE_CBC */
  928. #if defined(MBEDTLS_CIPHER_MODE_CFB)
  929. for( i = 0; i < 3; i++ )
  930. {
  931. /* Test CFB encryption */
  932. if( verbose )
  933. mbedtls_printf( " ARIA-CFB-%d (enc): ", 128 + 64 * i );
  934. mbedtls_aria_setkey_enc( &ctx, aria_test2_key, 128 + 64 * i );
  935. memcpy( iv, aria_test2_iv, MBEDTLS_ARIA_BLOCKSIZE );
  936. memset( buf, 0x55, sizeof( buf ) );
  937. j = 0;
  938. mbedtls_aria_crypt_cfb128( &ctx, MBEDTLS_ARIA_ENCRYPT, 48, &j, iv,
  939. aria_test2_pt, buf );
  940. if( memcmp( buf, aria_test2_cfb_ct[i], 48 ) != 0 )
  941. ARIA_SELF_TEST_IF_FAIL;
  942. /* Test CFB decryption */
  943. if( verbose )
  944. mbedtls_printf( " ARIA-CFB-%d (dec): ", 128 + 64 * i );
  945. mbedtls_aria_setkey_enc( &ctx, aria_test2_key, 128 + 64 * i );
  946. memcpy( iv, aria_test2_iv, MBEDTLS_ARIA_BLOCKSIZE );
  947. memset( buf, 0xAA, sizeof( buf ) );
  948. j = 0;
  949. mbedtls_aria_crypt_cfb128( &ctx, MBEDTLS_ARIA_DECRYPT, 48, &j,
  950. iv, aria_test2_cfb_ct[i], buf );
  951. if( memcmp( buf, aria_test2_pt, 48 ) != 0 )
  952. ARIA_SELF_TEST_IF_FAIL;
  953. }
  954. if( verbose )
  955. mbedtls_printf( "\n" );
  956. #endif /* MBEDTLS_CIPHER_MODE_CFB */
  957. #if defined(MBEDTLS_CIPHER_MODE_CTR)
  958. for( i = 0; i < 3; i++ )
  959. {
  960. /* Test CTR encryption */
  961. if( verbose )
  962. mbedtls_printf( " ARIA-CTR-%d (enc): ", 128 + 64 * i );
  963. mbedtls_aria_setkey_enc( &ctx, aria_test2_key, 128 + 64 * i );
  964. memset( iv, 0, MBEDTLS_ARIA_BLOCKSIZE ); // IV = 0
  965. memset( buf, 0x55, sizeof( buf ) );
  966. j = 0;
  967. mbedtls_aria_crypt_ctr( &ctx, 48, &j, iv, blk,
  968. aria_test2_pt, buf );
  969. if( memcmp( buf, aria_test2_ctr_ct[i], 48 ) != 0 )
  970. ARIA_SELF_TEST_IF_FAIL;
  971. /* Test CTR decryption */
  972. if( verbose )
  973. mbedtls_printf( " ARIA-CTR-%d (dec): ", 128 + 64 * i );
  974. mbedtls_aria_setkey_enc( &ctx, aria_test2_key, 128 + 64 * i );
  975. memset( iv, 0, MBEDTLS_ARIA_BLOCKSIZE ); // IV = 0
  976. memset( buf, 0xAA, sizeof( buf ) );
  977. j = 0;
  978. mbedtls_aria_crypt_ctr( &ctx, 48, &j, iv, blk,
  979. aria_test2_ctr_ct[i], buf );
  980. if( memcmp( buf, aria_test2_pt, 48 ) != 0 )
  981. ARIA_SELF_TEST_IF_FAIL;
  982. }
  983. if( verbose )
  984. mbedtls_printf( "\n" );
  985. #endif /* MBEDTLS_CIPHER_MODE_CTR */
  986. return( 0 );
  987. }
  988. #endif /* MBEDTLS_SELF_TEST */
  989. #endif /* MBEDTLS_ARIA_C */