1e1051a39Sopenharmony_ci/*
2e1051a39Sopenharmony_ci * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
3e1051a39Sopenharmony_ci * Copyright (c) 2017, Oracle and/or its affiliates.  All rights reserved.
4e1051a39Sopenharmony_ci *
5e1051a39Sopenharmony_ci * Licensed under the Apache License 2.0 (the "License").  You may not use
6e1051a39Sopenharmony_ci * this file except in compliance with the License.  You can obtain a copy
7e1051a39Sopenharmony_ci * in the file LICENSE in the source distribution or at
8e1051a39Sopenharmony_ci * https://www.openssl.org/source/license.html
9e1051a39Sopenharmony_ci */
10e1051a39Sopenharmony_ci
11e1051a39Sopenharmony_ci/*
12e1051a39Sopenharmony_ci * Copyright (C) 2017 National Security Research Institute. All Rights Reserved.
13e1051a39Sopenharmony_ci *
14e1051a39Sopenharmony_ci * Information for ARIA
15e1051a39Sopenharmony_ci *     http://210.104.33.10/ARIA/index-e.html (English)
16e1051a39Sopenharmony_ci *     http://seed.kisa.or.kr/ (Korean)
17e1051a39Sopenharmony_ci *
18e1051a39Sopenharmony_ci * Public domain version is distributed above.
19e1051a39Sopenharmony_ci */
20e1051a39Sopenharmony_ci
21e1051a39Sopenharmony_ci#include <openssl/e_os2.h>
22e1051a39Sopenharmony_ci#include "crypto/aria.h"
23e1051a39Sopenharmony_ci
24e1051a39Sopenharmony_ci#include <assert.h>
25e1051a39Sopenharmony_ci#include <string.h>
26e1051a39Sopenharmony_ci
27e1051a39Sopenharmony_ci#ifndef OPENSSL_SMALL_FOOTPRINT
28e1051a39Sopenharmony_ci
29e1051a39Sopenharmony_ci/* Begin macro */
30e1051a39Sopenharmony_ci
31e1051a39Sopenharmony_ci/* rotation */
32e1051a39Sopenharmony_ci#define rotl32(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r)))
33e1051a39Sopenharmony_ci#define rotr32(v, r) (((uint32_t)(v) >> (r)) | ((uint32_t)(v) << (32 - r)))
34e1051a39Sopenharmony_ci
35e1051a39Sopenharmony_ci#define bswap32(v)                                          \
36e1051a39Sopenharmony_ci    (((v) << 24) ^ ((v) >> 24) ^                            \
37e1051a39Sopenharmony_ci    (((v) & 0x0000ff00) << 8) ^ (((v) & 0x00ff0000) >> 8))
38e1051a39Sopenharmony_ci
39e1051a39Sopenharmony_ci#define GET_U8_BE(X, Y) ((uint8_t)((X) >> ((3 - Y) * 8)))
40e1051a39Sopenharmony_ci#define GET_U32_BE(X, Y) (                                  \
41e1051a39Sopenharmony_ci    ((uint32_t)((const uint8_t *)(X))[Y * 4    ] << 24) ^   \
42e1051a39Sopenharmony_ci    ((uint32_t)((const uint8_t *)(X))[Y * 4 + 1] << 16) ^   \
43e1051a39Sopenharmony_ci    ((uint32_t)((const uint8_t *)(X))[Y * 4 + 2] <<  8) ^   \
44e1051a39Sopenharmony_ci    ((uint32_t)((const uint8_t *)(X))[Y * 4 + 3]      )     )
45e1051a39Sopenharmony_ci
46e1051a39Sopenharmony_ci#define PUT_U32_BE(DEST, IDX, VAL)                              \
47e1051a39Sopenharmony_ci    do {                                                        \
48e1051a39Sopenharmony_ci        ((uint8_t *)(DEST))[IDX * 4    ] = GET_U8_BE(VAL, 0);   \
49e1051a39Sopenharmony_ci        ((uint8_t *)(DEST))[IDX * 4 + 1] = GET_U8_BE(VAL, 1);   \
50e1051a39Sopenharmony_ci        ((uint8_t *)(DEST))[IDX * 4 + 2] = GET_U8_BE(VAL, 2);   \
51e1051a39Sopenharmony_ci        ((uint8_t *)(DEST))[IDX * 4 + 3] = GET_U8_BE(VAL, 3);   \
52e1051a39Sopenharmony_ci    } while(0)
53e1051a39Sopenharmony_ci
54e1051a39Sopenharmony_ci#define MAKE_U32(V0, V1, V2, V3) (      \
55e1051a39Sopenharmony_ci    ((uint32_t)((uint8_t)(V0)) << 24) | \
56e1051a39Sopenharmony_ci    ((uint32_t)((uint8_t)(V1)) << 16) | \
57e1051a39Sopenharmony_ci    ((uint32_t)((uint8_t)(V2)) <<  8) | \
58e1051a39Sopenharmony_ci    ((uint32_t)((uint8_t)(V3))      )   )
59e1051a39Sopenharmony_ci
60e1051a39Sopenharmony_ci/* End Macro*/
61e1051a39Sopenharmony_ci
62e1051a39Sopenharmony_ci/* Key Constant
63e1051a39Sopenharmony_ci * 128bit : 0, 1,    2
64e1051a39Sopenharmony_ci * 192bit : 1, 2,    3(0)
65e1051a39Sopenharmony_ci * 256bit : 2, 3(0), 4(1)
66e1051a39Sopenharmony_ci */
67e1051a39Sopenharmony_cistatic const uint32_t Key_RC[5][4] = {
68e1051a39Sopenharmony_ci    { 0x517cc1b7, 0x27220a94, 0xfe13abe8, 0xfa9a6ee0 },
69e1051a39Sopenharmony_ci    { 0x6db14acc, 0x9e21c820, 0xff28b1d5, 0xef5de2b0 },
70e1051a39Sopenharmony_ci    { 0xdb92371d, 0x2126e970, 0x03249775, 0x04e8c90e },
71e1051a39Sopenharmony_ci    { 0x517cc1b7, 0x27220a94, 0xfe13abe8, 0xfa9a6ee0 },
72e1051a39Sopenharmony_ci    { 0x6db14acc, 0x9e21c820, 0xff28b1d5, 0xef5de2b0 }
73e1051a39Sopenharmony_ci};
74e1051a39Sopenharmony_ci
75e1051a39Sopenharmony_ci/* 32bit expanded s-box */
76e1051a39Sopenharmony_cistatic const uint32_t S1[256] = {
77e1051a39Sopenharmony_ci    0x00636363, 0x007c7c7c, 0x00777777, 0x007b7b7b,
78e1051a39Sopenharmony_ci    0x00f2f2f2, 0x006b6b6b, 0x006f6f6f, 0x00c5c5c5,
79e1051a39Sopenharmony_ci    0x00303030, 0x00010101, 0x00676767, 0x002b2b2b,
80e1051a39Sopenharmony_ci    0x00fefefe, 0x00d7d7d7, 0x00ababab, 0x00767676,
81e1051a39Sopenharmony_ci    0x00cacaca, 0x00828282, 0x00c9c9c9, 0x007d7d7d,
82e1051a39Sopenharmony_ci    0x00fafafa, 0x00595959, 0x00474747, 0x00f0f0f0,
83e1051a39Sopenharmony_ci    0x00adadad, 0x00d4d4d4, 0x00a2a2a2, 0x00afafaf,
84e1051a39Sopenharmony_ci    0x009c9c9c, 0x00a4a4a4, 0x00727272, 0x00c0c0c0,
85e1051a39Sopenharmony_ci    0x00b7b7b7, 0x00fdfdfd, 0x00939393, 0x00262626,
86e1051a39Sopenharmony_ci    0x00363636, 0x003f3f3f, 0x00f7f7f7, 0x00cccccc,
87e1051a39Sopenharmony_ci    0x00343434, 0x00a5a5a5, 0x00e5e5e5, 0x00f1f1f1,
88e1051a39Sopenharmony_ci    0x00717171, 0x00d8d8d8, 0x00313131, 0x00151515,
89e1051a39Sopenharmony_ci    0x00040404, 0x00c7c7c7, 0x00232323, 0x00c3c3c3,
90e1051a39Sopenharmony_ci    0x00181818, 0x00969696, 0x00050505, 0x009a9a9a,
91e1051a39Sopenharmony_ci    0x00070707, 0x00121212, 0x00808080, 0x00e2e2e2,
92e1051a39Sopenharmony_ci    0x00ebebeb, 0x00272727, 0x00b2b2b2, 0x00757575,
93e1051a39Sopenharmony_ci    0x00090909, 0x00838383, 0x002c2c2c, 0x001a1a1a,
94e1051a39Sopenharmony_ci    0x001b1b1b, 0x006e6e6e, 0x005a5a5a, 0x00a0a0a0,
95e1051a39Sopenharmony_ci    0x00525252, 0x003b3b3b, 0x00d6d6d6, 0x00b3b3b3,
96e1051a39Sopenharmony_ci    0x00292929, 0x00e3e3e3, 0x002f2f2f, 0x00848484,
97e1051a39Sopenharmony_ci    0x00535353, 0x00d1d1d1, 0x00000000, 0x00ededed,
98e1051a39Sopenharmony_ci    0x00202020, 0x00fcfcfc, 0x00b1b1b1, 0x005b5b5b,
99e1051a39Sopenharmony_ci    0x006a6a6a, 0x00cbcbcb, 0x00bebebe, 0x00393939,
100e1051a39Sopenharmony_ci    0x004a4a4a, 0x004c4c4c, 0x00585858, 0x00cfcfcf,
101e1051a39Sopenharmony_ci    0x00d0d0d0, 0x00efefef, 0x00aaaaaa, 0x00fbfbfb,
102e1051a39Sopenharmony_ci    0x00434343, 0x004d4d4d, 0x00333333, 0x00858585,
103e1051a39Sopenharmony_ci    0x00454545, 0x00f9f9f9, 0x00020202, 0x007f7f7f,
104e1051a39Sopenharmony_ci    0x00505050, 0x003c3c3c, 0x009f9f9f, 0x00a8a8a8,
105e1051a39Sopenharmony_ci    0x00515151, 0x00a3a3a3, 0x00404040, 0x008f8f8f,
106e1051a39Sopenharmony_ci    0x00929292, 0x009d9d9d, 0x00383838, 0x00f5f5f5,
107e1051a39Sopenharmony_ci    0x00bcbcbc, 0x00b6b6b6, 0x00dadada, 0x00212121,
108e1051a39Sopenharmony_ci    0x00101010, 0x00ffffff, 0x00f3f3f3, 0x00d2d2d2,
109e1051a39Sopenharmony_ci    0x00cdcdcd, 0x000c0c0c, 0x00131313, 0x00ececec,
110e1051a39Sopenharmony_ci    0x005f5f5f, 0x00979797, 0x00444444, 0x00171717,
111e1051a39Sopenharmony_ci    0x00c4c4c4, 0x00a7a7a7, 0x007e7e7e, 0x003d3d3d,
112e1051a39Sopenharmony_ci    0x00646464, 0x005d5d5d, 0x00191919, 0x00737373,
113e1051a39Sopenharmony_ci    0x00606060, 0x00818181, 0x004f4f4f, 0x00dcdcdc,
114e1051a39Sopenharmony_ci    0x00222222, 0x002a2a2a, 0x00909090, 0x00888888,
115e1051a39Sopenharmony_ci    0x00464646, 0x00eeeeee, 0x00b8b8b8, 0x00141414,
116e1051a39Sopenharmony_ci    0x00dedede, 0x005e5e5e, 0x000b0b0b, 0x00dbdbdb,
117e1051a39Sopenharmony_ci    0x00e0e0e0, 0x00323232, 0x003a3a3a, 0x000a0a0a,
118e1051a39Sopenharmony_ci    0x00494949, 0x00060606, 0x00242424, 0x005c5c5c,
119e1051a39Sopenharmony_ci    0x00c2c2c2, 0x00d3d3d3, 0x00acacac, 0x00626262,
120e1051a39Sopenharmony_ci    0x00919191, 0x00959595, 0x00e4e4e4, 0x00797979,
121e1051a39Sopenharmony_ci    0x00e7e7e7, 0x00c8c8c8, 0x00373737, 0x006d6d6d,
122e1051a39Sopenharmony_ci    0x008d8d8d, 0x00d5d5d5, 0x004e4e4e, 0x00a9a9a9,
123e1051a39Sopenharmony_ci    0x006c6c6c, 0x00565656, 0x00f4f4f4, 0x00eaeaea,
124e1051a39Sopenharmony_ci    0x00656565, 0x007a7a7a, 0x00aeaeae, 0x00080808,
125e1051a39Sopenharmony_ci    0x00bababa, 0x00787878, 0x00252525, 0x002e2e2e,
126e1051a39Sopenharmony_ci    0x001c1c1c, 0x00a6a6a6, 0x00b4b4b4, 0x00c6c6c6,
127e1051a39Sopenharmony_ci    0x00e8e8e8, 0x00dddddd, 0x00747474, 0x001f1f1f,
128e1051a39Sopenharmony_ci    0x004b4b4b, 0x00bdbdbd, 0x008b8b8b, 0x008a8a8a,
129e1051a39Sopenharmony_ci    0x00707070, 0x003e3e3e, 0x00b5b5b5, 0x00666666,
130e1051a39Sopenharmony_ci    0x00484848, 0x00030303, 0x00f6f6f6, 0x000e0e0e,
131e1051a39Sopenharmony_ci    0x00616161, 0x00353535, 0x00575757, 0x00b9b9b9,
132e1051a39Sopenharmony_ci    0x00868686, 0x00c1c1c1, 0x001d1d1d, 0x009e9e9e,
133e1051a39Sopenharmony_ci    0x00e1e1e1, 0x00f8f8f8, 0x00989898, 0x00111111,
134e1051a39Sopenharmony_ci    0x00696969, 0x00d9d9d9, 0x008e8e8e, 0x00949494,
135e1051a39Sopenharmony_ci    0x009b9b9b, 0x001e1e1e, 0x00878787, 0x00e9e9e9,
136e1051a39Sopenharmony_ci    0x00cecece, 0x00555555, 0x00282828, 0x00dfdfdf,
137e1051a39Sopenharmony_ci    0x008c8c8c, 0x00a1a1a1, 0x00898989, 0x000d0d0d,
138e1051a39Sopenharmony_ci    0x00bfbfbf, 0x00e6e6e6, 0x00424242, 0x00686868,
139e1051a39Sopenharmony_ci    0x00414141, 0x00999999, 0x002d2d2d, 0x000f0f0f,
140e1051a39Sopenharmony_ci    0x00b0b0b0, 0x00545454, 0x00bbbbbb, 0x00161616
141e1051a39Sopenharmony_ci};
142e1051a39Sopenharmony_ci
143e1051a39Sopenharmony_cistatic const uint32_t S2[256] = {
144e1051a39Sopenharmony_ci    0xe200e2e2, 0x4e004e4e, 0x54005454, 0xfc00fcfc,
145e1051a39Sopenharmony_ci    0x94009494, 0xc200c2c2, 0x4a004a4a, 0xcc00cccc,
146e1051a39Sopenharmony_ci    0x62006262, 0x0d000d0d, 0x6a006a6a, 0x46004646,
147e1051a39Sopenharmony_ci    0x3c003c3c, 0x4d004d4d, 0x8b008b8b, 0xd100d1d1,
148e1051a39Sopenharmony_ci    0x5e005e5e, 0xfa00fafa, 0x64006464, 0xcb00cbcb,
149e1051a39Sopenharmony_ci    0xb400b4b4, 0x97009797, 0xbe00bebe, 0x2b002b2b,
150e1051a39Sopenharmony_ci    0xbc00bcbc, 0x77007777, 0x2e002e2e, 0x03000303,
151e1051a39Sopenharmony_ci    0xd300d3d3, 0x19001919, 0x59005959, 0xc100c1c1,
152e1051a39Sopenharmony_ci    0x1d001d1d, 0x06000606, 0x41004141, 0x6b006b6b,
153e1051a39Sopenharmony_ci    0x55005555, 0xf000f0f0, 0x99009999, 0x69006969,
154e1051a39Sopenharmony_ci    0xea00eaea, 0x9c009c9c, 0x18001818, 0xae00aeae,
155e1051a39Sopenharmony_ci    0x63006363, 0xdf00dfdf, 0xe700e7e7, 0xbb00bbbb,
156e1051a39Sopenharmony_ci    0x00000000, 0x73007373, 0x66006666, 0xfb00fbfb,
157e1051a39Sopenharmony_ci    0x96009696, 0x4c004c4c, 0x85008585, 0xe400e4e4,
158e1051a39Sopenharmony_ci    0x3a003a3a, 0x09000909, 0x45004545, 0xaa00aaaa,
159e1051a39Sopenharmony_ci    0x0f000f0f, 0xee00eeee, 0x10001010, 0xeb00ebeb,
160e1051a39Sopenharmony_ci    0x2d002d2d, 0x7f007f7f, 0xf400f4f4, 0x29002929,
161e1051a39Sopenharmony_ci    0xac00acac, 0xcf00cfcf, 0xad00adad, 0x91009191,
162e1051a39Sopenharmony_ci    0x8d008d8d, 0x78007878, 0xc800c8c8, 0x95009595,
163e1051a39Sopenharmony_ci    0xf900f9f9, 0x2f002f2f, 0xce00cece, 0xcd00cdcd,
164e1051a39Sopenharmony_ci    0x08000808, 0x7a007a7a, 0x88008888, 0x38003838,
165e1051a39Sopenharmony_ci    0x5c005c5c, 0x83008383, 0x2a002a2a, 0x28002828,
166e1051a39Sopenharmony_ci    0x47004747, 0xdb00dbdb, 0xb800b8b8, 0xc700c7c7,
167e1051a39Sopenharmony_ci    0x93009393, 0xa400a4a4, 0x12001212, 0x53005353,
168e1051a39Sopenharmony_ci    0xff00ffff, 0x87008787, 0x0e000e0e, 0x31003131,
169e1051a39Sopenharmony_ci    0x36003636, 0x21002121, 0x58005858, 0x48004848,
170e1051a39Sopenharmony_ci    0x01000101, 0x8e008e8e, 0x37003737, 0x74007474,
171e1051a39Sopenharmony_ci    0x32003232, 0xca00caca, 0xe900e9e9, 0xb100b1b1,
172e1051a39Sopenharmony_ci    0xb700b7b7, 0xab00abab, 0x0c000c0c, 0xd700d7d7,
173e1051a39Sopenharmony_ci    0xc400c4c4, 0x56005656, 0x42004242, 0x26002626,
174e1051a39Sopenharmony_ci    0x07000707, 0x98009898, 0x60006060, 0xd900d9d9,
175e1051a39Sopenharmony_ci    0xb600b6b6, 0xb900b9b9, 0x11001111, 0x40004040,
176e1051a39Sopenharmony_ci    0xec00ecec, 0x20002020, 0x8c008c8c, 0xbd00bdbd,
177e1051a39Sopenharmony_ci    0xa000a0a0, 0xc900c9c9, 0x84008484, 0x04000404,
178e1051a39Sopenharmony_ci    0x49004949, 0x23002323, 0xf100f1f1, 0x4f004f4f,
179e1051a39Sopenharmony_ci    0x50005050, 0x1f001f1f, 0x13001313, 0xdc00dcdc,
180e1051a39Sopenharmony_ci    0xd800d8d8, 0xc000c0c0, 0x9e009e9e, 0x57005757,
181e1051a39Sopenharmony_ci    0xe300e3e3, 0xc300c3c3, 0x7b007b7b, 0x65006565,
182e1051a39Sopenharmony_ci    0x3b003b3b, 0x02000202, 0x8f008f8f, 0x3e003e3e,
183e1051a39Sopenharmony_ci    0xe800e8e8, 0x25002525, 0x92009292, 0xe500e5e5,
184e1051a39Sopenharmony_ci    0x15001515, 0xdd00dddd, 0xfd00fdfd, 0x17001717,
185e1051a39Sopenharmony_ci    0xa900a9a9, 0xbf00bfbf, 0xd400d4d4, 0x9a009a9a,
186e1051a39Sopenharmony_ci    0x7e007e7e, 0xc500c5c5, 0x39003939, 0x67006767,
187e1051a39Sopenharmony_ci    0xfe00fefe, 0x76007676, 0x9d009d9d, 0x43004343,
188e1051a39Sopenharmony_ci    0xa700a7a7, 0xe100e1e1, 0xd000d0d0, 0xf500f5f5,
189e1051a39Sopenharmony_ci    0x68006868, 0xf200f2f2, 0x1b001b1b, 0x34003434,
190e1051a39Sopenharmony_ci    0x70007070, 0x05000505, 0xa300a3a3, 0x8a008a8a,
191e1051a39Sopenharmony_ci    0xd500d5d5, 0x79007979, 0x86008686, 0xa800a8a8,
192e1051a39Sopenharmony_ci    0x30003030, 0xc600c6c6, 0x51005151, 0x4b004b4b,
193e1051a39Sopenharmony_ci    0x1e001e1e, 0xa600a6a6, 0x27002727, 0xf600f6f6,
194e1051a39Sopenharmony_ci    0x35003535, 0xd200d2d2, 0x6e006e6e, 0x24002424,
195e1051a39Sopenharmony_ci    0x16001616, 0x82008282, 0x5f005f5f, 0xda00dada,
196e1051a39Sopenharmony_ci    0xe600e6e6, 0x75007575, 0xa200a2a2, 0xef00efef,
197e1051a39Sopenharmony_ci    0x2c002c2c, 0xb200b2b2, 0x1c001c1c, 0x9f009f9f,
198e1051a39Sopenharmony_ci    0x5d005d5d, 0x6f006f6f, 0x80008080, 0x0a000a0a,
199e1051a39Sopenharmony_ci    0x72007272, 0x44004444, 0x9b009b9b, 0x6c006c6c,
200e1051a39Sopenharmony_ci    0x90009090, 0x0b000b0b, 0x5b005b5b, 0x33003333,
201e1051a39Sopenharmony_ci    0x7d007d7d, 0x5a005a5a, 0x52005252, 0xf300f3f3,
202e1051a39Sopenharmony_ci    0x61006161, 0xa100a1a1, 0xf700f7f7, 0xb000b0b0,
203e1051a39Sopenharmony_ci    0xd600d6d6, 0x3f003f3f, 0x7c007c7c, 0x6d006d6d,
204e1051a39Sopenharmony_ci    0xed00eded, 0x14001414, 0xe000e0e0, 0xa500a5a5,
205e1051a39Sopenharmony_ci    0x3d003d3d, 0x22002222, 0xb300b3b3, 0xf800f8f8,
206e1051a39Sopenharmony_ci    0x89008989, 0xde00dede, 0x71007171, 0x1a001a1a,
207e1051a39Sopenharmony_ci    0xaf00afaf, 0xba00baba, 0xb500b5b5, 0x81008181
208e1051a39Sopenharmony_ci};
209e1051a39Sopenharmony_ci
210e1051a39Sopenharmony_cistatic const uint32_t X1[256] = {
211e1051a39Sopenharmony_ci    0x52520052, 0x09090009, 0x6a6a006a, 0xd5d500d5,
212e1051a39Sopenharmony_ci    0x30300030, 0x36360036, 0xa5a500a5, 0x38380038,
213e1051a39Sopenharmony_ci    0xbfbf00bf, 0x40400040, 0xa3a300a3, 0x9e9e009e,
214e1051a39Sopenharmony_ci    0x81810081, 0xf3f300f3, 0xd7d700d7, 0xfbfb00fb,
215e1051a39Sopenharmony_ci    0x7c7c007c, 0xe3e300e3, 0x39390039, 0x82820082,
216e1051a39Sopenharmony_ci    0x9b9b009b, 0x2f2f002f, 0xffff00ff, 0x87870087,
217e1051a39Sopenharmony_ci    0x34340034, 0x8e8e008e, 0x43430043, 0x44440044,
218e1051a39Sopenharmony_ci    0xc4c400c4, 0xdede00de, 0xe9e900e9, 0xcbcb00cb,
219e1051a39Sopenharmony_ci    0x54540054, 0x7b7b007b, 0x94940094, 0x32320032,
220e1051a39Sopenharmony_ci    0xa6a600a6, 0xc2c200c2, 0x23230023, 0x3d3d003d,
221e1051a39Sopenharmony_ci    0xeeee00ee, 0x4c4c004c, 0x95950095, 0x0b0b000b,
222e1051a39Sopenharmony_ci    0x42420042, 0xfafa00fa, 0xc3c300c3, 0x4e4e004e,
223e1051a39Sopenharmony_ci    0x08080008, 0x2e2e002e, 0xa1a100a1, 0x66660066,
224e1051a39Sopenharmony_ci    0x28280028, 0xd9d900d9, 0x24240024, 0xb2b200b2,
225e1051a39Sopenharmony_ci    0x76760076, 0x5b5b005b, 0xa2a200a2, 0x49490049,
226e1051a39Sopenharmony_ci    0x6d6d006d, 0x8b8b008b, 0xd1d100d1, 0x25250025,
227e1051a39Sopenharmony_ci    0x72720072, 0xf8f800f8, 0xf6f600f6, 0x64640064,
228e1051a39Sopenharmony_ci    0x86860086, 0x68680068, 0x98980098, 0x16160016,
229e1051a39Sopenharmony_ci    0xd4d400d4, 0xa4a400a4, 0x5c5c005c, 0xcccc00cc,
230e1051a39Sopenharmony_ci    0x5d5d005d, 0x65650065, 0xb6b600b6, 0x92920092,
231e1051a39Sopenharmony_ci    0x6c6c006c, 0x70700070, 0x48480048, 0x50500050,
232e1051a39Sopenharmony_ci    0xfdfd00fd, 0xeded00ed, 0xb9b900b9, 0xdada00da,
233e1051a39Sopenharmony_ci    0x5e5e005e, 0x15150015, 0x46460046, 0x57570057,
234e1051a39Sopenharmony_ci    0xa7a700a7, 0x8d8d008d, 0x9d9d009d, 0x84840084,
235e1051a39Sopenharmony_ci    0x90900090, 0xd8d800d8, 0xabab00ab, 0x00000000,
236e1051a39Sopenharmony_ci    0x8c8c008c, 0xbcbc00bc, 0xd3d300d3, 0x0a0a000a,
237e1051a39Sopenharmony_ci    0xf7f700f7, 0xe4e400e4, 0x58580058, 0x05050005,
238e1051a39Sopenharmony_ci    0xb8b800b8, 0xb3b300b3, 0x45450045, 0x06060006,
239e1051a39Sopenharmony_ci    0xd0d000d0, 0x2c2c002c, 0x1e1e001e, 0x8f8f008f,
240e1051a39Sopenharmony_ci    0xcaca00ca, 0x3f3f003f, 0x0f0f000f, 0x02020002,
241e1051a39Sopenharmony_ci    0xc1c100c1, 0xafaf00af, 0xbdbd00bd, 0x03030003,
242e1051a39Sopenharmony_ci    0x01010001, 0x13130013, 0x8a8a008a, 0x6b6b006b,
243e1051a39Sopenharmony_ci    0x3a3a003a, 0x91910091, 0x11110011, 0x41410041,
244e1051a39Sopenharmony_ci    0x4f4f004f, 0x67670067, 0xdcdc00dc, 0xeaea00ea,
245e1051a39Sopenharmony_ci    0x97970097, 0xf2f200f2, 0xcfcf00cf, 0xcece00ce,
246e1051a39Sopenharmony_ci    0xf0f000f0, 0xb4b400b4, 0xe6e600e6, 0x73730073,
247e1051a39Sopenharmony_ci    0x96960096, 0xacac00ac, 0x74740074, 0x22220022,
248e1051a39Sopenharmony_ci    0xe7e700e7, 0xadad00ad, 0x35350035, 0x85850085,
249e1051a39Sopenharmony_ci    0xe2e200e2, 0xf9f900f9, 0x37370037, 0xe8e800e8,
250e1051a39Sopenharmony_ci    0x1c1c001c, 0x75750075, 0xdfdf00df, 0x6e6e006e,
251e1051a39Sopenharmony_ci    0x47470047, 0xf1f100f1, 0x1a1a001a, 0x71710071,
252e1051a39Sopenharmony_ci    0x1d1d001d, 0x29290029, 0xc5c500c5, 0x89890089,
253e1051a39Sopenharmony_ci    0x6f6f006f, 0xb7b700b7, 0x62620062, 0x0e0e000e,
254e1051a39Sopenharmony_ci    0xaaaa00aa, 0x18180018, 0xbebe00be, 0x1b1b001b,
255e1051a39Sopenharmony_ci    0xfcfc00fc, 0x56560056, 0x3e3e003e, 0x4b4b004b,
256e1051a39Sopenharmony_ci    0xc6c600c6, 0xd2d200d2, 0x79790079, 0x20200020,
257e1051a39Sopenharmony_ci    0x9a9a009a, 0xdbdb00db, 0xc0c000c0, 0xfefe00fe,
258e1051a39Sopenharmony_ci    0x78780078, 0xcdcd00cd, 0x5a5a005a, 0xf4f400f4,
259e1051a39Sopenharmony_ci    0x1f1f001f, 0xdddd00dd, 0xa8a800a8, 0x33330033,
260e1051a39Sopenharmony_ci    0x88880088, 0x07070007, 0xc7c700c7, 0x31310031,
261e1051a39Sopenharmony_ci    0xb1b100b1, 0x12120012, 0x10100010, 0x59590059,
262e1051a39Sopenharmony_ci    0x27270027, 0x80800080, 0xecec00ec, 0x5f5f005f,
263e1051a39Sopenharmony_ci    0x60600060, 0x51510051, 0x7f7f007f, 0xa9a900a9,
264e1051a39Sopenharmony_ci    0x19190019, 0xb5b500b5, 0x4a4a004a, 0x0d0d000d,
265e1051a39Sopenharmony_ci    0x2d2d002d, 0xe5e500e5, 0x7a7a007a, 0x9f9f009f,
266e1051a39Sopenharmony_ci    0x93930093, 0xc9c900c9, 0x9c9c009c, 0xefef00ef,
267e1051a39Sopenharmony_ci    0xa0a000a0, 0xe0e000e0, 0x3b3b003b, 0x4d4d004d,
268e1051a39Sopenharmony_ci    0xaeae00ae, 0x2a2a002a, 0xf5f500f5, 0xb0b000b0,
269e1051a39Sopenharmony_ci    0xc8c800c8, 0xebeb00eb, 0xbbbb00bb, 0x3c3c003c,
270e1051a39Sopenharmony_ci    0x83830083, 0x53530053, 0x99990099, 0x61610061,
271e1051a39Sopenharmony_ci    0x17170017, 0x2b2b002b, 0x04040004, 0x7e7e007e,
272e1051a39Sopenharmony_ci    0xbaba00ba, 0x77770077, 0xd6d600d6, 0x26260026,
273e1051a39Sopenharmony_ci    0xe1e100e1, 0x69690069, 0x14140014, 0x63630063,
274e1051a39Sopenharmony_ci    0x55550055, 0x21210021, 0x0c0c000c, 0x7d7d007d
275e1051a39Sopenharmony_ci};
276e1051a39Sopenharmony_ci
277e1051a39Sopenharmony_cistatic const uint32_t X2[256] = {
278e1051a39Sopenharmony_ci    0x30303000, 0x68686800, 0x99999900, 0x1b1b1b00,
279e1051a39Sopenharmony_ci    0x87878700, 0xb9b9b900, 0x21212100, 0x78787800,
280e1051a39Sopenharmony_ci    0x50505000, 0x39393900, 0xdbdbdb00, 0xe1e1e100,
281e1051a39Sopenharmony_ci    0x72727200, 0x09090900, 0x62626200, 0x3c3c3c00,
282e1051a39Sopenharmony_ci    0x3e3e3e00, 0x7e7e7e00, 0x5e5e5e00, 0x8e8e8e00,
283e1051a39Sopenharmony_ci    0xf1f1f100, 0xa0a0a000, 0xcccccc00, 0xa3a3a300,
284e1051a39Sopenharmony_ci    0x2a2a2a00, 0x1d1d1d00, 0xfbfbfb00, 0xb6b6b600,
285e1051a39Sopenharmony_ci    0xd6d6d600, 0x20202000, 0xc4c4c400, 0x8d8d8d00,
286e1051a39Sopenharmony_ci    0x81818100, 0x65656500, 0xf5f5f500, 0x89898900,
287e1051a39Sopenharmony_ci    0xcbcbcb00, 0x9d9d9d00, 0x77777700, 0xc6c6c600,
288e1051a39Sopenharmony_ci    0x57575700, 0x43434300, 0x56565600, 0x17171700,
289e1051a39Sopenharmony_ci    0xd4d4d400, 0x40404000, 0x1a1a1a00, 0x4d4d4d00,
290e1051a39Sopenharmony_ci    0xc0c0c000, 0x63636300, 0x6c6c6c00, 0xe3e3e300,
291e1051a39Sopenharmony_ci    0xb7b7b700, 0xc8c8c800, 0x64646400, 0x6a6a6a00,
292e1051a39Sopenharmony_ci    0x53535300, 0xaaaaaa00, 0x38383800, 0x98989800,
293e1051a39Sopenharmony_ci    0x0c0c0c00, 0xf4f4f400, 0x9b9b9b00, 0xededed00,
294e1051a39Sopenharmony_ci    0x7f7f7f00, 0x22222200, 0x76767600, 0xafafaf00,
295e1051a39Sopenharmony_ci    0xdddddd00, 0x3a3a3a00, 0x0b0b0b00, 0x58585800,
296e1051a39Sopenharmony_ci    0x67676700, 0x88888800, 0x06060600, 0xc3c3c300,
297e1051a39Sopenharmony_ci    0x35353500, 0x0d0d0d00, 0x01010100, 0x8b8b8b00,
298e1051a39Sopenharmony_ci    0x8c8c8c00, 0xc2c2c200, 0xe6e6e600, 0x5f5f5f00,
299e1051a39Sopenharmony_ci    0x02020200, 0x24242400, 0x75757500, 0x93939300,
300e1051a39Sopenharmony_ci    0x66666600, 0x1e1e1e00, 0xe5e5e500, 0xe2e2e200,
301e1051a39Sopenharmony_ci    0x54545400, 0xd8d8d800, 0x10101000, 0xcecece00,
302e1051a39Sopenharmony_ci    0x7a7a7a00, 0xe8e8e800, 0x08080800, 0x2c2c2c00,
303e1051a39Sopenharmony_ci    0x12121200, 0x97979700, 0x32323200, 0xababab00,
304e1051a39Sopenharmony_ci    0xb4b4b400, 0x27272700, 0x0a0a0a00, 0x23232300,
305e1051a39Sopenharmony_ci    0xdfdfdf00, 0xefefef00, 0xcacaca00, 0xd9d9d900,
306e1051a39Sopenharmony_ci    0xb8b8b800, 0xfafafa00, 0xdcdcdc00, 0x31313100,
307e1051a39Sopenharmony_ci    0x6b6b6b00, 0xd1d1d100, 0xadadad00, 0x19191900,
308e1051a39Sopenharmony_ci    0x49494900, 0xbdbdbd00, 0x51515100, 0x96969600,
309e1051a39Sopenharmony_ci    0xeeeeee00, 0xe4e4e400, 0xa8a8a800, 0x41414100,
310e1051a39Sopenharmony_ci    0xdadada00, 0xffffff00, 0xcdcdcd00, 0x55555500,
311e1051a39Sopenharmony_ci    0x86868600, 0x36363600, 0xbebebe00, 0x61616100,
312e1051a39Sopenharmony_ci    0x52525200, 0xf8f8f800, 0xbbbbbb00, 0x0e0e0e00,
313e1051a39Sopenharmony_ci    0x82828200, 0x48484800, 0x69696900, 0x9a9a9a00,
314e1051a39Sopenharmony_ci    0xe0e0e000, 0x47474700, 0x9e9e9e00, 0x5c5c5c00,
315e1051a39Sopenharmony_ci    0x04040400, 0x4b4b4b00, 0x34343400, 0x15151500,
316e1051a39Sopenharmony_ci    0x79797900, 0x26262600, 0xa7a7a700, 0xdedede00,
317e1051a39Sopenharmony_ci    0x29292900, 0xaeaeae00, 0x92929200, 0xd7d7d700,
318e1051a39Sopenharmony_ci    0x84848400, 0xe9e9e900, 0xd2d2d200, 0xbababa00,
319e1051a39Sopenharmony_ci    0x5d5d5d00, 0xf3f3f300, 0xc5c5c500, 0xb0b0b000,
320e1051a39Sopenharmony_ci    0xbfbfbf00, 0xa4a4a400, 0x3b3b3b00, 0x71717100,
321e1051a39Sopenharmony_ci    0x44444400, 0x46464600, 0x2b2b2b00, 0xfcfcfc00,
322e1051a39Sopenharmony_ci    0xebebeb00, 0x6f6f6f00, 0xd5d5d500, 0xf6f6f600,
323e1051a39Sopenharmony_ci    0x14141400, 0xfefefe00, 0x7c7c7c00, 0x70707000,
324e1051a39Sopenharmony_ci    0x5a5a5a00, 0x7d7d7d00, 0xfdfdfd00, 0x2f2f2f00,
325e1051a39Sopenharmony_ci    0x18181800, 0x83838300, 0x16161600, 0xa5a5a500,
326e1051a39Sopenharmony_ci    0x91919100, 0x1f1f1f00, 0x05050500, 0x95959500,
327e1051a39Sopenharmony_ci    0x74747400, 0xa9a9a900, 0xc1c1c100, 0x5b5b5b00,
328e1051a39Sopenharmony_ci    0x4a4a4a00, 0x85858500, 0x6d6d6d00, 0x13131300,
329e1051a39Sopenharmony_ci    0x07070700, 0x4f4f4f00, 0x4e4e4e00, 0x45454500,
330e1051a39Sopenharmony_ci    0xb2b2b200, 0x0f0f0f00, 0xc9c9c900, 0x1c1c1c00,
331e1051a39Sopenharmony_ci    0xa6a6a600, 0xbcbcbc00, 0xececec00, 0x73737300,
332e1051a39Sopenharmony_ci    0x90909000, 0x7b7b7b00, 0xcfcfcf00, 0x59595900,
333e1051a39Sopenharmony_ci    0x8f8f8f00, 0xa1a1a100, 0xf9f9f900, 0x2d2d2d00,
334e1051a39Sopenharmony_ci    0xf2f2f200, 0xb1b1b100, 0x00000000, 0x94949400,
335e1051a39Sopenharmony_ci    0x37373700, 0x9f9f9f00, 0xd0d0d000, 0x2e2e2e00,
336e1051a39Sopenharmony_ci    0x9c9c9c00, 0x6e6e6e00, 0x28282800, 0x3f3f3f00,
337e1051a39Sopenharmony_ci    0x80808000, 0xf0f0f000, 0x3d3d3d00, 0xd3d3d300,
338e1051a39Sopenharmony_ci    0x25252500, 0x8a8a8a00, 0xb5b5b500, 0xe7e7e700,
339e1051a39Sopenharmony_ci    0x42424200, 0xb3b3b300, 0xc7c7c700, 0xeaeaea00,
340e1051a39Sopenharmony_ci    0xf7f7f700, 0x4c4c4c00, 0x11111100, 0x33333300,
341e1051a39Sopenharmony_ci    0x03030300, 0xa2a2a200, 0xacacac00, 0x60606000
342e1051a39Sopenharmony_ci};
343e1051a39Sopenharmony_ci
344e1051a39Sopenharmony_ci/* Key XOR Layer */
345e1051a39Sopenharmony_ci#define ARIA_ADD_ROUND_KEY(RK, T0, T1, T2, T3)  \
346e1051a39Sopenharmony_ci    do {                                        \
347e1051a39Sopenharmony_ci        (T0) ^= (RK)->u[0];                     \
348e1051a39Sopenharmony_ci        (T1) ^= (RK)->u[1];                     \
349e1051a39Sopenharmony_ci        (T2) ^= (RK)->u[2];                     \
350e1051a39Sopenharmony_ci        (T3) ^= (RK)->u[3];                     \
351e1051a39Sopenharmony_ci    } while(0)
352e1051a39Sopenharmony_ci
353e1051a39Sopenharmony_ci/* S-Box Layer 1 + M */
354e1051a39Sopenharmony_ci#define ARIA_SBOX_LAYER1_WITH_PRE_DIFF(T0, T1, T2, T3)  \
355e1051a39Sopenharmony_ci    do {                                                \
356e1051a39Sopenharmony_ci        (T0) =                                          \
357e1051a39Sopenharmony_ci            S1[GET_U8_BE(T0, 0)] ^                      \
358e1051a39Sopenharmony_ci            S2[GET_U8_BE(T0, 1)] ^                      \
359e1051a39Sopenharmony_ci            X1[GET_U8_BE(T0, 2)] ^                      \
360e1051a39Sopenharmony_ci            X2[GET_U8_BE(T0, 3)];                       \
361e1051a39Sopenharmony_ci        (T1) =                                          \
362e1051a39Sopenharmony_ci            S1[GET_U8_BE(T1, 0)] ^                      \
363e1051a39Sopenharmony_ci            S2[GET_U8_BE(T1, 1)] ^                      \
364e1051a39Sopenharmony_ci            X1[GET_U8_BE(T1, 2)] ^                      \
365e1051a39Sopenharmony_ci            X2[GET_U8_BE(T1, 3)];                       \
366e1051a39Sopenharmony_ci        (T2) =                                          \
367e1051a39Sopenharmony_ci            S1[GET_U8_BE(T2, 0)] ^                      \
368e1051a39Sopenharmony_ci            S2[GET_U8_BE(T2, 1)] ^                      \
369e1051a39Sopenharmony_ci            X1[GET_U8_BE(T2, 2)] ^                      \
370e1051a39Sopenharmony_ci            X2[GET_U8_BE(T2, 3)];                       \
371e1051a39Sopenharmony_ci        (T3) =                                          \
372e1051a39Sopenharmony_ci            S1[GET_U8_BE(T3, 0)] ^                      \
373e1051a39Sopenharmony_ci            S2[GET_U8_BE(T3, 1)] ^                      \
374e1051a39Sopenharmony_ci            X1[GET_U8_BE(T3, 2)] ^                      \
375e1051a39Sopenharmony_ci            X2[GET_U8_BE(T3, 3)];                       \
376e1051a39Sopenharmony_ci    } while(0)
377e1051a39Sopenharmony_ci
378e1051a39Sopenharmony_ci/* S-Box Layer 2 + M */
379e1051a39Sopenharmony_ci#define ARIA_SBOX_LAYER2_WITH_PRE_DIFF(T0, T1, T2, T3)  \
380e1051a39Sopenharmony_ci    do {                                                \
381e1051a39Sopenharmony_ci        (T0) =                                          \
382e1051a39Sopenharmony_ci            X1[GET_U8_BE(T0, 0)] ^                      \
383e1051a39Sopenharmony_ci            X2[GET_U8_BE(T0, 1)] ^                      \
384e1051a39Sopenharmony_ci            S1[GET_U8_BE(T0, 2)] ^                      \
385e1051a39Sopenharmony_ci            S2[GET_U8_BE(T0, 3)];                       \
386e1051a39Sopenharmony_ci        (T1) =                                          \
387e1051a39Sopenharmony_ci            X1[GET_U8_BE(T1, 0)] ^                      \
388e1051a39Sopenharmony_ci            X2[GET_U8_BE(T1, 1)] ^                      \
389e1051a39Sopenharmony_ci            S1[GET_U8_BE(T1, 2)] ^                      \
390e1051a39Sopenharmony_ci            S2[GET_U8_BE(T1, 3)];                       \
391e1051a39Sopenharmony_ci        (T2) =                                          \
392e1051a39Sopenharmony_ci            X1[GET_U8_BE(T2, 0)] ^                      \
393e1051a39Sopenharmony_ci            X2[GET_U8_BE(T2, 1)] ^                      \
394e1051a39Sopenharmony_ci            S1[GET_U8_BE(T2, 2)] ^                      \
395e1051a39Sopenharmony_ci            S2[GET_U8_BE(T2, 3)];                       \
396e1051a39Sopenharmony_ci        (T3) =                                          \
397e1051a39Sopenharmony_ci            X1[GET_U8_BE(T3, 0)] ^                      \
398e1051a39Sopenharmony_ci            X2[GET_U8_BE(T3, 1)] ^                      \
399e1051a39Sopenharmony_ci            S1[GET_U8_BE(T3, 2)] ^                      \
400e1051a39Sopenharmony_ci            S2[GET_U8_BE(T3, 3)];                       \
401e1051a39Sopenharmony_ci    } while(0)
402e1051a39Sopenharmony_ci
403e1051a39Sopenharmony_ci/* Word-level diffusion */
404e1051a39Sopenharmony_ci#define ARIA_DIFF_WORD(T0,T1,T2,T3) \
405e1051a39Sopenharmony_ci    do {                            \
406e1051a39Sopenharmony_ci        (T1) ^= (T2);               \
407e1051a39Sopenharmony_ci        (T2) ^= (T3);               \
408e1051a39Sopenharmony_ci        (T0) ^= (T1);               \
409e1051a39Sopenharmony_ci                                    \
410e1051a39Sopenharmony_ci        (T3) ^= (T1);               \
411e1051a39Sopenharmony_ci        (T2) ^= (T0);               \
412e1051a39Sopenharmony_ci        (T1) ^= (T2);               \
413e1051a39Sopenharmony_ci    } while(0)
414e1051a39Sopenharmony_ci
415e1051a39Sopenharmony_ci/* Byte-level diffusion */
416e1051a39Sopenharmony_ci#define ARIA_DIFF_BYTE(T0, T1, T2, T3)                                  \
417e1051a39Sopenharmony_ci    do {                                                                \
418e1051a39Sopenharmony_ci        (T1) = (((T1) << 8) & 0xff00ff00) ^ (((T1) >> 8) & 0x00ff00ff); \
419e1051a39Sopenharmony_ci        (T2) = rotr32(T2, 16);                                          \
420e1051a39Sopenharmony_ci        (T3) = bswap32(T3);                                             \
421e1051a39Sopenharmony_ci    } while(0)
422e1051a39Sopenharmony_ci
423e1051a39Sopenharmony_ci/* Odd round Substitution & Diffusion */
424e1051a39Sopenharmony_ci#define ARIA_SUBST_DIFF_ODD(T0, T1, T2, T3)             \
425e1051a39Sopenharmony_ci    do {                                                \
426e1051a39Sopenharmony_ci        ARIA_SBOX_LAYER1_WITH_PRE_DIFF(T0, T1, T2, T3); \
427e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(T0, T1, T2, T3);                 \
428e1051a39Sopenharmony_ci        ARIA_DIFF_BYTE(T0, T1, T2, T3);                 \
429e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(T0, T1, T2, T3);                 \
430e1051a39Sopenharmony_ci    } while(0)
431e1051a39Sopenharmony_ci
432e1051a39Sopenharmony_ci/* Even round Substitution & Diffusion */
433e1051a39Sopenharmony_ci#define ARIA_SUBST_DIFF_EVEN(T0, T1, T2, T3)            \
434e1051a39Sopenharmony_ci    do {                                                \
435e1051a39Sopenharmony_ci        ARIA_SBOX_LAYER2_WITH_PRE_DIFF(T0, T1, T2, T3); \
436e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(T0, T1, T2, T3);                 \
437e1051a39Sopenharmony_ci        ARIA_DIFF_BYTE(T2, T3, T0, T1);                 \
438e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(T0, T1, T2, T3);                 \
439e1051a39Sopenharmony_ci    } while(0)
440e1051a39Sopenharmony_ci
441e1051a39Sopenharmony_ci/* Q, R Macro expanded ARIA GSRK */
442e1051a39Sopenharmony_ci#define _ARIA_GSRK(RK, X, Y, Q, R)                  \
443e1051a39Sopenharmony_ci    do {                                            \
444e1051a39Sopenharmony_ci        (RK)->u[0] =                                \
445e1051a39Sopenharmony_ci            ((X)[0]) ^                              \
446e1051a39Sopenharmony_ci            (((Y)[((Q)    ) % 4]) >> (R)) ^         \
447e1051a39Sopenharmony_ci            (((Y)[((Q) + 3) % 4]) << (32 - (R)));   \
448e1051a39Sopenharmony_ci        (RK)->u[1] =                                \
449e1051a39Sopenharmony_ci            ((X)[1]) ^                              \
450e1051a39Sopenharmony_ci            (((Y)[((Q) + 1) % 4]) >> (R)) ^         \
451e1051a39Sopenharmony_ci            (((Y)[((Q)    ) % 4]) << (32 - (R)));   \
452e1051a39Sopenharmony_ci        (RK)->u[2] =                                \
453e1051a39Sopenharmony_ci            ((X)[2]) ^                              \
454e1051a39Sopenharmony_ci            (((Y)[((Q) + 2) % 4]) >> (R)) ^         \
455e1051a39Sopenharmony_ci            (((Y)[((Q) + 1) % 4]) << (32 - (R)));   \
456e1051a39Sopenharmony_ci        (RK)->u[3] =                                \
457e1051a39Sopenharmony_ci            ((X)[3]) ^                              \
458e1051a39Sopenharmony_ci            (((Y)[((Q) + 3) % 4]) >> (R)) ^         \
459e1051a39Sopenharmony_ci            (((Y)[((Q) + 2) % 4]) << (32 - (R)));   \
460e1051a39Sopenharmony_ci    } while(0)
461e1051a39Sopenharmony_ci
462e1051a39Sopenharmony_ci#define ARIA_GSRK(RK, X, Y, N) _ARIA_GSRK(RK, X, Y, 4 - ((N) / 32), (N) % 32)
463e1051a39Sopenharmony_ci
464e1051a39Sopenharmony_ci#define ARIA_DEC_DIFF_BYTE(X, Y, TMP, TMP2)         \
465e1051a39Sopenharmony_ci    do {                                            \
466e1051a39Sopenharmony_ci        (TMP) = (X);                                \
467e1051a39Sopenharmony_ci        (TMP2) = rotr32((TMP), 8);                  \
468e1051a39Sopenharmony_ci        (Y) = (TMP2) ^ rotr32((TMP) ^ (TMP2), 16);  \
469e1051a39Sopenharmony_ci    } while(0)
470e1051a39Sopenharmony_ci
471e1051a39Sopenharmony_civoid ossl_aria_encrypt(const unsigned char *in, unsigned char *out,
472e1051a39Sopenharmony_ci                       const ARIA_KEY *key)
473e1051a39Sopenharmony_ci{
474e1051a39Sopenharmony_ci    register uint32_t reg0, reg1, reg2, reg3;
475e1051a39Sopenharmony_ci    int Nr;
476e1051a39Sopenharmony_ci    const ARIA_u128 *rk;
477e1051a39Sopenharmony_ci
478e1051a39Sopenharmony_ci    if (in == NULL || out == NULL || key == NULL) {
479e1051a39Sopenharmony_ci        return;
480e1051a39Sopenharmony_ci    }
481e1051a39Sopenharmony_ci
482e1051a39Sopenharmony_ci    rk = key->rd_key;
483e1051a39Sopenharmony_ci    Nr = key->rounds;
484e1051a39Sopenharmony_ci
485e1051a39Sopenharmony_ci    if (Nr != 12 && Nr != 14 && Nr != 16) {
486e1051a39Sopenharmony_ci        return;
487e1051a39Sopenharmony_ci    }
488e1051a39Sopenharmony_ci
489e1051a39Sopenharmony_ci    reg0 = GET_U32_BE(in, 0);
490e1051a39Sopenharmony_ci    reg1 = GET_U32_BE(in, 1);
491e1051a39Sopenharmony_ci    reg2 = GET_U32_BE(in, 2);
492e1051a39Sopenharmony_ci    reg3 = GET_U32_BE(in, 3);
493e1051a39Sopenharmony_ci
494e1051a39Sopenharmony_ci    ARIA_ADD_ROUND_KEY(rk, reg0, reg1, reg2, reg3);
495e1051a39Sopenharmony_ci    rk++;
496e1051a39Sopenharmony_ci
497e1051a39Sopenharmony_ci    ARIA_SUBST_DIFF_ODD(reg0, reg1, reg2, reg3);
498e1051a39Sopenharmony_ci    ARIA_ADD_ROUND_KEY(rk, reg0, reg1, reg2, reg3);
499e1051a39Sopenharmony_ci    rk++;
500e1051a39Sopenharmony_ci
501e1051a39Sopenharmony_ci    while(Nr -= 2){
502e1051a39Sopenharmony_ci        ARIA_SUBST_DIFF_EVEN(reg0, reg1, reg2, reg3);
503e1051a39Sopenharmony_ci        ARIA_ADD_ROUND_KEY(rk, reg0, reg1, reg2, reg3);
504e1051a39Sopenharmony_ci        rk++;
505e1051a39Sopenharmony_ci
506e1051a39Sopenharmony_ci        ARIA_SUBST_DIFF_ODD(reg0, reg1, reg2, reg3);
507e1051a39Sopenharmony_ci        ARIA_ADD_ROUND_KEY(rk, reg0, reg1, reg2, reg3);
508e1051a39Sopenharmony_ci        rk++;
509e1051a39Sopenharmony_ci    }
510e1051a39Sopenharmony_ci
511e1051a39Sopenharmony_ci    reg0 = rk->u[0] ^ MAKE_U32(
512e1051a39Sopenharmony_ci        (uint8_t)(X1[GET_U8_BE(reg0, 0)]     ),
513e1051a39Sopenharmony_ci        (uint8_t)(X2[GET_U8_BE(reg0, 1)] >> 8),
514e1051a39Sopenharmony_ci        (uint8_t)(S1[GET_U8_BE(reg0, 2)]     ),
515e1051a39Sopenharmony_ci        (uint8_t)(S2[GET_U8_BE(reg0, 3)]     ));
516e1051a39Sopenharmony_ci    reg1 = rk->u[1] ^ MAKE_U32(
517e1051a39Sopenharmony_ci        (uint8_t)(X1[GET_U8_BE(reg1, 0)]     ),
518e1051a39Sopenharmony_ci        (uint8_t)(X2[GET_U8_BE(reg1, 1)] >> 8),
519e1051a39Sopenharmony_ci        (uint8_t)(S1[GET_U8_BE(reg1, 2)]     ),
520e1051a39Sopenharmony_ci        (uint8_t)(S2[GET_U8_BE(reg1, 3)]     ));
521e1051a39Sopenharmony_ci    reg2 = rk->u[2] ^ MAKE_U32(
522e1051a39Sopenharmony_ci        (uint8_t)(X1[GET_U8_BE(reg2, 0)]     ),
523e1051a39Sopenharmony_ci        (uint8_t)(X2[GET_U8_BE(reg2, 1)] >> 8),
524e1051a39Sopenharmony_ci        (uint8_t)(S1[GET_U8_BE(reg2, 2)]     ),
525e1051a39Sopenharmony_ci        (uint8_t)(S2[GET_U8_BE(reg2, 3)]     ));
526e1051a39Sopenharmony_ci    reg3 = rk->u[3] ^ MAKE_U32(
527e1051a39Sopenharmony_ci        (uint8_t)(X1[GET_U8_BE(reg3, 0)]     ),
528e1051a39Sopenharmony_ci        (uint8_t)(X2[GET_U8_BE(reg3, 1)] >> 8),
529e1051a39Sopenharmony_ci        (uint8_t)(S1[GET_U8_BE(reg3, 2)]     ),
530e1051a39Sopenharmony_ci        (uint8_t)(S2[GET_U8_BE(reg3, 3)]     ));
531e1051a39Sopenharmony_ci
532e1051a39Sopenharmony_ci    PUT_U32_BE(out, 0, reg0);
533e1051a39Sopenharmony_ci    PUT_U32_BE(out, 1, reg1);
534e1051a39Sopenharmony_ci    PUT_U32_BE(out, 2, reg2);
535e1051a39Sopenharmony_ci    PUT_U32_BE(out, 3, reg3);
536e1051a39Sopenharmony_ci}
537e1051a39Sopenharmony_ci
538e1051a39Sopenharmony_ciint ossl_aria_set_encrypt_key(const unsigned char *userKey, const int bits,
539e1051a39Sopenharmony_ci                              ARIA_KEY *key)
540e1051a39Sopenharmony_ci{
541e1051a39Sopenharmony_ci    register uint32_t reg0, reg1, reg2, reg3;
542e1051a39Sopenharmony_ci    uint32_t w0[4], w1[4], w2[4], w3[4];
543e1051a39Sopenharmony_ci    const uint32_t *ck;
544e1051a39Sopenharmony_ci
545e1051a39Sopenharmony_ci    ARIA_u128 *rk;
546e1051a39Sopenharmony_ci    int Nr = (bits + 256) / 32;
547e1051a39Sopenharmony_ci
548e1051a39Sopenharmony_ci    if (userKey == NULL || key == NULL) {
549e1051a39Sopenharmony_ci        return -1;
550e1051a39Sopenharmony_ci    }
551e1051a39Sopenharmony_ci    if (bits != 128 && bits != 192 && bits != 256) {
552e1051a39Sopenharmony_ci        return -2;
553e1051a39Sopenharmony_ci    }
554e1051a39Sopenharmony_ci
555e1051a39Sopenharmony_ci    rk = key->rd_key;
556e1051a39Sopenharmony_ci    key->rounds = Nr;
557e1051a39Sopenharmony_ci    ck = &Key_RC[(bits - 128) / 64][0];
558e1051a39Sopenharmony_ci
559e1051a39Sopenharmony_ci    w0[0] = GET_U32_BE(userKey, 0);
560e1051a39Sopenharmony_ci    w0[1] = GET_U32_BE(userKey, 1);
561e1051a39Sopenharmony_ci    w0[2] = GET_U32_BE(userKey, 2);
562e1051a39Sopenharmony_ci    w0[3] = GET_U32_BE(userKey, 3);
563e1051a39Sopenharmony_ci
564e1051a39Sopenharmony_ci    reg0 = w0[0] ^ ck[0];
565e1051a39Sopenharmony_ci    reg1 = w0[1] ^ ck[1];
566e1051a39Sopenharmony_ci    reg2 = w0[2] ^ ck[2];
567e1051a39Sopenharmony_ci    reg3 = w0[3] ^ ck[3];
568e1051a39Sopenharmony_ci
569e1051a39Sopenharmony_ci    ARIA_SUBST_DIFF_ODD(reg0, reg1, reg2, reg3);
570e1051a39Sopenharmony_ci
571e1051a39Sopenharmony_ci    if (bits > 128) {
572e1051a39Sopenharmony_ci        w1[0] = GET_U32_BE(userKey, 4);
573e1051a39Sopenharmony_ci        w1[1] = GET_U32_BE(userKey, 5);
574e1051a39Sopenharmony_ci        if (bits > 192) {
575e1051a39Sopenharmony_ci            w1[2] = GET_U32_BE(userKey, 6);
576e1051a39Sopenharmony_ci            w1[3] = GET_U32_BE(userKey, 7);
577e1051a39Sopenharmony_ci        }
578e1051a39Sopenharmony_ci        else {
579e1051a39Sopenharmony_ci            w1[2] = w1[3] = 0;
580e1051a39Sopenharmony_ci        }
581e1051a39Sopenharmony_ci    }
582e1051a39Sopenharmony_ci    else {
583e1051a39Sopenharmony_ci        w1[0] = w1[1] = w1[2] = w1[3] = 0;
584e1051a39Sopenharmony_ci    }
585e1051a39Sopenharmony_ci
586e1051a39Sopenharmony_ci    w1[0] ^= reg0;
587e1051a39Sopenharmony_ci    w1[1] ^= reg1;
588e1051a39Sopenharmony_ci    w1[2] ^= reg2;
589e1051a39Sopenharmony_ci    w1[3] ^= reg3;
590e1051a39Sopenharmony_ci
591e1051a39Sopenharmony_ci    reg0 = w1[0];
592e1051a39Sopenharmony_ci    reg1 = w1[1];
593e1051a39Sopenharmony_ci    reg2 = w1[2];
594e1051a39Sopenharmony_ci    reg3 = w1[3];
595e1051a39Sopenharmony_ci
596e1051a39Sopenharmony_ci    reg0 ^= ck[4];
597e1051a39Sopenharmony_ci    reg1 ^= ck[5];
598e1051a39Sopenharmony_ci    reg2 ^= ck[6];
599e1051a39Sopenharmony_ci    reg3 ^= ck[7];
600e1051a39Sopenharmony_ci
601e1051a39Sopenharmony_ci    ARIA_SUBST_DIFF_EVEN(reg0, reg1, reg2, reg3);
602e1051a39Sopenharmony_ci
603e1051a39Sopenharmony_ci    reg0 ^= w0[0];
604e1051a39Sopenharmony_ci    reg1 ^= w0[1];
605e1051a39Sopenharmony_ci    reg2 ^= w0[2];
606e1051a39Sopenharmony_ci    reg3 ^= w0[3];
607e1051a39Sopenharmony_ci
608e1051a39Sopenharmony_ci    w2[0] = reg0;
609e1051a39Sopenharmony_ci    w2[1] = reg1;
610e1051a39Sopenharmony_ci    w2[2] = reg2;
611e1051a39Sopenharmony_ci    w2[3] = reg3;
612e1051a39Sopenharmony_ci
613e1051a39Sopenharmony_ci    reg0 ^= ck[8];
614e1051a39Sopenharmony_ci    reg1 ^= ck[9];
615e1051a39Sopenharmony_ci    reg2 ^= ck[10];
616e1051a39Sopenharmony_ci    reg3 ^= ck[11];
617e1051a39Sopenharmony_ci
618e1051a39Sopenharmony_ci    ARIA_SUBST_DIFF_ODD(reg0, reg1, reg2, reg3);
619e1051a39Sopenharmony_ci
620e1051a39Sopenharmony_ci    w3[0] = reg0 ^ w1[0];
621e1051a39Sopenharmony_ci    w3[1] = reg1 ^ w1[1];
622e1051a39Sopenharmony_ci    w3[2] = reg2 ^ w1[2];
623e1051a39Sopenharmony_ci    w3[3] = reg3 ^ w1[3];
624e1051a39Sopenharmony_ci
625e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w0, w1, 19);
626e1051a39Sopenharmony_ci    rk++;
627e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w1, w2, 19);
628e1051a39Sopenharmony_ci    rk++;
629e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w2, w3, 19);
630e1051a39Sopenharmony_ci    rk++;
631e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w3, w0, 19);
632e1051a39Sopenharmony_ci
633e1051a39Sopenharmony_ci    rk++;
634e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w0, w1, 31);
635e1051a39Sopenharmony_ci    rk++;
636e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w1, w2, 31);
637e1051a39Sopenharmony_ci    rk++;
638e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w2, w3, 31);
639e1051a39Sopenharmony_ci    rk++;
640e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w3, w0, 31);
641e1051a39Sopenharmony_ci
642e1051a39Sopenharmony_ci    rk++;
643e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w0, w1, 67);
644e1051a39Sopenharmony_ci    rk++;
645e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w1, w2, 67);
646e1051a39Sopenharmony_ci    rk++;
647e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w2, w3, 67);
648e1051a39Sopenharmony_ci    rk++;
649e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w3, w0, 67);
650e1051a39Sopenharmony_ci
651e1051a39Sopenharmony_ci    rk++;
652e1051a39Sopenharmony_ci    ARIA_GSRK(rk, w0, w1, 97);
653e1051a39Sopenharmony_ci    if (bits > 128) {
654e1051a39Sopenharmony_ci        rk++;
655e1051a39Sopenharmony_ci        ARIA_GSRK(rk, w1, w2, 97);
656e1051a39Sopenharmony_ci        rk++;
657e1051a39Sopenharmony_ci        ARIA_GSRK(rk, w2, w3, 97);
658e1051a39Sopenharmony_ci    }
659e1051a39Sopenharmony_ci    if (bits > 192) {
660e1051a39Sopenharmony_ci        rk++;
661e1051a39Sopenharmony_ci        ARIA_GSRK(rk, w3, w0, 97);
662e1051a39Sopenharmony_ci
663e1051a39Sopenharmony_ci        rk++;
664e1051a39Sopenharmony_ci        ARIA_GSRK(rk, w0, w1, 109);
665e1051a39Sopenharmony_ci    }
666e1051a39Sopenharmony_ci
667e1051a39Sopenharmony_ci    return 0;
668e1051a39Sopenharmony_ci}
669e1051a39Sopenharmony_ci
670e1051a39Sopenharmony_ciint ossl_aria_set_decrypt_key(const unsigned char *userKey, const int bits,
671e1051a39Sopenharmony_ci                              ARIA_KEY *key)
672e1051a39Sopenharmony_ci{
673e1051a39Sopenharmony_ci    ARIA_u128 *rk_head;
674e1051a39Sopenharmony_ci    ARIA_u128 *rk_tail;
675e1051a39Sopenharmony_ci    register uint32_t w1, w2;
676e1051a39Sopenharmony_ci    register uint32_t reg0, reg1, reg2, reg3;
677e1051a39Sopenharmony_ci    uint32_t s0, s1, s2, s3;
678e1051a39Sopenharmony_ci
679e1051a39Sopenharmony_ci    const int r = ossl_aria_set_encrypt_key(userKey, bits, key);
680e1051a39Sopenharmony_ci
681e1051a39Sopenharmony_ci    if (r != 0) {
682e1051a39Sopenharmony_ci        return r;
683e1051a39Sopenharmony_ci    }
684e1051a39Sopenharmony_ci
685e1051a39Sopenharmony_ci    rk_head = key->rd_key;
686e1051a39Sopenharmony_ci    rk_tail = rk_head + key->rounds;
687e1051a39Sopenharmony_ci
688e1051a39Sopenharmony_ci    reg0 = rk_head->u[0];
689e1051a39Sopenharmony_ci    reg1 = rk_head->u[1];
690e1051a39Sopenharmony_ci    reg2 = rk_head->u[2];
691e1051a39Sopenharmony_ci    reg3 = rk_head->u[3];
692e1051a39Sopenharmony_ci
693e1051a39Sopenharmony_ci    memcpy(rk_head, rk_tail, ARIA_BLOCK_SIZE);
694e1051a39Sopenharmony_ci
695e1051a39Sopenharmony_ci    rk_tail->u[0] = reg0;
696e1051a39Sopenharmony_ci    rk_tail->u[1] = reg1;
697e1051a39Sopenharmony_ci    rk_tail->u[2] = reg2;
698e1051a39Sopenharmony_ci    rk_tail->u[3] = reg3;
699e1051a39Sopenharmony_ci
700e1051a39Sopenharmony_ci    rk_head++;
701e1051a39Sopenharmony_ci    rk_tail--;
702e1051a39Sopenharmony_ci
703e1051a39Sopenharmony_ci    for (; rk_head < rk_tail; rk_head++, rk_tail--) {
704e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_head->u[0], reg0, w1, w2);
705e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_head->u[1], reg1, w1, w2);
706e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_head->u[2], reg2, w1, w2);
707e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_head->u[3], reg3, w1, w2);
708e1051a39Sopenharmony_ci
709e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(reg0, reg1, reg2, reg3);
710e1051a39Sopenharmony_ci        ARIA_DIFF_BYTE(reg0, reg1, reg2, reg3);
711e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(reg0, reg1, reg2, reg3);
712e1051a39Sopenharmony_ci
713e1051a39Sopenharmony_ci        s0 = reg0;
714e1051a39Sopenharmony_ci        s1 = reg1;
715e1051a39Sopenharmony_ci        s2 = reg2;
716e1051a39Sopenharmony_ci        s3 = reg3;
717e1051a39Sopenharmony_ci
718e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_tail->u[0], reg0, w1, w2);
719e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_tail->u[1], reg1, w1, w2);
720e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_tail->u[2], reg2, w1, w2);
721e1051a39Sopenharmony_ci        ARIA_DEC_DIFF_BYTE(rk_tail->u[3], reg3, w1, w2);
722e1051a39Sopenharmony_ci
723e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(reg0, reg1, reg2, reg3);
724e1051a39Sopenharmony_ci        ARIA_DIFF_BYTE(reg0, reg1, reg2, reg3);
725e1051a39Sopenharmony_ci        ARIA_DIFF_WORD(reg0, reg1, reg2, reg3);
726e1051a39Sopenharmony_ci
727e1051a39Sopenharmony_ci        rk_head->u[0] = reg0;
728e1051a39Sopenharmony_ci        rk_head->u[1] = reg1;
729e1051a39Sopenharmony_ci        rk_head->u[2] = reg2;
730e1051a39Sopenharmony_ci        rk_head->u[3] = reg3;
731e1051a39Sopenharmony_ci
732e1051a39Sopenharmony_ci        rk_tail->u[0] = s0;
733e1051a39Sopenharmony_ci        rk_tail->u[1] = s1;
734e1051a39Sopenharmony_ci        rk_tail->u[2] = s2;
735e1051a39Sopenharmony_ci        rk_tail->u[3] = s3;
736e1051a39Sopenharmony_ci    }
737e1051a39Sopenharmony_ci    ARIA_DEC_DIFF_BYTE(rk_head->u[0], reg0, w1, w2);
738e1051a39Sopenharmony_ci    ARIA_DEC_DIFF_BYTE(rk_head->u[1], reg1, w1, w2);
739e1051a39Sopenharmony_ci    ARIA_DEC_DIFF_BYTE(rk_head->u[2], reg2, w1, w2);
740e1051a39Sopenharmony_ci    ARIA_DEC_DIFF_BYTE(rk_head->u[3], reg3, w1, w2);
741e1051a39Sopenharmony_ci
742e1051a39Sopenharmony_ci    ARIA_DIFF_WORD(reg0, reg1, reg2, reg3);
743e1051a39Sopenharmony_ci    ARIA_DIFF_BYTE(reg0, reg1, reg2, reg3);
744e1051a39Sopenharmony_ci    ARIA_DIFF_WORD(reg0, reg1, reg2, reg3);
745e1051a39Sopenharmony_ci
746e1051a39Sopenharmony_ci    rk_tail->u[0] = reg0;
747e1051a39Sopenharmony_ci    rk_tail->u[1] = reg1;
748e1051a39Sopenharmony_ci    rk_tail->u[2] = reg2;
749e1051a39Sopenharmony_ci    rk_tail->u[3] = reg3;
750e1051a39Sopenharmony_ci
751e1051a39Sopenharmony_ci    return 0;
752e1051a39Sopenharmony_ci}
753e1051a39Sopenharmony_ci
754e1051a39Sopenharmony_ci#else
755e1051a39Sopenharmony_ci
756e1051a39Sopenharmony_cistatic const unsigned char sb1[256] = {
757e1051a39Sopenharmony_ci    0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5,
758e1051a39Sopenharmony_ci    0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76,
759e1051a39Sopenharmony_ci    0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0,
760e1051a39Sopenharmony_ci    0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0,
761e1051a39Sopenharmony_ci    0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc,
762e1051a39Sopenharmony_ci    0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
763e1051a39Sopenharmony_ci    0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a,
764e1051a39Sopenharmony_ci    0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75,
765e1051a39Sopenharmony_ci    0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0,
766e1051a39Sopenharmony_ci    0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84,
767e1051a39Sopenharmony_ci    0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b,
768e1051a39Sopenharmony_ci    0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
769e1051a39Sopenharmony_ci    0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85,
770e1051a39Sopenharmony_ci    0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8,
771e1051a39Sopenharmony_ci    0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5,
772e1051a39Sopenharmony_ci    0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2,
773e1051a39Sopenharmony_ci    0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17,
774e1051a39Sopenharmony_ci    0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
775e1051a39Sopenharmony_ci    0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88,
776e1051a39Sopenharmony_ci    0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb,
777e1051a39Sopenharmony_ci    0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c,
778e1051a39Sopenharmony_ci    0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79,
779e1051a39Sopenharmony_ci    0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9,
780e1051a39Sopenharmony_ci    0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
781e1051a39Sopenharmony_ci    0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6,
782e1051a39Sopenharmony_ci    0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a,
783e1051a39Sopenharmony_ci    0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e,
784e1051a39Sopenharmony_ci    0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e,
785e1051a39Sopenharmony_ci    0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94,
786e1051a39Sopenharmony_ci    0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
787e1051a39Sopenharmony_ci    0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68,
788e1051a39Sopenharmony_ci    0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16
789e1051a39Sopenharmony_ci};
790e1051a39Sopenharmony_ci
791e1051a39Sopenharmony_cistatic const unsigned char sb2[256] = {
792e1051a39Sopenharmony_ci    0xe2, 0x4e, 0x54, 0xfc, 0x94, 0xc2, 0x4a, 0xcc,
793e1051a39Sopenharmony_ci    0x62, 0x0d, 0x6a, 0x46, 0x3c, 0x4d, 0x8b, 0xd1,
794e1051a39Sopenharmony_ci    0x5e, 0xfa, 0x64, 0xcb, 0xb4, 0x97, 0xbe, 0x2b,
795e1051a39Sopenharmony_ci    0xbc, 0x77, 0x2e, 0x03, 0xd3, 0x19, 0x59, 0xc1,
796e1051a39Sopenharmony_ci    0x1d, 0x06, 0x41, 0x6b, 0x55, 0xf0, 0x99, 0x69,
797e1051a39Sopenharmony_ci    0xea, 0x9c, 0x18, 0xae, 0x63, 0xdf, 0xe7, 0xbb,
798e1051a39Sopenharmony_ci    0x00, 0x73, 0x66, 0xfb, 0x96, 0x4c, 0x85, 0xe4,
799e1051a39Sopenharmony_ci    0x3a, 0x09, 0x45, 0xaa, 0x0f, 0xee, 0x10, 0xeb,
800e1051a39Sopenharmony_ci    0x2d, 0x7f, 0xf4, 0x29, 0xac, 0xcf, 0xad, 0x91,
801e1051a39Sopenharmony_ci    0x8d, 0x78, 0xc8, 0x95, 0xf9, 0x2f, 0xce, 0xcd,
802e1051a39Sopenharmony_ci    0x08, 0x7a, 0x88, 0x38, 0x5c, 0x83, 0x2a, 0x28,
803e1051a39Sopenharmony_ci    0x47, 0xdb, 0xb8, 0xc7, 0x93, 0xa4, 0x12, 0x53,
804e1051a39Sopenharmony_ci    0xff, 0x87, 0x0e, 0x31, 0x36, 0x21, 0x58, 0x48,
805e1051a39Sopenharmony_ci    0x01, 0x8e, 0x37, 0x74, 0x32, 0xca, 0xe9, 0xb1,
806e1051a39Sopenharmony_ci    0xb7, 0xab, 0x0c, 0xd7, 0xc4, 0x56, 0x42, 0x26,
807e1051a39Sopenharmony_ci    0x07, 0x98, 0x60, 0xd9, 0xb6, 0xb9, 0x11, 0x40,
808e1051a39Sopenharmony_ci    0xec, 0x20, 0x8c, 0xbd, 0xa0, 0xc9, 0x84, 0x04,
809e1051a39Sopenharmony_ci    0x49, 0x23, 0xf1, 0x4f, 0x50, 0x1f, 0x13, 0xdc,
810e1051a39Sopenharmony_ci    0xd8, 0xc0, 0x9e, 0x57, 0xe3, 0xc3, 0x7b, 0x65,
811e1051a39Sopenharmony_ci    0x3b, 0x02, 0x8f, 0x3e, 0xe8, 0x25, 0x92, 0xe5,
812e1051a39Sopenharmony_ci    0x15, 0xdd, 0xfd, 0x17, 0xa9, 0xbf, 0xd4, 0x9a,
813e1051a39Sopenharmony_ci    0x7e, 0xc5, 0x39, 0x67, 0xfe, 0x76, 0x9d, 0x43,
814e1051a39Sopenharmony_ci    0xa7, 0xe1, 0xd0, 0xf5, 0x68, 0xf2, 0x1b, 0x34,
815e1051a39Sopenharmony_ci    0x70, 0x05, 0xa3, 0x8a, 0xd5, 0x79, 0x86, 0xa8,
816e1051a39Sopenharmony_ci    0x30, 0xc6, 0x51, 0x4b, 0x1e, 0xa6, 0x27, 0xf6,
817e1051a39Sopenharmony_ci    0x35, 0xd2, 0x6e, 0x24, 0x16, 0x82, 0x5f, 0xda,
818e1051a39Sopenharmony_ci    0xe6, 0x75, 0xa2, 0xef, 0x2c, 0xb2, 0x1c, 0x9f,
819e1051a39Sopenharmony_ci    0x5d, 0x6f, 0x80, 0x0a, 0x72, 0x44, 0x9b, 0x6c,
820e1051a39Sopenharmony_ci    0x90, 0x0b, 0x5b, 0x33, 0x7d, 0x5a, 0x52, 0xf3,
821e1051a39Sopenharmony_ci    0x61, 0xa1, 0xf7, 0xb0, 0xd6, 0x3f, 0x7c, 0x6d,
822e1051a39Sopenharmony_ci    0xed, 0x14, 0xe0, 0xa5, 0x3d, 0x22, 0xb3, 0xf8,
823e1051a39Sopenharmony_ci    0x89, 0xde, 0x71, 0x1a, 0xaf, 0xba, 0xb5, 0x81
824e1051a39Sopenharmony_ci};
825e1051a39Sopenharmony_ci
826e1051a39Sopenharmony_cistatic const unsigned char sb3[256] = {
827e1051a39Sopenharmony_ci    0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38,
828e1051a39Sopenharmony_ci    0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb,
829e1051a39Sopenharmony_ci    0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87,
830e1051a39Sopenharmony_ci    0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb,
831e1051a39Sopenharmony_ci    0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d,
832e1051a39Sopenharmony_ci    0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e,
833e1051a39Sopenharmony_ci    0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2,
834e1051a39Sopenharmony_ci    0x76, 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25,
835e1051a39Sopenharmony_ci    0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16,
836e1051a39Sopenharmony_ci    0xd4, 0xa4, 0x5c, 0xcc, 0x5d, 0x65, 0xb6, 0x92,
837e1051a39Sopenharmony_ci    0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda,
838e1051a39Sopenharmony_ci    0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d, 0x84,
839e1051a39Sopenharmony_ci    0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a,
840e1051a39Sopenharmony_ci    0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06,
841e1051a39Sopenharmony_ci    0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02,
842e1051a39Sopenharmony_ci    0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b,
843e1051a39Sopenharmony_ci    0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea,
844e1051a39Sopenharmony_ci    0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73,
845e1051a39Sopenharmony_ci    0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85,
846e1051a39Sopenharmony_ci    0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e,
847e1051a39Sopenharmony_ci    0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89,
848e1051a39Sopenharmony_ci    0x6f, 0xb7, 0x62, 0x0e, 0xaa, 0x18, 0xbe, 0x1b,
849e1051a39Sopenharmony_ci    0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20,
850e1051a39Sopenharmony_ci    0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd, 0x5a, 0xf4,
851e1051a39Sopenharmony_ci    0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31,
852e1051a39Sopenharmony_ci    0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f,
853e1051a39Sopenharmony_ci    0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d,
854e1051a39Sopenharmony_ci    0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef,
855e1051a39Sopenharmony_ci    0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0,
856e1051a39Sopenharmony_ci    0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61,
857e1051a39Sopenharmony_ci    0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26,
858e1051a39Sopenharmony_ci    0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d
859e1051a39Sopenharmony_ci};
860e1051a39Sopenharmony_ci
861e1051a39Sopenharmony_cistatic const unsigned char sb4[256] = {
862e1051a39Sopenharmony_ci    0x30, 0x68, 0x99, 0x1b, 0x87, 0xb9, 0x21, 0x78,
863e1051a39Sopenharmony_ci    0x50, 0x39, 0xdb, 0xe1, 0x72, 0x09, 0x62, 0x3c,
864e1051a39Sopenharmony_ci    0x3e, 0x7e, 0x5e, 0x8e, 0xf1, 0xa0, 0xcc, 0xa3,
865e1051a39Sopenharmony_ci    0x2a, 0x1d, 0xfb, 0xb6, 0xd6, 0x20, 0xc4, 0x8d,
866e1051a39Sopenharmony_ci    0x81, 0x65, 0xf5, 0x89, 0xcb, 0x9d, 0x77, 0xc6,
867e1051a39Sopenharmony_ci    0x57, 0x43, 0x56, 0x17, 0xd4, 0x40, 0x1a, 0x4d,
868e1051a39Sopenharmony_ci    0xc0, 0x63, 0x6c, 0xe3, 0xb7, 0xc8, 0x64, 0x6a,
869e1051a39Sopenharmony_ci    0x53, 0xaa, 0x38, 0x98, 0x0c, 0xf4, 0x9b, 0xed,
870e1051a39Sopenharmony_ci    0x7f, 0x22, 0x76, 0xaf, 0xdd, 0x3a, 0x0b, 0x58,
871e1051a39Sopenharmony_ci    0x67, 0x88, 0x06, 0xc3, 0x35, 0x0d, 0x01, 0x8b,
872e1051a39Sopenharmony_ci    0x8c, 0xc2, 0xe6, 0x5f, 0x02, 0x24, 0x75, 0x93,
873e1051a39Sopenharmony_ci    0x66, 0x1e, 0xe5, 0xe2, 0x54, 0xd8, 0x10, 0xce,
874e1051a39Sopenharmony_ci    0x7a, 0xe8, 0x08, 0x2c, 0x12, 0x97, 0x32, 0xab,
875e1051a39Sopenharmony_ci    0xb4, 0x27, 0x0a, 0x23, 0xdf, 0xef, 0xca, 0xd9,
876e1051a39Sopenharmony_ci    0xb8, 0xfa, 0xdc, 0x31, 0x6b, 0xd1, 0xad, 0x19,
877e1051a39Sopenharmony_ci    0x49, 0xbd, 0x51, 0x96, 0xee, 0xe4, 0xa8, 0x41,
878e1051a39Sopenharmony_ci    0xda, 0xff, 0xcd, 0x55, 0x86, 0x36, 0xbe, 0x61,
879e1051a39Sopenharmony_ci    0x52, 0xf8, 0xbb, 0x0e, 0x82, 0x48, 0x69, 0x9a,
880e1051a39Sopenharmony_ci    0xe0, 0x47, 0x9e, 0x5c, 0x04, 0x4b, 0x34, 0x15,
881e1051a39Sopenharmony_ci    0x79, 0x26, 0xa7, 0xde, 0x29, 0xae, 0x92, 0xd7,
882e1051a39Sopenharmony_ci    0x84, 0xe9, 0xd2, 0xba, 0x5d, 0xf3, 0xc5, 0xb0,
883e1051a39Sopenharmony_ci    0xbf, 0xa4, 0x3b, 0x71, 0x44, 0x46, 0x2b, 0xfc,
884e1051a39Sopenharmony_ci    0xeb, 0x6f, 0xd5, 0xf6, 0x14, 0xfe, 0x7c, 0x70,
885e1051a39Sopenharmony_ci    0x5a, 0x7d, 0xfd, 0x2f, 0x18, 0x83, 0x16, 0xa5,
886e1051a39Sopenharmony_ci    0x91, 0x1f, 0x05, 0x95, 0x74, 0xa9, 0xc1, 0x5b,
887e1051a39Sopenharmony_ci    0x4a, 0x85, 0x6d, 0x13, 0x07, 0x4f, 0x4e, 0x45,
888e1051a39Sopenharmony_ci    0xb2, 0x0f, 0xc9, 0x1c, 0xa6, 0xbc, 0xec, 0x73,
889e1051a39Sopenharmony_ci    0x90, 0x7b, 0xcf, 0x59, 0x8f, 0xa1, 0xf9, 0x2d,
890e1051a39Sopenharmony_ci    0xf2, 0xb1, 0x00, 0x94, 0x37, 0x9f, 0xd0, 0x2e,
891e1051a39Sopenharmony_ci    0x9c, 0x6e, 0x28, 0x3f, 0x80, 0xf0, 0x3d, 0xd3,
892e1051a39Sopenharmony_ci    0x25, 0x8a, 0xb5, 0xe7, 0x42, 0xb3, 0xc7, 0xea,
893e1051a39Sopenharmony_ci    0xf7, 0x4c, 0x11, 0x33, 0x03, 0xa2, 0xac, 0x60
894e1051a39Sopenharmony_ci};
895e1051a39Sopenharmony_ci
896e1051a39Sopenharmony_cistatic const ARIA_u128 c1 = {{
897e1051a39Sopenharmony_ci    0x51, 0x7c, 0xc1, 0xb7, 0x27, 0x22, 0x0a, 0x94,
898e1051a39Sopenharmony_ci    0xfe, 0x13, 0xab, 0xe8, 0xfa, 0x9a, 0x6e, 0xe0
899e1051a39Sopenharmony_ci}};
900e1051a39Sopenharmony_ci
901e1051a39Sopenharmony_cistatic const ARIA_u128 c2 = {{
902e1051a39Sopenharmony_ci    0x6d, 0xb1, 0x4a, 0xcc, 0x9e, 0x21, 0xc8, 0x20,
903e1051a39Sopenharmony_ci    0xff, 0x28, 0xb1, 0xd5, 0xef, 0x5d, 0xe2, 0xb0
904e1051a39Sopenharmony_ci}};
905e1051a39Sopenharmony_ci
906e1051a39Sopenharmony_cistatic const ARIA_u128 c3 = {{
907e1051a39Sopenharmony_ci    0xdb, 0x92, 0x37, 0x1d, 0x21, 0x26, 0xe9, 0x70,
908e1051a39Sopenharmony_ci    0x03, 0x24, 0x97, 0x75, 0x04, 0xe8, 0xc9, 0x0e
909e1051a39Sopenharmony_ci}};
910e1051a39Sopenharmony_ci
911e1051a39Sopenharmony_ci/*
912e1051a39Sopenharmony_ci * Exclusive or two 128 bit values into the result.
913e1051a39Sopenharmony_ci * It is safe for the result to be the same as the either input.
914e1051a39Sopenharmony_ci */
915e1051a39Sopenharmony_cistatic void xor128(ARIA_c128 o, const ARIA_c128 x, const ARIA_u128 *y)
916e1051a39Sopenharmony_ci{
917e1051a39Sopenharmony_ci    int i;
918e1051a39Sopenharmony_ci
919e1051a39Sopenharmony_ci    for (i = 0; i < ARIA_BLOCK_SIZE; i++)
920e1051a39Sopenharmony_ci        o[i] = x[i] ^ y->c[i];
921e1051a39Sopenharmony_ci}
922e1051a39Sopenharmony_ci
923e1051a39Sopenharmony_ci/*
924e1051a39Sopenharmony_ci * Generalised circular rotate right and exclusive or function.
925e1051a39Sopenharmony_ci * It is safe for the output to overlap either input.
926e1051a39Sopenharmony_ci */
927e1051a39Sopenharmony_cistatic ossl_inline void rotnr(unsigned int n, ARIA_u128 *o,
928e1051a39Sopenharmony_ci                              const ARIA_u128 *xor, const ARIA_u128 *z)
929e1051a39Sopenharmony_ci{
930e1051a39Sopenharmony_ci    const unsigned int bytes = n / 8, bits = n % 8;
931e1051a39Sopenharmony_ci    unsigned int i;
932e1051a39Sopenharmony_ci    ARIA_u128 t;
933e1051a39Sopenharmony_ci
934e1051a39Sopenharmony_ci    for (i = 0; i < ARIA_BLOCK_SIZE; i++)
935e1051a39Sopenharmony_ci        t.c[(i + bytes) % ARIA_BLOCK_SIZE] = z->c[i];
936e1051a39Sopenharmony_ci    for (i = 0; i < ARIA_BLOCK_SIZE; i++)
937e1051a39Sopenharmony_ci        o->c[i] = ((t.c[i] >> bits) |
938e1051a39Sopenharmony_ci                (t.c[i ? i - 1 : ARIA_BLOCK_SIZE - 1] << (8 - bits))) ^
939e1051a39Sopenharmony_ci                xor->c[i];
940e1051a39Sopenharmony_ci}
941e1051a39Sopenharmony_ci
942e1051a39Sopenharmony_ci/*
943e1051a39Sopenharmony_ci * Circular rotate 19 bits right and xor.
944e1051a39Sopenharmony_ci * It is safe for the output to overlap either input.
945e1051a39Sopenharmony_ci */
946e1051a39Sopenharmony_cistatic void rot19r(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z)
947e1051a39Sopenharmony_ci{
948e1051a39Sopenharmony_ci    rotnr(19, o, xor, z);
949e1051a39Sopenharmony_ci}
950e1051a39Sopenharmony_ci
951e1051a39Sopenharmony_ci/*
952e1051a39Sopenharmony_ci * Circular rotate 31 bits right and xor.
953e1051a39Sopenharmony_ci * It is safe for the output to overlap either input.
954e1051a39Sopenharmony_ci */
955e1051a39Sopenharmony_cistatic void rot31r(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z)
956e1051a39Sopenharmony_ci{
957e1051a39Sopenharmony_ci    rotnr(31, o, xor, z);
958e1051a39Sopenharmony_ci}
959e1051a39Sopenharmony_ci
960e1051a39Sopenharmony_ci/*
961e1051a39Sopenharmony_ci * Circular rotate 61 bits left and xor.
962e1051a39Sopenharmony_ci * It is safe for the output to overlap either input.
963e1051a39Sopenharmony_ci */
964e1051a39Sopenharmony_cistatic void rot61l(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z)
965e1051a39Sopenharmony_ci{
966e1051a39Sopenharmony_ci    rotnr(8 * ARIA_BLOCK_SIZE - 61, o, xor, z);
967e1051a39Sopenharmony_ci}
968e1051a39Sopenharmony_ci
969e1051a39Sopenharmony_ci/*
970e1051a39Sopenharmony_ci * Circular rotate 31 bits left and xor.
971e1051a39Sopenharmony_ci * It is safe for the output to overlap either input.
972e1051a39Sopenharmony_ci */
973e1051a39Sopenharmony_cistatic void rot31l(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z)
974e1051a39Sopenharmony_ci{
975e1051a39Sopenharmony_ci    rotnr(8 * ARIA_BLOCK_SIZE - 31, o, xor, z);
976e1051a39Sopenharmony_ci}
977e1051a39Sopenharmony_ci
978e1051a39Sopenharmony_ci/*
979e1051a39Sopenharmony_ci * Circular rotate 19 bits left and xor.
980e1051a39Sopenharmony_ci * It is safe for the output to overlap either input.
981e1051a39Sopenharmony_ci */
982e1051a39Sopenharmony_cistatic void rot19l(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z)
983e1051a39Sopenharmony_ci{
984e1051a39Sopenharmony_ci    rotnr(8 * ARIA_BLOCK_SIZE - 19, o, xor, z);
985e1051a39Sopenharmony_ci}
986e1051a39Sopenharmony_ci
987e1051a39Sopenharmony_ci/*
988e1051a39Sopenharmony_ci * First substitution and xor layer, used for odd steps.
989e1051a39Sopenharmony_ci * It is safe for the input and output to be the same.
990e1051a39Sopenharmony_ci */
991e1051a39Sopenharmony_cistatic void sl1(ARIA_u128 *o, const ARIA_u128 *x, const ARIA_u128 *y)
992e1051a39Sopenharmony_ci{
993e1051a39Sopenharmony_ci    unsigned int i;
994e1051a39Sopenharmony_ci    for (i = 0; i < ARIA_BLOCK_SIZE; i += 4) {
995e1051a39Sopenharmony_ci        o->c[i    ] = sb1[x->c[i    ] ^ y->c[i    ]];
996e1051a39Sopenharmony_ci        o->c[i + 1] = sb2[x->c[i + 1] ^ y->c[i + 1]];
997e1051a39Sopenharmony_ci        o->c[i + 2] = sb3[x->c[i + 2] ^ y->c[i + 2]];
998e1051a39Sopenharmony_ci        o->c[i + 3] = sb4[x->c[i + 3] ^ y->c[i + 3]];
999e1051a39Sopenharmony_ci    }
1000e1051a39Sopenharmony_ci}
1001e1051a39Sopenharmony_ci
1002e1051a39Sopenharmony_ci/*
1003e1051a39Sopenharmony_ci * Second substitution and xor layer, used for even steps.
1004e1051a39Sopenharmony_ci * It is safe for the input and output to be the same.
1005e1051a39Sopenharmony_ci */
1006e1051a39Sopenharmony_cistatic void sl2(ARIA_c128 o, const ARIA_u128 *x, const ARIA_u128 *y)
1007e1051a39Sopenharmony_ci{
1008e1051a39Sopenharmony_ci    unsigned int i;
1009e1051a39Sopenharmony_ci    for (i = 0; i < ARIA_BLOCK_SIZE; i += 4) {
1010e1051a39Sopenharmony_ci        o[i    ] = sb3[x->c[i    ] ^ y->c[i    ]];
1011e1051a39Sopenharmony_ci        o[i + 1] = sb4[x->c[i + 1] ^ y->c[i + 1]];
1012e1051a39Sopenharmony_ci        o[i + 2] = sb1[x->c[i + 2] ^ y->c[i + 2]];
1013e1051a39Sopenharmony_ci        o[i + 3] = sb2[x->c[i + 3] ^ y->c[i + 3]];
1014e1051a39Sopenharmony_ci    }
1015e1051a39Sopenharmony_ci}
1016e1051a39Sopenharmony_ci
1017e1051a39Sopenharmony_ci/*
1018e1051a39Sopenharmony_ci * Diffusion layer step
1019e1051a39Sopenharmony_ci * It is NOT safe for the input and output to overlap.
1020e1051a39Sopenharmony_ci */
1021e1051a39Sopenharmony_cistatic void a(ARIA_u128 *y, const ARIA_u128 *x)
1022e1051a39Sopenharmony_ci{
1023e1051a39Sopenharmony_ci    y->c[ 0] = x->c[ 3] ^ x->c[ 4] ^ x->c[ 6] ^ x->c[ 8] ^
1024e1051a39Sopenharmony_ci               x->c[ 9] ^ x->c[13] ^ x->c[14];
1025e1051a39Sopenharmony_ci    y->c[ 1] = x->c[ 2] ^ x->c[ 5] ^ x->c[ 7] ^ x->c[ 8] ^
1026e1051a39Sopenharmony_ci               x->c[ 9] ^ x->c[12] ^ x->c[15];
1027e1051a39Sopenharmony_ci    y->c[ 2] = x->c[ 1] ^ x->c[ 4] ^ x->c[ 6] ^ x->c[10] ^
1028e1051a39Sopenharmony_ci               x->c[11] ^ x->c[12] ^ x->c[15];
1029e1051a39Sopenharmony_ci    y->c[ 3] = x->c[ 0] ^ x->c[ 5] ^ x->c[ 7] ^ x->c[10] ^
1030e1051a39Sopenharmony_ci               x->c[11] ^ x->c[13] ^ x->c[14];
1031e1051a39Sopenharmony_ci    y->c[ 4] = x->c[ 0] ^ x->c[ 2] ^ x->c[ 5] ^ x->c[ 8] ^
1032e1051a39Sopenharmony_ci               x->c[11] ^ x->c[14] ^ x->c[15];
1033e1051a39Sopenharmony_ci    y->c[ 5] = x->c[ 1] ^ x->c[ 3] ^ x->c[ 4] ^ x->c[ 9] ^
1034e1051a39Sopenharmony_ci               x->c[10] ^ x->c[14] ^ x->c[15];
1035e1051a39Sopenharmony_ci    y->c[ 6] = x->c[ 0] ^ x->c[ 2] ^ x->c[ 7] ^ x->c[ 9] ^
1036e1051a39Sopenharmony_ci               x->c[10] ^ x->c[12] ^ x->c[13];
1037e1051a39Sopenharmony_ci    y->c[ 7] = x->c[ 1] ^ x->c[ 3] ^ x->c[ 6] ^ x->c[ 8] ^
1038e1051a39Sopenharmony_ci               x->c[11] ^ x->c[12] ^ x->c[13];
1039e1051a39Sopenharmony_ci    y->c[ 8] = x->c[ 0] ^ x->c[ 1] ^ x->c[ 4] ^ x->c[ 7] ^
1040e1051a39Sopenharmony_ci               x->c[10] ^ x->c[13] ^ x->c[15];
1041e1051a39Sopenharmony_ci    y->c[ 9] = x->c[ 0] ^ x->c[ 1] ^ x->c[ 5] ^ x->c[ 6] ^
1042e1051a39Sopenharmony_ci               x->c[11] ^ x->c[12] ^ x->c[14];
1043e1051a39Sopenharmony_ci    y->c[10] = x->c[ 2] ^ x->c[ 3] ^ x->c[ 5] ^ x->c[ 6] ^
1044e1051a39Sopenharmony_ci               x->c[ 8] ^ x->c[13] ^ x->c[15];
1045e1051a39Sopenharmony_ci    y->c[11] = x->c[ 2] ^ x->c[ 3] ^ x->c[ 4] ^ x->c[ 7] ^
1046e1051a39Sopenharmony_ci               x->c[ 9] ^ x->c[12] ^ x->c[14];
1047e1051a39Sopenharmony_ci    y->c[12] = x->c[ 1] ^ x->c[ 2] ^ x->c[ 6] ^ x->c[ 7] ^
1048e1051a39Sopenharmony_ci               x->c[ 9] ^ x->c[11] ^ x->c[12];
1049e1051a39Sopenharmony_ci    y->c[13] = x->c[ 0] ^ x->c[ 3] ^ x->c[ 6] ^ x->c[ 7] ^
1050e1051a39Sopenharmony_ci               x->c[ 8] ^ x->c[10] ^ x->c[13];
1051e1051a39Sopenharmony_ci    y->c[14] = x->c[ 0] ^ x->c[ 3] ^ x->c[ 4] ^ x->c[ 5] ^
1052e1051a39Sopenharmony_ci               x->c[ 9] ^ x->c[11] ^ x->c[14];
1053e1051a39Sopenharmony_ci    y->c[15] = x->c[ 1] ^ x->c[ 2] ^ x->c[ 4] ^ x->c[ 5] ^
1054e1051a39Sopenharmony_ci               x->c[ 8] ^ x->c[10] ^ x->c[15];
1055e1051a39Sopenharmony_ci}
1056e1051a39Sopenharmony_ci
1057e1051a39Sopenharmony_ci/*
1058e1051a39Sopenharmony_ci * Odd round function
1059e1051a39Sopenharmony_ci * Apply the first substitution layer and then a diffusion step.
1060e1051a39Sopenharmony_ci * It is safe for the input and output to overlap.
1061e1051a39Sopenharmony_ci */
1062e1051a39Sopenharmony_cistatic ossl_inline void FO(ARIA_u128 *o, const ARIA_u128 *d,
1063e1051a39Sopenharmony_ci                           const ARIA_u128 *rk)
1064e1051a39Sopenharmony_ci{
1065e1051a39Sopenharmony_ci    ARIA_u128 y;
1066e1051a39Sopenharmony_ci
1067e1051a39Sopenharmony_ci    sl1(&y, d, rk);
1068e1051a39Sopenharmony_ci    a(o, &y);
1069e1051a39Sopenharmony_ci}
1070e1051a39Sopenharmony_ci
1071e1051a39Sopenharmony_ci/*
1072e1051a39Sopenharmony_ci * Even round function
1073e1051a39Sopenharmony_ci * Apply the second substitution layer and then a diffusion step.
1074e1051a39Sopenharmony_ci * It is safe for the input and output to overlap.
1075e1051a39Sopenharmony_ci */
1076e1051a39Sopenharmony_cistatic ossl_inline void FE(ARIA_u128 *o, const ARIA_u128 *d,
1077e1051a39Sopenharmony_ci                           const ARIA_u128 *rk)
1078e1051a39Sopenharmony_ci{
1079e1051a39Sopenharmony_ci    ARIA_u128 y;
1080e1051a39Sopenharmony_ci
1081e1051a39Sopenharmony_ci    sl2(y.c, d, rk);
1082e1051a39Sopenharmony_ci    a(o, &y);
1083e1051a39Sopenharmony_ci}
1084e1051a39Sopenharmony_ci
1085e1051a39Sopenharmony_ci/*
1086e1051a39Sopenharmony_ci * Encrypt or decrypt a single block
1087e1051a39Sopenharmony_ci * in and out can overlap
1088e1051a39Sopenharmony_ci */
1089e1051a39Sopenharmony_cistatic void do_encrypt(unsigned char *o, const unsigned char *pin,
1090e1051a39Sopenharmony_ci                       unsigned int rounds, const ARIA_u128 *keys)
1091e1051a39Sopenharmony_ci{
1092e1051a39Sopenharmony_ci    ARIA_u128 p;
1093e1051a39Sopenharmony_ci    unsigned int i;
1094e1051a39Sopenharmony_ci
1095e1051a39Sopenharmony_ci    memcpy(&p, pin, sizeof(p));
1096e1051a39Sopenharmony_ci    for (i = 0; i < rounds - 2; i += 2) {
1097e1051a39Sopenharmony_ci        FO(&p, &p, &keys[i]);
1098e1051a39Sopenharmony_ci        FE(&p, &p, &keys[i + 1]);
1099e1051a39Sopenharmony_ci    }
1100e1051a39Sopenharmony_ci    FO(&p, &p, &keys[rounds - 2]);
1101e1051a39Sopenharmony_ci    sl2(o, &p, &keys[rounds - 1]);
1102e1051a39Sopenharmony_ci    xor128(o, o, &keys[rounds]);
1103e1051a39Sopenharmony_ci}
1104e1051a39Sopenharmony_ci
1105e1051a39Sopenharmony_ci/*
1106e1051a39Sopenharmony_ci * Encrypt a single block
1107e1051a39Sopenharmony_ci * in and out can overlap
1108e1051a39Sopenharmony_ci */
1109e1051a39Sopenharmony_civoid ossl_aria_encrypt(const unsigned char *in, unsigned char *out,
1110e1051a39Sopenharmony_ci                       const ARIA_KEY *key)
1111e1051a39Sopenharmony_ci{
1112e1051a39Sopenharmony_ci    assert(in != NULL && out != NULL && key != NULL);
1113e1051a39Sopenharmony_ci    do_encrypt(out, in, key->rounds, key->rd_key);
1114e1051a39Sopenharmony_ci}
1115e1051a39Sopenharmony_ci
1116e1051a39Sopenharmony_ci
1117e1051a39Sopenharmony_ci/*
1118e1051a39Sopenharmony_ci * Expand the cipher key into the encryption key schedule.
1119e1051a39Sopenharmony_ci * We short circuit execution of the last two
1120e1051a39Sopenharmony_ci * or four rotations based on the key size.
1121e1051a39Sopenharmony_ci */
1122e1051a39Sopenharmony_ciint ossl_aria_set_encrypt_key(const unsigned char *userKey, const int bits,
1123e1051a39Sopenharmony_ci                              ARIA_KEY *key)
1124e1051a39Sopenharmony_ci{
1125e1051a39Sopenharmony_ci    const ARIA_u128 *ck1, *ck2, *ck3;
1126e1051a39Sopenharmony_ci    ARIA_u128 kr, w0, w1, w2, w3;
1127e1051a39Sopenharmony_ci
1128e1051a39Sopenharmony_ci    if (!userKey || !key)
1129e1051a39Sopenharmony_ci        return -1;
1130e1051a39Sopenharmony_ci    memcpy(w0.c, userKey, sizeof(w0));
1131e1051a39Sopenharmony_ci    switch (bits) {
1132e1051a39Sopenharmony_ci    default:
1133e1051a39Sopenharmony_ci        return -2;
1134e1051a39Sopenharmony_ci    case 128:
1135e1051a39Sopenharmony_ci        key->rounds = 12;
1136e1051a39Sopenharmony_ci        ck1 = &c1;
1137e1051a39Sopenharmony_ci        ck2 = &c2;
1138e1051a39Sopenharmony_ci        ck3 = &c3;
1139e1051a39Sopenharmony_ci        memset(kr.c, 0, sizeof(kr));
1140e1051a39Sopenharmony_ci        break;
1141e1051a39Sopenharmony_ci
1142e1051a39Sopenharmony_ci    case 192:
1143e1051a39Sopenharmony_ci        key->rounds = 14;
1144e1051a39Sopenharmony_ci        ck1 = &c2;
1145e1051a39Sopenharmony_ci        ck2 = &c3;
1146e1051a39Sopenharmony_ci        ck3 = &c1;
1147e1051a39Sopenharmony_ci        memcpy(kr.c, userKey + ARIA_BLOCK_SIZE, sizeof(kr) / 2);
1148e1051a39Sopenharmony_ci        memset(kr.c + ARIA_BLOCK_SIZE / 2, 0, sizeof(kr) / 2);
1149e1051a39Sopenharmony_ci        break;
1150e1051a39Sopenharmony_ci
1151e1051a39Sopenharmony_ci    case 256:
1152e1051a39Sopenharmony_ci        key->rounds = 16;
1153e1051a39Sopenharmony_ci        ck1 = &c3;
1154e1051a39Sopenharmony_ci        ck2 = &c1;
1155e1051a39Sopenharmony_ci        ck3 = &c2;
1156e1051a39Sopenharmony_ci        memcpy(kr.c, userKey + ARIA_BLOCK_SIZE, sizeof(kr));
1157e1051a39Sopenharmony_ci        break;
1158e1051a39Sopenharmony_ci    }
1159e1051a39Sopenharmony_ci
1160e1051a39Sopenharmony_ci    FO(&w3, &w0, ck1);    xor128(w1.c, w3.c, &kr);
1161e1051a39Sopenharmony_ci    FE(&w3, &w1, ck2);    xor128(w2.c, w3.c, &w0);
1162e1051a39Sopenharmony_ci    FO(&kr, &w2, ck3);    xor128(w3.c, kr.c, &w1);
1163e1051a39Sopenharmony_ci
1164e1051a39Sopenharmony_ci    rot19r(&key->rd_key[ 0], &w0, &w1);
1165e1051a39Sopenharmony_ci    rot19r(&key->rd_key[ 1], &w1, &w2);
1166e1051a39Sopenharmony_ci    rot19r(&key->rd_key[ 2], &w2, &w3);
1167e1051a39Sopenharmony_ci    rot19r(&key->rd_key[ 3], &w3, &w0);
1168e1051a39Sopenharmony_ci
1169e1051a39Sopenharmony_ci    rot31r(&key->rd_key[ 4], &w0, &w1);
1170e1051a39Sopenharmony_ci    rot31r(&key->rd_key[ 5], &w1, &w2);
1171e1051a39Sopenharmony_ci    rot31r(&key->rd_key[ 6], &w2, &w3);
1172e1051a39Sopenharmony_ci    rot31r(&key->rd_key[ 7], &w3, &w0);
1173e1051a39Sopenharmony_ci
1174e1051a39Sopenharmony_ci    rot61l(&key->rd_key[ 8], &w0, &w1);
1175e1051a39Sopenharmony_ci    rot61l(&key->rd_key[ 9], &w1, &w2);
1176e1051a39Sopenharmony_ci    rot61l(&key->rd_key[10], &w2, &w3);
1177e1051a39Sopenharmony_ci    rot61l(&key->rd_key[11], &w3, &w0);
1178e1051a39Sopenharmony_ci
1179e1051a39Sopenharmony_ci    rot31l(&key->rd_key[12], &w0, &w1);
1180e1051a39Sopenharmony_ci    if (key->rounds > 12) {
1181e1051a39Sopenharmony_ci        rot31l(&key->rd_key[13], &w1, &w2);
1182e1051a39Sopenharmony_ci        rot31l(&key->rd_key[14], &w2, &w3);
1183e1051a39Sopenharmony_ci
1184e1051a39Sopenharmony_ci        if (key->rounds > 14) {
1185e1051a39Sopenharmony_ci            rot31l(&key->rd_key[15], &w3, &w0);
1186e1051a39Sopenharmony_ci            rot19l(&key->rd_key[16], &w0, &w1);
1187e1051a39Sopenharmony_ci        }
1188e1051a39Sopenharmony_ci    }
1189e1051a39Sopenharmony_ci    return 0;
1190e1051a39Sopenharmony_ci}
1191e1051a39Sopenharmony_ci
1192e1051a39Sopenharmony_ci/*
1193e1051a39Sopenharmony_ci * Expand the cipher key into the decryption key schedule.
1194e1051a39Sopenharmony_ci */
1195e1051a39Sopenharmony_ciint ossl_aria_set_decrypt_key(const unsigned char *userKey, const int bits,
1196e1051a39Sopenharmony_ci                              ARIA_KEY *key)
1197e1051a39Sopenharmony_ci{
1198e1051a39Sopenharmony_ci    ARIA_KEY ek;
1199e1051a39Sopenharmony_ci    const int r = ossl_aria_set_encrypt_key(userKey, bits, &ek);
1200e1051a39Sopenharmony_ci    unsigned int i, rounds = ek.rounds;
1201e1051a39Sopenharmony_ci
1202e1051a39Sopenharmony_ci    if (r == 0) {
1203e1051a39Sopenharmony_ci        key->rounds = rounds;
1204e1051a39Sopenharmony_ci        memcpy(&key->rd_key[0], &ek.rd_key[rounds], sizeof(key->rd_key[0]));
1205e1051a39Sopenharmony_ci        for (i = 1; i < rounds; i++)
1206e1051a39Sopenharmony_ci            a(&key->rd_key[i], &ek.rd_key[rounds - i]);
1207e1051a39Sopenharmony_ci        memcpy(&key->rd_key[rounds], &ek.rd_key[0], sizeof(key->rd_key[rounds]));
1208e1051a39Sopenharmony_ci    }
1209e1051a39Sopenharmony_ci    return r;
1210e1051a39Sopenharmony_ci}
1211e1051a39Sopenharmony_ci
1212e1051a39Sopenharmony_ci#endif
1213