162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * Cryptographic API. 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * ARIA Cipher Algorithm. 662306a36Sopenharmony_ci * 762306a36Sopenharmony_ci * Documentation of ARIA can be found in RFC 5794. 862306a36Sopenharmony_ci * Copyright (c) 2022 Taehee Yoo <ap420073@gmail.com> 962306a36Sopenharmony_ci * Copyright (c) 2022 Taehee Yoo <ap420073@gmail.com> 1062306a36Sopenharmony_ci * 1162306a36Sopenharmony_ci * Information for ARIA 1262306a36Sopenharmony_ci * http://210.104.33.10/ARIA/index-e.html (English) 1362306a36Sopenharmony_ci * http://seed.kisa.or.kr/ (Korean) 1462306a36Sopenharmony_ci * 1562306a36Sopenharmony_ci * Public domain version is distributed above. 1662306a36Sopenharmony_ci */ 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_ci#ifndef _CRYPTO_ARIA_H 1962306a36Sopenharmony_ci#define _CRYPTO_ARIA_H 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_ci#include <crypto/algapi.h> 2262306a36Sopenharmony_ci#include <linux/module.h> 2362306a36Sopenharmony_ci#include <linux/init.h> 2462306a36Sopenharmony_ci#include <linux/types.h> 2562306a36Sopenharmony_ci#include <linux/errno.h> 2662306a36Sopenharmony_ci#include <asm/byteorder.h> 2762306a36Sopenharmony_ci 2862306a36Sopenharmony_ci#define ARIA_MIN_KEY_SIZE 16 2962306a36Sopenharmony_ci#define ARIA_MAX_KEY_SIZE 32 3062306a36Sopenharmony_ci#define ARIA_BLOCK_SIZE 16 3162306a36Sopenharmony_ci#define ARIA_MAX_RD_KEYS 17 3262306a36Sopenharmony_ci#define ARIA_RD_KEY_WORDS (ARIA_BLOCK_SIZE / sizeof(u32)) 3362306a36Sopenharmony_ci 3462306a36Sopenharmony_cistruct aria_ctx { 3562306a36Sopenharmony_ci u32 enc_key[ARIA_MAX_RD_KEYS][ARIA_RD_KEY_WORDS]; 3662306a36Sopenharmony_ci u32 dec_key[ARIA_MAX_RD_KEYS][ARIA_RD_KEY_WORDS]; 3762306a36Sopenharmony_ci int rounds; 3862306a36Sopenharmony_ci int key_length; 3962306a36Sopenharmony_ci}; 4062306a36Sopenharmony_ci 4162306a36Sopenharmony_cistatic const u32 s1[256] = { 4262306a36Sopenharmony_ci 0x00636363, 0x007c7c7c, 0x00777777, 0x007b7b7b, 4362306a36Sopenharmony_ci 0x00f2f2f2, 0x006b6b6b, 0x006f6f6f, 0x00c5c5c5, 4462306a36Sopenharmony_ci 0x00303030, 0x00010101, 0x00676767, 0x002b2b2b, 4562306a36Sopenharmony_ci 0x00fefefe, 0x00d7d7d7, 0x00ababab, 0x00767676, 4662306a36Sopenharmony_ci 0x00cacaca, 0x00828282, 0x00c9c9c9, 0x007d7d7d, 4762306a36Sopenharmony_ci 0x00fafafa, 0x00595959, 0x00474747, 0x00f0f0f0, 4862306a36Sopenharmony_ci 0x00adadad, 0x00d4d4d4, 0x00a2a2a2, 0x00afafaf, 4962306a36Sopenharmony_ci 0x009c9c9c, 0x00a4a4a4, 0x00727272, 0x00c0c0c0, 5062306a36Sopenharmony_ci 0x00b7b7b7, 0x00fdfdfd, 0x00939393, 0x00262626, 5162306a36Sopenharmony_ci 0x00363636, 0x003f3f3f, 0x00f7f7f7, 0x00cccccc, 5262306a36Sopenharmony_ci 0x00343434, 0x00a5a5a5, 0x00e5e5e5, 0x00f1f1f1, 5362306a36Sopenharmony_ci 0x00717171, 0x00d8d8d8, 0x00313131, 0x00151515, 5462306a36Sopenharmony_ci 0x00040404, 0x00c7c7c7, 0x00232323, 0x00c3c3c3, 5562306a36Sopenharmony_ci 0x00181818, 0x00969696, 0x00050505, 0x009a9a9a, 5662306a36Sopenharmony_ci 0x00070707, 0x00121212, 0x00808080, 0x00e2e2e2, 5762306a36Sopenharmony_ci 0x00ebebeb, 0x00272727, 0x00b2b2b2, 0x00757575, 5862306a36Sopenharmony_ci 0x00090909, 0x00838383, 0x002c2c2c, 0x001a1a1a, 5962306a36Sopenharmony_ci 0x001b1b1b, 0x006e6e6e, 0x005a5a5a, 0x00a0a0a0, 6062306a36Sopenharmony_ci 0x00525252, 0x003b3b3b, 0x00d6d6d6, 0x00b3b3b3, 6162306a36Sopenharmony_ci 0x00292929, 0x00e3e3e3, 0x002f2f2f, 0x00848484, 6262306a36Sopenharmony_ci 0x00535353, 0x00d1d1d1, 0x00000000, 0x00ededed, 6362306a36Sopenharmony_ci 0x00202020, 0x00fcfcfc, 0x00b1b1b1, 0x005b5b5b, 6462306a36Sopenharmony_ci 0x006a6a6a, 0x00cbcbcb, 0x00bebebe, 0x00393939, 6562306a36Sopenharmony_ci 0x004a4a4a, 0x004c4c4c, 0x00585858, 0x00cfcfcf, 6662306a36Sopenharmony_ci 0x00d0d0d0, 0x00efefef, 0x00aaaaaa, 0x00fbfbfb, 6762306a36Sopenharmony_ci 0x00434343, 0x004d4d4d, 0x00333333, 0x00858585, 6862306a36Sopenharmony_ci 0x00454545, 0x00f9f9f9, 0x00020202, 0x007f7f7f, 6962306a36Sopenharmony_ci 0x00505050, 0x003c3c3c, 0x009f9f9f, 0x00a8a8a8, 7062306a36Sopenharmony_ci 0x00515151, 0x00a3a3a3, 0x00404040, 0x008f8f8f, 7162306a36Sopenharmony_ci 0x00929292, 0x009d9d9d, 0x00383838, 0x00f5f5f5, 7262306a36Sopenharmony_ci 0x00bcbcbc, 0x00b6b6b6, 0x00dadada, 0x00212121, 7362306a36Sopenharmony_ci 0x00101010, 0x00ffffff, 0x00f3f3f3, 0x00d2d2d2, 7462306a36Sopenharmony_ci 0x00cdcdcd, 0x000c0c0c, 0x00131313, 0x00ececec, 7562306a36Sopenharmony_ci 0x005f5f5f, 0x00979797, 0x00444444, 0x00171717, 7662306a36Sopenharmony_ci 0x00c4c4c4, 0x00a7a7a7, 0x007e7e7e, 0x003d3d3d, 7762306a36Sopenharmony_ci 0x00646464, 0x005d5d5d, 0x00191919, 0x00737373, 7862306a36Sopenharmony_ci 0x00606060, 0x00818181, 0x004f4f4f, 0x00dcdcdc, 7962306a36Sopenharmony_ci 0x00222222, 0x002a2a2a, 0x00909090, 0x00888888, 8062306a36Sopenharmony_ci 0x00464646, 0x00eeeeee, 0x00b8b8b8, 0x00141414, 8162306a36Sopenharmony_ci 0x00dedede, 0x005e5e5e, 0x000b0b0b, 0x00dbdbdb, 8262306a36Sopenharmony_ci 0x00e0e0e0, 0x00323232, 0x003a3a3a, 0x000a0a0a, 8362306a36Sopenharmony_ci 0x00494949, 0x00060606, 0x00242424, 0x005c5c5c, 8462306a36Sopenharmony_ci 0x00c2c2c2, 0x00d3d3d3, 0x00acacac, 0x00626262, 8562306a36Sopenharmony_ci 0x00919191, 0x00959595, 0x00e4e4e4, 0x00797979, 8662306a36Sopenharmony_ci 0x00e7e7e7, 0x00c8c8c8, 0x00373737, 0x006d6d6d, 8762306a36Sopenharmony_ci 0x008d8d8d, 0x00d5d5d5, 0x004e4e4e, 0x00a9a9a9, 8862306a36Sopenharmony_ci 0x006c6c6c, 0x00565656, 0x00f4f4f4, 0x00eaeaea, 8962306a36Sopenharmony_ci 0x00656565, 0x007a7a7a, 0x00aeaeae, 0x00080808, 9062306a36Sopenharmony_ci 0x00bababa, 0x00787878, 0x00252525, 0x002e2e2e, 9162306a36Sopenharmony_ci 0x001c1c1c, 0x00a6a6a6, 0x00b4b4b4, 0x00c6c6c6, 9262306a36Sopenharmony_ci 0x00e8e8e8, 0x00dddddd, 0x00747474, 0x001f1f1f, 9362306a36Sopenharmony_ci 0x004b4b4b, 0x00bdbdbd, 0x008b8b8b, 0x008a8a8a, 9462306a36Sopenharmony_ci 0x00707070, 0x003e3e3e, 0x00b5b5b5, 0x00666666, 9562306a36Sopenharmony_ci 0x00484848, 0x00030303, 0x00f6f6f6, 0x000e0e0e, 9662306a36Sopenharmony_ci 0x00616161, 0x00353535, 0x00575757, 0x00b9b9b9, 9762306a36Sopenharmony_ci 0x00868686, 0x00c1c1c1, 0x001d1d1d, 0x009e9e9e, 9862306a36Sopenharmony_ci 0x00e1e1e1, 0x00f8f8f8, 0x00989898, 0x00111111, 9962306a36Sopenharmony_ci 0x00696969, 0x00d9d9d9, 0x008e8e8e, 0x00949494, 10062306a36Sopenharmony_ci 0x009b9b9b, 0x001e1e1e, 0x00878787, 0x00e9e9e9, 10162306a36Sopenharmony_ci 0x00cecece, 0x00555555, 0x00282828, 0x00dfdfdf, 10262306a36Sopenharmony_ci 0x008c8c8c, 0x00a1a1a1, 0x00898989, 0x000d0d0d, 10362306a36Sopenharmony_ci 0x00bfbfbf, 0x00e6e6e6, 0x00424242, 0x00686868, 10462306a36Sopenharmony_ci 0x00414141, 0x00999999, 0x002d2d2d, 0x000f0f0f, 10562306a36Sopenharmony_ci 0x00b0b0b0, 0x00545454, 0x00bbbbbb, 0x00161616 10662306a36Sopenharmony_ci}; 10762306a36Sopenharmony_ci 10862306a36Sopenharmony_cistatic const u32 s2[256] = { 10962306a36Sopenharmony_ci 0xe200e2e2, 0x4e004e4e, 0x54005454, 0xfc00fcfc, 11062306a36Sopenharmony_ci 0x94009494, 0xc200c2c2, 0x4a004a4a, 0xcc00cccc, 11162306a36Sopenharmony_ci 0x62006262, 0x0d000d0d, 0x6a006a6a, 0x46004646, 11262306a36Sopenharmony_ci 0x3c003c3c, 0x4d004d4d, 0x8b008b8b, 0xd100d1d1, 11362306a36Sopenharmony_ci 0x5e005e5e, 0xfa00fafa, 0x64006464, 0xcb00cbcb, 11462306a36Sopenharmony_ci 0xb400b4b4, 0x97009797, 0xbe00bebe, 0x2b002b2b, 11562306a36Sopenharmony_ci 0xbc00bcbc, 0x77007777, 0x2e002e2e, 0x03000303, 11662306a36Sopenharmony_ci 0xd300d3d3, 0x19001919, 0x59005959, 0xc100c1c1, 11762306a36Sopenharmony_ci 0x1d001d1d, 0x06000606, 0x41004141, 0x6b006b6b, 11862306a36Sopenharmony_ci 0x55005555, 0xf000f0f0, 0x99009999, 0x69006969, 11962306a36Sopenharmony_ci 0xea00eaea, 0x9c009c9c, 0x18001818, 0xae00aeae, 12062306a36Sopenharmony_ci 0x63006363, 0xdf00dfdf, 0xe700e7e7, 0xbb00bbbb, 12162306a36Sopenharmony_ci 0x00000000, 0x73007373, 0x66006666, 0xfb00fbfb, 12262306a36Sopenharmony_ci 0x96009696, 0x4c004c4c, 0x85008585, 0xe400e4e4, 12362306a36Sopenharmony_ci 0x3a003a3a, 0x09000909, 0x45004545, 0xaa00aaaa, 12462306a36Sopenharmony_ci 0x0f000f0f, 0xee00eeee, 0x10001010, 0xeb00ebeb, 12562306a36Sopenharmony_ci 0x2d002d2d, 0x7f007f7f, 0xf400f4f4, 0x29002929, 12662306a36Sopenharmony_ci 0xac00acac, 0xcf00cfcf, 0xad00adad, 0x91009191, 12762306a36Sopenharmony_ci 0x8d008d8d, 0x78007878, 0xc800c8c8, 0x95009595, 12862306a36Sopenharmony_ci 0xf900f9f9, 0x2f002f2f, 0xce00cece, 0xcd00cdcd, 12962306a36Sopenharmony_ci 0x08000808, 0x7a007a7a, 0x88008888, 0x38003838, 13062306a36Sopenharmony_ci 0x5c005c5c, 0x83008383, 0x2a002a2a, 0x28002828, 13162306a36Sopenharmony_ci 0x47004747, 0xdb00dbdb, 0xb800b8b8, 0xc700c7c7, 13262306a36Sopenharmony_ci 0x93009393, 0xa400a4a4, 0x12001212, 0x53005353, 13362306a36Sopenharmony_ci 0xff00ffff, 0x87008787, 0x0e000e0e, 0x31003131, 13462306a36Sopenharmony_ci 0x36003636, 0x21002121, 0x58005858, 0x48004848, 13562306a36Sopenharmony_ci 0x01000101, 0x8e008e8e, 0x37003737, 0x74007474, 13662306a36Sopenharmony_ci 0x32003232, 0xca00caca, 0xe900e9e9, 0xb100b1b1, 13762306a36Sopenharmony_ci 0xb700b7b7, 0xab00abab, 0x0c000c0c, 0xd700d7d7, 13862306a36Sopenharmony_ci 0xc400c4c4, 0x56005656, 0x42004242, 0x26002626, 13962306a36Sopenharmony_ci 0x07000707, 0x98009898, 0x60006060, 0xd900d9d9, 14062306a36Sopenharmony_ci 0xb600b6b6, 0xb900b9b9, 0x11001111, 0x40004040, 14162306a36Sopenharmony_ci 0xec00ecec, 0x20002020, 0x8c008c8c, 0xbd00bdbd, 14262306a36Sopenharmony_ci 0xa000a0a0, 0xc900c9c9, 0x84008484, 0x04000404, 14362306a36Sopenharmony_ci 0x49004949, 0x23002323, 0xf100f1f1, 0x4f004f4f, 14462306a36Sopenharmony_ci 0x50005050, 0x1f001f1f, 0x13001313, 0xdc00dcdc, 14562306a36Sopenharmony_ci 0xd800d8d8, 0xc000c0c0, 0x9e009e9e, 0x57005757, 14662306a36Sopenharmony_ci 0xe300e3e3, 0xc300c3c3, 0x7b007b7b, 0x65006565, 14762306a36Sopenharmony_ci 0x3b003b3b, 0x02000202, 0x8f008f8f, 0x3e003e3e, 14862306a36Sopenharmony_ci 0xe800e8e8, 0x25002525, 0x92009292, 0xe500e5e5, 14962306a36Sopenharmony_ci 0x15001515, 0xdd00dddd, 0xfd00fdfd, 0x17001717, 15062306a36Sopenharmony_ci 0xa900a9a9, 0xbf00bfbf, 0xd400d4d4, 0x9a009a9a, 15162306a36Sopenharmony_ci 0x7e007e7e, 0xc500c5c5, 0x39003939, 0x67006767, 15262306a36Sopenharmony_ci 0xfe00fefe, 0x76007676, 0x9d009d9d, 0x43004343, 15362306a36Sopenharmony_ci 0xa700a7a7, 0xe100e1e1, 0xd000d0d0, 0xf500f5f5, 15462306a36Sopenharmony_ci 0x68006868, 0xf200f2f2, 0x1b001b1b, 0x34003434, 15562306a36Sopenharmony_ci 0x70007070, 0x05000505, 0xa300a3a3, 0x8a008a8a, 15662306a36Sopenharmony_ci 0xd500d5d5, 0x79007979, 0x86008686, 0xa800a8a8, 15762306a36Sopenharmony_ci 0x30003030, 0xc600c6c6, 0x51005151, 0x4b004b4b, 15862306a36Sopenharmony_ci 0x1e001e1e, 0xa600a6a6, 0x27002727, 0xf600f6f6, 15962306a36Sopenharmony_ci 0x35003535, 0xd200d2d2, 0x6e006e6e, 0x24002424, 16062306a36Sopenharmony_ci 0x16001616, 0x82008282, 0x5f005f5f, 0xda00dada, 16162306a36Sopenharmony_ci 0xe600e6e6, 0x75007575, 0xa200a2a2, 0xef00efef, 16262306a36Sopenharmony_ci 0x2c002c2c, 0xb200b2b2, 0x1c001c1c, 0x9f009f9f, 16362306a36Sopenharmony_ci 0x5d005d5d, 0x6f006f6f, 0x80008080, 0x0a000a0a, 16462306a36Sopenharmony_ci 0x72007272, 0x44004444, 0x9b009b9b, 0x6c006c6c, 16562306a36Sopenharmony_ci 0x90009090, 0x0b000b0b, 0x5b005b5b, 0x33003333, 16662306a36Sopenharmony_ci 0x7d007d7d, 0x5a005a5a, 0x52005252, 0xf300f3f3, 16762306a36Sopenharmony_ci 0x61006161, 0xa100a1a1, 0xf700f7f7, 0xb000b0b0, 16862306a36Sopenharmony_ci 0xd600d6d6, 0x3f003f3f, 0x7c007c7c, 0x6d006d6d, 16962306a36Sopenharmony_ci 0xed00eded, 0x14001414, 0xe000e0e0, 0xa500a5a5, 17062306a36Sopenharmony_ci 0x3d003d3d, 0x22002222, 0xb300b3b3, 0xf800f8f8, 17162306a36Sopenharmony_ci 0x89008989, 0xde00dede, 0x71007171, 0x1a001a1a, 17262306a36Sopenharmony_ci 0xaf00afaf, 0xba00baba, 0xb500b5b5, 0x81008181 17362306a36Sopenharmony_ci}; 17462306a36Sopenharmony_ci 17562306a36Sopenharmony_cistatic const u32 x1[256] = { 17662306a36Sopenharmony_ci 0x52520052, 0x09090009, 0x6a6a006a, 0xd5d500d5, 17762306a36Sopenharmony_ci 0x30300030, 0x36360036, 0xa5a500a5, 0x38380038, 17862306a36Sopenharmony_ci 0xbfbf00bf, 0x40400040, 0xa3a300a3, 0x9e9e009e, 17962306a36Sopenharmony_ci 0x81810081, 0xf3f300f3, 0xd7d700d7, 0xfbfb00fb, 18062306a36Sopenharmony_ci 0x7c7c007c, 0xe3e300e3, 0x39390039, 0x82820082, 18162306a36Sopenharmony_ci 0x9b9b009b, 0x2f2f002f, 0xffff00ff, 0x87870087, 18262306a36Sopenharmony_ci 0x34340034, 0x8e8e008e, 0x43430043, 0x44440044, 18362306a36Sopenharmony_ci 0xc4c400c4, 0xdede00de, 0xe9e900e9, 0xcbcb00cb, 18462306a36Sopenharmony_ci 0x54540054, 0x7b7b007b, 0x94940094, 0x32320032, 18562306a36Sopenharmony_ci 0xa6a600a6, 0xc2c200c2, 0x23230023, 0x3d3d003d, 18662306a36Sopenharmony_ci 0xeeee00ee, 0x4c4c004c, 0x95950095, 0x0b0b000b, 18762306a36Sopenharmony_ci 0x42420042, 0xfafa00fa, 0xc3c300c3, 0x4e4e004e, 18862306a36Sopenharmony_ci 0x08080008, 0x2e2e002e, 0xa1a100a1, 0x66660066, 18962306a36Sopenharmony_ci 0x28280028, 0xd9d900d9, 0x24240024, 0xb2b200b2, 19062306a36Sopenharmony_ci 0x76760076, 0x5b5b005b, 0xa2a200a2, 0x49490049, 19162306a36Sopenharmony_ci 0x6d6d006d, 0x8b8b008b, 0xd1d100d1, 0x25250025, 19262306a36Sopenharmony_ci 0x72720072, 0xf8f800f8, 0xf6f600f6, 0x64640064, 19362306a36Sopenharmony_ci 0x86860086, 0x68680068, 0x98980098, 0x16160016, 19462306a36Sopenharmony_ci 0xd4d400d4, 0xa4a400a4, 0x5c5c005c, 0xcccc00cc, 19562306a36Sopenharmony_ci 0x5d5d005d, 0x65650065, 0xb6b600b6, 0x92920092, 19662306a36Sopenharmony_ci 0x6c6c006c, 0x70700070, 0x48480048, 0x50500050, 19762306a36Sopenharmony_ci 0xfdfd00fd, 0xeded00ed, 0xb9b900b9, 0xdada00da, 19862306a36Sopenharmony_ci 0x5e5e005e, 0x15150015, 0x46460046, 0x57570057, 19962306a36Sopenharmony_ci 0xa7a700a7, 0x8d8d008d, 0x9d9d009d, 0x84840084, 20062306a36Sopenharmony_ci 0x90900090, 0xd8d800d8, 0xabab00ab, 0x00000000, 20162306a36Sopenharmony_ci 0x8c8c008c, 0xbcbc00bc, 0xd3d300d3, 0x0a0a000a, 20262306a36Sopenharmony_ci 0xf7f700f7, 0xe4e400e4, 0x58580058, 0x05050005, 20362306a36Sopenharmony_ci 0xb8b800b8, 0xb3b300b3, 0x45450045, 0x06060006, 20462306a36Sopenharmony_ci 0xd0d000d0, 0x2c2c002c, 0x1e1e001e, 0x8f8f008f, 20562306a36Sopenharmony_ci 0xcaca00ca, 0x3f3f003f, 0x0f0f000f, 0x02020002, 20662306a36Sopenharmony_ci 0xc1c100c1, 0xafaf00af, 0xbdbd00bd, 0x03030003, 20762306a36Sopenharmony_ci 0x01010001, 0x13130013, 0x8a8a008a, 0x6b6b006b, 20862306a36Sopenharmony_ci 0x3a3a003a, 0x91910091, 0x11110011, 0x41410041, 20962306a36Sopenharmony_ci 0x4f4f004f, 0x67670067, 0xdcdc00dc, 0xeaea00ea, 21062306a36Sopenharmony_ci 0x97970097, 0xf2f200f2, 0xcfcf00cf, 0xcece00ce, 21162306a36Sopenharmony_ci 0xf0f000f0, 0xb4b400b4, 0xe6e600e6, 0x73730073, 21262306a36Sopenharmony_ci 0x96960096, 0xacac00ac, 0x74740074, 0x22220022, 21362306a36Sopenharmony_ci 0xe7e700e7, 0xadad00ad, 0x35350035, 0x85850085, 21462306a36Sopenharmony_ci 0xe2e200e2, 0xf9f900f9, 0x37370037, 0xe8e800e8, 21562306a36Sopenharmony_ci 0x1c1c001c, 0x75750075, 0xdfdf00df, 0x6e6e006e, 21662306a36Sopenharmony_ci 0x47470047, 0xf1f100f1, 0x1a1a001a, 0x71710071, 21762306a36Sopenharmony_ci 0x1d1d001d, 0x29290029, 0xc5c500c5, 0x89890089, 21862306a36Sopenharmony_ci 0x6f6f006f, 0xb7b700b7, 0x62620062, 0x0e0e000e, 21962306a36Sopenharmony_ci 0xaaaa00aa, 0x18180018, 0xbebe00be, 0x1b1b001b, 22062306a36Sopenharmony_ci 0xfcfc00fc, 0x56560056, 0x3e3e003e, 0x4b4b004b, 22162306a36Sopenharmony_ci 0xc6c600c6, 0xd2d200d2, 0x79790079, 0x20200020, 22262306a36Sopenharmony_ci 0x9a9a009a, 0xdbdb00db, 0xc0c000c0, 0xfefe00fe, 22362306a36Sopenharmony_ci 0x78780078, 0xcdcd00cd, 0x5a5a005a, 0xf4f400f4, 22462306a36Sopenharmony_ci 0x1f1f001f, 0xdddd00dd, 0xa8a800a8, 0x33330033, 22562306a36Sopenharmony_ci 0x88880088, 0x07070007, 0xc7c700c7, 0x31310031, 22662306a36Sopenharmony_ci 0xb1b100b1, 0x12120012, 0x10100010, 0x59590059, 22762306a36Sopenharmony_ci 0x27270027, 0x80800080, 0xecec00ec, 0x5f5f005f, 22862306a36Sopenharmony_ci 0x60600060, 0x51510051, 0x7f7f007f, 0xa9a900a9, 22962306a36Sopenharmony_ci 0x19190019, 0xb5b500b5, 0x4a4a004a, 0x0d0d000d, 23062306a36Sopenharmony_ci 0x2d2d002d, 0xe5e500e5, 0x7a7a007a, 0x9f9f009f, 23162306a36Sopenharmony_ci 0x93930093, 0xc9c900c9, 0x9c9c009c, 0xefef00ef, 23262306a36Sopenharmony_ci 0xa0a000a0, 0xe0e000e0, 0x3b3b003b, 0x4d4d004d, 23362306a36Sopenharmony_ci 0xaeae00ae, 0x2a2a002a, 0xf5f500f5, 0xb0b000b0, 23462306a36Sopenharmony_ci 0xc8c800c8, 0xebeb00eb, 0xbbbb00bb, 0x3c3c003c, 23562306a36Sopenharmony_ci 0x83830083, 0x53530053, 0x99990099, 0x61610061, 23662306a36Sopenharmony_ci 0x17170017, 0x2b2b002b, 0x04040004, 0x7e7e007e, 23762306a36Sopenharmony_ci 0xbaba00ba, 0x77770077, 0xd6d600d6, 0x26260026, 23862306a36Sopenharmony_ci 0xe1e100e1, 0x69690069, 0x14140014, 0x63630063, 23962306a36Sopenharmony_ci 0x55550055, 0x21210021, 0x0c0c000c, 0x7d7d007d 24062306a36Sopenharmony_ci}; 24162306a36Sopenharmony_ci 24262306a36Sopenharmony_cistatic const u32 x2[256] = { 24362306a36Sopenharmony_ci 0x30303000, 0x68686800, 0x99999900, 0x1b1b1b00, 24462306a36Sopenharmony_ci 0x87878700, 0xb9b9b900, 0x21212100, 0x78787800, 24562306a36Sopenharmony_ci 0x50505000, 0x39393900, 0xdbdbdb00, 0xe1e1e100, 24662306a36Sopenharmony_ci 0x72727200, 0x09090900, 0x62626200, 0x3c3c3c00, 24762306a36Sopenharmony_ci 0x3e3e3e00, 0x7e7e7e00, 0x5e5e5e00, 0x8e8e8e00, 24862306a36Sopenharmony_ci 0xf1f1f100, 0xa0a0a000, 0xcccccc00, 0xa3a3a300, 24962306a36Sopenharmony_ci 0x2a2a2a00, 0x1d1d1d00, 0xfbfbfb00, 0xb6b6b600, 25062306a36Sopenharmony_ci 0xd6d6d600, 0x20202000, 0xc4c4c400, 0x8d8d8d00, 25162306a36Sopenharmony_ci 0x81818100, 0x65656500, 0xf5f5f500, 0x89898900, 25262306a36Sopenharmony_ci 0xcbcbcb00, 0x9d9d9d00, 0x77777700, 0xc6c6c600, 25362306a36Sopenharmony_ci 0x57575700, 0x43434300, 0x56565600, 0x17171700, 25462306a36Sopenharmony_ci 0xd4d4d400, 0x40404000, 0x1a1a1a00, 0x4d4d4d00, 25562306a36Sopenharmony_ci 0xc0c0c000, 0x63636300, 0x6c6c6c00, 0xe3e3e300, 25662306a36Sopenharmony_ci 0xb7b7b700, 0xc8c8c800, 0x64646400, 0x6a6a6a00, 25762306a36Sopenharmony_ci 0x53535300, 0xaaaaaa00, 0x38383800, 0x98989800, 25862306a36Sopenharmony_ci 0x0c0c0c00, 0xf4f4f400, 0x9b9b9b00, 0xededed00, 25962306a36Sopenharmony_ci 0x7f7f7f00, 0x22222200, 0x76767600, 0xafafaf00, 26062306a36Sopenharmony_ci 0xdddddd00, 0x3a3a3a00, 0x0b0b0b00, 0x58585800, 26162306a36Sopenharmony_ci 0x67676700, 0x88888800, 0x06060600, 0xc3c3c300, 26262306a36Sopenharmony_ci 0x35353500, 0x0d0d0d00, 0x01010100, 0x8b8b8b00, 26362306a36Sopenharmony_ci 0x8c8c8c00, 0xc2c2c200, 0xe6e6e600, 0x5f5f5f00, 26462306a36Sopenharmony_ci 0x02020200, 0x24242400, 0x75757500, 0x93939300, 26562306a36Sopenharmony_ci 0x66666600, 0x1e1e1e00, 0xe5e5e500, 0xe2e2e200, 26662306a36Sopenharmony_ci 0x54545400, 0xd8d8d800, 0x10101000, 0xcecece00, 26762306a36Sopenharmony_ci 0x7a7a7a00, 0xe8e8e800, 0x08080800, 0x2c2c2c00, 26862306a36Sopenharmony_ci 0x12121200, 0x97979700, 0x32323200, 0xababab00, 26962306a36Sopenharmony_ci 0xb4b4b400, 0x27272700, 0x0a0a0a00, 0x23232300, 27062306a36Sopenharmony_ci 0xdfdfdf00, 0xefefef00, 0xcacaca00, 0xd9d9d900, 27162306a36Sopenharmony_ci 0xb8b8b800, 0xfafafa00, 0xdcdcdc00, 0x31313100, 27262306a36Sopenharmony_ci 0x6b6b6b00, 0xd1d1d100, 0xadadad00, 0x19191900, 27362306a36Sopenharmony_ci 0x49494900, 0xbdbdbd00, 0x51515100, 0x96969600, 27462306a36Sopenharmony_ci 0xeeeeee00, 0xe4e4e400, 0xa8a8a800, 0x41414100, 27562306a36Sopenharmony_ci 0xdadada00, 0xffffff00, 0xcdcdcd00, 0x55555500, 27662306a36Sopenharmony_ci 0x86868600, 0x36363600, 0xbebebe00, 0x61616100, 27762306a36Sopenharmony_ci 0x52525200, 0xf8f8f800, 0xbbbbbb00, 0x0e0e0e00, 27862306a36Sopenharmony_ci 0x82828200, 0x48484800, 0x69696900, 0x9a9a9a00, 27962306a36Sopenharmony_ci 0xe0e0e000, 0x47474700, 0x9e9e9e00, 0x5c5c5c00, 28062306a36Sopenharmony_ci 0x04040400, 0x4b4b4b00, 0x34343400, 0x15151500, 28162306a36Sopenharmony_ci 0x79797900, 0x26262600, 0xa7a7a700, 0xdedede00, 28262306a36Sopenharmony_ci 0x29292900, 0xaeaeae00, 0x92929200, 0xd7d7d700, 28362306a36Sopenharmony_ci 0x84848400, 0xe9e9e900, 0xd2d2d200, 0xbababa00, 28462306a36Sopenharmony_ci 0x5d5d5d00, 0xf3f3f300, 0xc5c5c500, 0xb0b0b000, 28562306a36Sopenharmony_ci 0xbfbfbf00, 0xa4a4a400, 0x3b3b3b00, 0x71717100, 28662306a36Sopenharmony_ci 0x44444400, 0x46464600, 0x2b2b2b00, 0xfcfcfc00, 28762306a36Sopenharmony_ci 0xebebeb00, 0x6f6f6f00, 0xd5d5d500, 0xf6f6f600, 28862306a36Sopenharmony_ci 0x14141400, 0xfefefe00, 0x7c7c7c00, 0x70707000, 28962306a36Sopenharmony_ci 0x5a5a5a00, 0x7d7d7d00, 0xfdfdfd00, 0x2f2f2f00, 29062306a36Sopenharmony_ci 0x18181800, 0x83838300, 0x16161600, 0xa5a5a500, 29162306a36Sopenharmony_ci 0x91919100, 0x1f1f1f00, 0x05050500, 0x95959500, 29262306a36Sopenharmony_ci 0x74747400, 0xa9a9a900, 0xc1c1c100, 0x5b5b5b00, 29362306a36Sopenharmony_ci 0x4a4a4a00, 0x85858500, 0x6d6d6d00, 0x13131300, 29462306a36Sopenharmony_ci 0x07070700, 0x4f4f4f00, 0x4e4e4e00, 0x45454500, 29562306a36Sopenharmony_ci 0xb2b2b200, 0x0f0f0f00, 0xc9c9c900, 0x1c1c1c00, 29662306a36Sopenharmony_ci 0xa6a6a600, 0xbcbcbc00, 0xececec00, 0x73737300, 29762306a36Sopenharmony_ci 0x90909000, 0x7b7b7b00, 0xcfcfcf00, 0x59595900, 29862306a36Sopenharmony_ci 0x8f8f8f00, 0xa1a1a100, 0xf9f9f900, 0x2d2d2d00, 29962306a36Sopenharmony_ci 0xf2f2f200, 0xb1b1b100, 0x00000000, 0x94949400, 30062306a36Sopenharmony_ci 0x37373700, 0x9f9f9f00, 0xd0d0d000, 0x2e2e2e00, 30162306a36Sopenharmony_ci 0x9c9c9c00, 0x6e6e6e00, 0x28282800, 0x3f3f3f00, 30262306a36Sopenharmony_ci 0x80808000, 0xf0f0f000, 0x3d3d3d00, 0xd3d3d300, 30362306a36Sopenharmony_ci 0x25252500, 0x8a8a8a00, 0xb5b5b500, 0xe7e7e700, 30462306a36Sopenharmony_ci 0x42424200, 0xb3b3b300, 0xc7c7c700, 0xeaeaea00, 30562306a36Sopenharmony_ci 0xf7f7f700, 0x4c4c4c00, 0x11111100, 0x33333300, 30662306a36Sopenharmony_ci 0x03030300, 0xa2a2a200, 0xacacac00, 0x60606000 30762306a36Sopenharmony_ci}; 30862306a36Sopenharmony_ci 30962306a36Sopenharmony_cistatic inline u32 rotl32(u32 v, u32 r) 31062306a36Sopenharmony_ci{ 31162306a36Sopenharmony_ci return ((v << r) | (v >> (32 - r))); 31262306a36Sopenharmony_ci} 31362306a36Sopenharmony_ci 31462306a36Sopenharmony_cistatic inline u32 rotr32(u32 v, u32 r) 31562306a36Sopenharmony_ci{ 31662306a36Sopenharmony_ci return ((v >> r) | (v << (32 - r))); 31762306a36Sopenharmony_ci} 31862306a36Sopenharmony_ci 31962306a36Sopenharmony_cistatic inline u32 bswap32(u32 v) 32062306a36Sopenharmony_ci{ 32162306a36Sopenharmony_ci return ((v << 24) ^ 32262306a36Sopenharmony_ci (v >> 24) ^ 32362306a36Sopenharmony_ci ((v & 0x0000ff00) << 8) ^ 32462306a36Sopenharmony_ci ((v & 0x00ff0000) >> 8)); 32562306a36Sopenharmony_ci} 32662306a36Sopenharmony_ci 32762306a36Sopenharmony_cistatic inline u8 get_u8(u32 x, u32 y) 32862306a36Sopenharmony_ci{ 32962306a36Sopenharmony_ci return (x >> ((3 - y) * 8)); 33062306a36Sopenharmony_ci} 33162306a36Sopenharmony_ci 33262306a36Sopenharmony_cistatic inline u32 make_u32(u8 v0, u8 v1, u8 v2, u8 v3) 33362306a36Sopenharmony_ci{ 33462306a36Sopenharmony_ci return ((u32)v0 << 24) | ((u32)v1 << 16) | ((u32)v2 << 8) | ((u32)v3); 33562306a36Sopenharmony_ci} 33662306a36Sopenharmony_ci 33762306a36Sopenharmony_cistatic inline u32 aria_m(u32 t0) 33862306a36Sopenharmony_ci{ 33962306a36Sopenharmony_ci return rotr32(t0, 8) ^ rotr32(t0 ^ rotr32(t0, 8), 16); 34062306a36Sopenharmony_ci} 34162306a36Sopenharmony_ci 34262306a36Sopenharmony_ci/* S-Box Layer 1 + M */ 34362306a36Sopenharmony_cistatic inline void aria_sbox_layer1_with_pre_diff(u32 *t0, u32 *t1, u32 *t2, 34462306a36Sopenharmony_ci u32 *t3) 34562306a36Sopenharmony_ci{ 34662306a36Sopenharmony_ci *t0 = s1[get_u8(*t0, 0)] ^ 34762306a36Sopenharmony_ci s2[get_u8(*t0, 1)] ^ 34862306a36Sopenharmony_ci x1[get_u8(*t0, 2)] ^ 34962306a36Sopenharmony_ci x2[get_u8(*t0, 3)]; 35062306a36Sopenharmony_ci *t1 = s1[get_u8(*t1, 0)] ^ 35162306a36Sopenharmony_ci s2[get_u8(*t1, 1)] ^ 35262306a36Sopenharmony_ci x1[get_u8(*t1, 2)] ^ 35362306a36Sopenharmony_ci x2[get_u8(*t1, 3)]; 35462306a36Sopenharmony_ci *t2 = s1[get_u8(*t2, 0)] ^ 35562306a36Sopenharmony_ci s2[get_u8(*t2, 1)] ^ 35662306a36Sopenharmony_ci x1[get_u8(*t2, 2)] ^ 35762306a36Sopenharmony_ci x2[get_u8(*t2, 3)]; 35862306a36Sopenharmony_ci *t3 = s1[get_u8(*t3, 0)] ^ 35962306a36Sopenharmony_ci s2[get_u8(*t3, 1)] ^ 36062306a36Sopenharmony_ci x1[get_u8(*t3, 2)] ^ 36162306a36Sopenharmony_ci x2[get_u8(*t3, 3)]; 36262306a36Sopenharmony_ci} 36362306a36Sopenharmony_ci 36462306a36Sopenharmony_ci/* S-Box Layer 2 + M */ 36562306a36Sopenharmony_cistatic inline void aria_sbox_layer2_with_pre_diff(u32 *t0, u32 *t1, u32 *t2, 36662306a36Sopenharmony_ci u32 *t3) 36762306a36Sopenharmony_ci{ 36862306a36Sopenharmony_ci *t0 = x1[get_u8(*t0, 0)] ^ 36962306a36Sopenharmony_ci x2[get_u8(*t0, 1)] ^ 37062306a36Sopenharmony_ci s1[get_u8(*t0, 2)] ^ 37162306a36Sopenharmony_ci s2[get_u8(*t0, 3)]; 37262306a36Sopenharmony_ci *t1 = x1[get_u8(*t1, 0)] ^ 37362306a36Sopenharmony_ci x2[get_u8(*t1, 1)] ^ 37462306a36Sopenharmony_ci s1[get_u8(*t1, 2)] ^ 37562306a36Sopenharmony_ci s2[get_u8(*t1, 3)]; 37662306a36Sopenharmony_ci *t2 = x1[get_u8(*t2, 0)] ^ 37762306a36Sopenharmony_ci x2[get_u8(*t2, 1)] ^ 37862306a36Sopenharmony_ci s1[get_u8(*t2, 2)] ^ 37962306a36Sopenharmony_ci s2[get_u8(*t2, 3)]; 38062306a36Sopenharmony_ci *t3 = x1[get_u8(*t3, 0)] ^ 38162306a36Sopenharmony_ci x2[get_u8(*t3, 1)] ^ 38262306a36Sopenharmony_ci s1[get_u8(*t3, 2)] ^ 38362306a36Sopenharmony_ci s2[get_u8(*t3, 3)]; 38462306a36Sopenharmony_ci} 38562306a36Sopenharmony_ci 38662306a36Sopenharmony_ci/* Word-level diffusion */ 38762306a36Sopenharmony_cistatic inline void aria_diff_word(u32 *t0, u32 *t1, u32 *t2, u32 *t3) 38862306a36Sopenharmony_ci{ 38962306a36Sopenharmony_ci *t1 ^= *t2; 39062306a36Sopenharmony_ci *t2 ^= *t3; 39162306a36Sopenharmony_ci *t0 ^= *t1; 39262306a36Sopenharmony_ci 39362306a36Sopenharmony_ci *t3 ^= *t1; 39462306a36Sopenharmony_ci *t2 ^= *t0; 39562306a36Sopenharmony_ci *t1 ^= *t2; 39662306a36Sopenharmony_ci} 39762306a36Sopenharmony_ci 39862306a36Sopenharmony_ci/* Byte-level diffusion */ 39962306a36Sopenharmony_cistatic inline void aria_diff_byte(u32 *t1, u32 *t2, u32 *t3) 40062306a36Sopenharmony_ci{ 40162306a36Sopenharmony_ci *t1 = ((*t1 << 8) & 0xff00ff00) ^ ((*t1 >> 8) & 0x00ff00ff); 40262306a36Sopenharmony_ci *t2 = rotr32(*t2, 16); 40362306a36Sopenharmony_ci *t3 = bswap32(*t3); 40462306a36Sopenharmony_ci} 40562306a36Sopenharmony_ci 40662306a36Sopenharmony_ci/* Key XOR Layer */ 40762306a36Sopenharmony_cistatic inline void aria_add_round_key(u32 *rk, u32 *t0, u32 *t1, u32 *t2, 40862306a36Sopenharmony_ci u32 *t3) 40962306a36Sopenharmony_ci{ 41062306a36Sopenharmony_ci *t0 ^= rk[0]; 41162306a36Sopenharmony_ci *t1 ^= rk[1]; 41262306a36Sopenharmony_ci *t2 ^= rk[2]; 41362306a36Sopenharmony_ci *t3 ^= rk[3]; 41462306a36Sopenharmony_ci} 41562306a36Sopenharmony_ci/* Odd round Substitution & Diffusion */ 41662306a36Sopenharmony_cistatic inline void aria_subst_diff_odd(u32 *t0, u32 *t1, u32 *t2, u32 *t3) 41762306a36Sopenharmony_ci{ 41862306a36Sopenharmony_ci aria_sbox_layer1_with_pre_diff(t0, t1, t2, t3); 41962306a36Sopenharmony_ci aria_diff_word(t0, t1, t2, t3); 42062306a36Sopenharmony_ci aria_diff_byte(t1, t2, t3); 42162306a36Sopenharmony_ci aria_diff_word(t0, t1, t2, t3); 42262306a36Sopenharmony_ci} 42362306a36Sopenharmony_ci 42462306a36Sopenharmony_ci/* Even round Substitution & Diffusion */ 42562306a36Sopenharmony_cistatic inline void aria_subst_diff_even(u32 *t0, u32 *t1, u32 *t2, u32 *t3) 42662306a36Sopenharmony_ci{ 42762306a36Sopenharmony_ci aria_sbox_layer2_with_pre_diff(t0, t1, t2, t3); 42862306a36Sopenharmony_ci aria_diff_word(t0, t1, t2, t3); 42962306a36Sopenharmony_ci aria_diff_byte(t3, t0, t1); 43062306a36Sopenharmony_ci aria_diff_word(t0, t1, t2, t3); 43162306a36Sopenharmony_ci} 43262306a36Sopenharmony_ci 43362306a36Sopenharmony_ci/* Q, R Macro expanded ARIA GSRK */ 43462306a36Sopenharmony_cistatic inline void aria_gsrk(u32 *rk, u32 *x, u32 *y, u32 n) 43562306a36Sopenharmony_ci{ 43662306a36Sopenharmony_ci int q = 4 - (n / 32); 43762306a36Sopenharmony_ci int r = n % 32; 43862306a36Sopenharmony_ci 43962306a36Sopenharmony_ci rk[0] = (x[0]) ^ 44062306a36Sopenharmony_ci ((y[q % 4]) >> r) ^ 44162306a36Sopenharmony_ci ((y[(q + 3) % 4]) << (32 - r)); 44262306a36Sopenharmony_ci rk[1] = (x[1]) ^ 44362306a36Sopenharmony_ci ((y[(q + 1) % 4]) >> r) ^ 44462306a36Sopenharmony_ci ((y[q % 4]) << (32 - r)); 44562306a36Sopenharmony_ci rk[2] = (x[2]) ^ 44662306a36Sopenharmony_ci ((y[(q + 2) % 4]) >> r) ^ 44762306a36Sopenharmony_ci ((y[(q + 1) % 4]) << (32 - r)); 44862306a36Sopenharmony_ci rk[3] = (x[3]) ^ 44962306a36Sopenharmony_ci ((y[(q + 3) % 4]) >> r) ^ 45062306a36Sopenharmony_ci ((y[(q + 2) % 4]) << (32 - r)); 45162306a36Sopenharmony_ci} 45262306a36Sopenharmony_ci 45362306a36Sopenharmony_civoid aria_encrypt(void *ctx, u8 *out, const u8 *in); 45462306a36Sopenharmony_civoid aria_decrypt(void *ctx, u8 *out, const u8 *in); 45562306a36Sopenharmony_ciint aria_set_key(struct crypto_tfm *tfm, const u8 *in_key, 45662306a36Sopenharmony_ci unsigned int key_len); 45762306a36Sopenharmony_ci 45862306a36Sopenharmony_ci#endif 459