aria.c 36 KB

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