18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 OR MIT 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#include <crypto/internal/blake2s.h> 78c2ecf20Sopenharmony_ci#include <linux/string.h> 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ci/* 108c2ecf20Sopenharmony_ci * blake2s_testvecs[] generated with the program below (using libb2-dev and 118c2ecf20Sopenharmony_ci * libssl-dev [OpenSSL]) 128c2ecf20Sopenharmony_ci * 138c2ecf20Sopenharmony_ci * #include <blake2.h> 148c2ecf20Sopenharmony_ci * #include <stdint.h> 158c2ecf20Sopenharmony_ci * #include <stdio.h> 168c2ecf20Sopenharmony_ci * 178c2ecf20Sopenharmony_ci * #include <openssl/evp.h> 188c2ecf20Sopenharmony_ci * 198c2ecf20Sopenharmony_ci * #define BLAKE2S_TESTVEC_COUNT 256 208c2ecf20Sopenharmony_ci * 218c2ecf20Sopenharmony_ci * static void print_vec(const uint8_t vec[], int len) 228c2ecf20Sopenharmony_ci * { 238c2ecf20Sopenharmony_ci * int i; 248c2ecf20Sopenharmony_ci * 258c2ecf20Sopenharmony_ci * printf(" { "); 268c2ecf20Sopenharmony_ci * for (i = 0; i < len; i++) { 278c2ecf20Sopenharmony_ci * if (i && (i % 12) == 0) 288c2ecf20Sopenharmony_ci * printf("\n "); 298c2ecf20Sopenharmony_ci * printf("0x%02x, ", vec[i]); 308c2ecf20Sopenharmony_ci * } 318c2ecf20Sopenharmony_ci * printf("},\n"); 328c2ecf20Sopenharmony_ci * } 338c2ecf20Sopenharmony_ci * 348c2ecf20Sopenharmony_ci * int main(void) 358c2ecf20Sopenharmony_ci * { 368c2ecf20Sopenharmony_ci * uint8_t key[BLAKE2S_KEYBYTES]; 378c2ecf20Sopenharmony_ci * uint8_t buf[BLAKE2S_TESTVEC_COUNT]; 388c2ecf20Sopenharmony_ci * uint8_t hash[BLAKE2S_OUTBYTES]; 398c2ecf20Sopenharmony_ci * int i, j; 408c2ecf20Sopenharmony_ci * 418c2ecf20Sopenharmony_ci * key[0] = key[1] = 1; 428c2ecf20Sopenharmony_ci * for (i = 2; i < BLAKE2S_KEYBYTES; ++i) 438c2ecf20Sopenharmony_ci * key[i] = key[i - 2] + key[i - 1]; 448c2ecf20Sopenharmony_ci * 458c2ecf20Sopenharmony_ci * for (i = 0; i < BLAKE2S_TESTVEC_COUNT; ++i) 468c2ecf20Sopenharmony_ci * buf[i] = (uint8_t)i; 478c2ecf20Sopenharmony_ci * 488c2ecf20Sopenharmony_ci * printf("static const u8 blake2s_testvecs[][BLAKE2S_HASH_SIZE] __initconst = {\n"); 498c2ecf20Sopenharmony_ci * 508c2ecf20Sopenharmony_ci * for (i = 0; i < BLAKE2S_TESTVEC_COUNT; ++i) { 518c2ecf20Sopenharmony_ci * int outlen = 1 + i % BLAKE2S_OUTBYTES; 528c2ecf20Sopenharmony_ci * int keylen = (13 * i) % (BLAKE2S_KEYBYTES + 1); 538c2ecf20Sopenharmony_ci * 548c2ecf20Sopenharmony_ci * blake2s(hash, buf, key + BLAKE2S_KEYBYTES - keylen, outlen, i, 558c2ecf20Sopenharmony_ci * keylen); 568c2ecf20Sopenharmony_ci * print_vec(hash, outlen); 578c2ecf20Sopenharmony_ci * } 588c2ecf20Sopenharmony_ci * printf("};\n\n"); 598c2ecf20Sopenharmony_ci * 608c2ecf20Sopenharmony_ci * return 0; 618c2ecf20Sopenharmony_ci *} 628c2ecf20Sopenharmony_ci */ 638c2ecf20Sopenharmony_cistatic const u8 blake2s_testvecs[][BLAKE2S_HASH_SIZE] __initconst = { 648c2ecf20Sopenharmony_ci { 0xa1, }, 658c2ecf20Sopenharmony_ci { 0x7c, 0x89, }, 668c2ecf20Sopenharmony_ci { 0x74, 0x0e, 0xd4, }, 678c2ecf20Sopenharmony_ci { 0x47, 0x0c, 0x21, 0x15, }, 688c2ecf20Sopenharmony_ci { 0x18, 0xd6, 0x9c, 0xa6, 0xc4, }, 698c2ecf20Sopenharmony_ci { 0x13, 0x5d, 0x16, 0x63, 0x2e, 0xf9, }, 708c2ecf20Sopenharmony_ci { 0x2c, 0xb5, 0x04, 0xb7, 0x99, 0xe2, 0x73, }, 718c2ecf20Sopenharmony_ci { 0x9a, 0x0f, 0xd2, 0x39, 0xd6, 0x68, 0x1b, 0x92, }, 728c2ecf20Sopenharmony_ci { 0xc8, 0xde, 0x7a, 0xea, 0x2f, 0xf4, 0xd2, 0xe3, 0x2b, }, 738c2ecf20Sopenharmony_ci { 0x5b, 0xf9, 0x43, 0x52, 0x0c, 0x12, 0xba, 0xb5, 0x93, 0x9f, }, 748c2ecf20Sopenharmony_ci { 0xc6, 0x2c, 0x4e, 0x80, 0xfc, 0x32, 0x5b, 0x33, 0xb8, 0xb8, 0x0a, }, 758c2ecf20Sopenharmony_ci { 0xa7, 0x5c, 0xfd, 0x3a, 0xcc, 0xbf, 0x90, 0xca, 0xb7, 0x97, 0xde, 0xd8, }, 768c2ecf20Sopenharmony_ci { 0x66, 0xca, 0x3c, 0xc4, 0x19, 0xef, 0x92, 0x66, 0x3f, 0x21, 0x8f, 0xda, 778c2ecf20Sopenharmony_ci 0xb7, }, 788c2ecf20Sopenharmony_ci { 0xba, 0xe5, 0xbb, 0x30, 0x25, 0x94, 0x6d, 0xc3, 0x89, 0x09, 0xc4, 0x25, 798c2ecf20Sopenharmony_ci 0x52, 0x3e, }, 808c2ecf20Sopenharmony_ci { 0xa2, 0xef, 0x0e, 0x52, 0x0b, 0x5f, 0xa2, 0x01, 0x6d, 0x0a, 0x25, 0xbc, 818c2ecf20Sopenharmony_ci 0x57, 0xe2, 0x27, }, 828c2ecf20Sopenharmony_ci { 0x4f, 0xe0, 0xf9, 0x52, 0x12, 0xda, 0x84, 0xb7, 0xab, 0xae, 0xb0, 0xa6, 838c2ecf20Sopenharmony_ci 0x47, 0x2a, 0xc7, 0xf5, }, 848c2ecf20Sopenharmony_ci { 0x56, 0xe7, 0xa8, 0x1c, 0x4c, 0xca, 0xed, 0x90, 0x31, 0xec, 0x87, 0x43, 858c2ecf20Sopenharmony_ci 0xe7, 0x72, 0x08, 0xec, 0xbe, }, 868c2ecf20Sopenharmony_ci { 0x7e, 0xdf, 0x80, 0x1c, 0x93, 0x33, 0xfd, 0x53, 0x44, 0xba, 0xfd, 0x96, 878c2ecf20Sopenharmony_ci 0xe1, 0xbb, 0xb5, 0x65, 0xa5, 0x00, }, 888c2ecf20Sopenharmony_ci { 0xec, 0x6b, 0xed, 0xf7, 0x7b, 0x62, 0x1d, 0x7d, 0xf4, 0x82, 0xf3, 0x1e, 898c2ecf20Sopenharmony_ci 0x18, 0xff, 0x2b, 0xc4, 0x06, 0x20, 0x2a, }, 908c2ecf20Sopenharmony_ci { 0x74, 0x98, 0xd7, 0x68, 0x63, 0xed, 0x87, 0xe4, 0x5d, 0x8d, 0x9e, 0x1d, 918c2ecf20Sopenharmony_ci 0xfd, 0x2a, 0xbb, 0x86, 0xac, 0xe9, 0x2a, 0x89, }, 928c2ecf20Sopenharmony_ci { 0x89, 0xc3, 0x88, 0xce, 0x2b, 0x33, 0x1e, 0x10, 0xd1, 0x37, 0x20, 0x86, 938c2ecf20Sopenharmony_ci 0x28, 0x43, 0x70, 0xd9, 0xfb, 0x96, 0xd9, 0xb5, 0xd3, }, 948c2ecf20Sopenharmony_ci { 0xcb, 0x56, 0x74, 0x41, 0x8d, 0x80, 0x01, 0x9a, 0x6b, 0x38, 0xe1, 0x41, 958c2ecf20Sopenharmony_ci 0xad, 0x9c, 0x62, 0x74, 0xce, 0x35, 0xd5, 0x6c, 0x89, 0x6e, }, 968c2ecf20Sopenharmony_ci { 0x79, 0xaf, 0x94, 0x59, 0x99, 0x26, 0xe1, 0xc9, 0x34, 0xfe, 0x7c, 0x22, 978c2ecf20Sopenharmony_ci 0xf7, 0x43, 0xd7, 0x65, 0xd4, 0x48, 0x18, 0xac, 0x3d, 0xfd, 0x93, }, 988c2ecf20Sopenharmony_ci { 0x85, 0x0d, 0xff, 0xb8, 0x3e, 0x87, 0x41, 0xb0, 0x95, 0xd3, 0x3d, 0x00, 998c2ecf20Sopenharmony_ci 0x47, 0x55, 0x9e, 0xd2, 0x69, 0xea, 0xbf, 0xe9, 0x7a, 0x2d, 0x61, 0x45, }, 1008c2ecf20Sopenharmony_ci { 0x03, 0xe0, 0x85, 0xec, 0x54, 0xb5, 0x16, 0x53, 0xa8, 0xc4, 0x71, 0xe9, 1018c2ecf20Sopenharmony_ci 0x6a, 0xe7, 0xcb, 0xc4, 0x15, 0x02, 0xfc, 0x34, 0xa4, 0xa4, 0x28, 0x13, 1028c2ecf20Sopenharmony_ci 0xd1, }, 1038c2ecf20Sopenharmony_ci { 0xe3, 0x34, 0x4b, 0xe1, 0xd0, 0x4b, 0x55, 0x61, 0x8f, 0xc0, 0x24, 0x05, 1048c2ecf20Sopenharmony_ci 0xe6, 0xe0, 0x3d, 0x70, 0x24, 0x4d, 0xda, 0xb8, 0x91, 0x05, 0x29, 0x07, 1058c2ecf20Sopenharmony_ci 0x01, 0x3e, }, 1068c2ecf20Sopenharmony_ci { 0x61, 0xff, 0x01, 0x72, 0xb1, 0x4d, 0xf6, 0xfe, 0xd1, 0xd1, 0x08, 0x74, 1078c2ecf20Sopenharmony_ci 0xe6, 0x91, 0x44, 0xeb, 0x61, 0xda, 0x40, 0xaf, 0xfc, 0x8c, 0x91, 0x6b, 1088c2ecf20Sopenharmony_ci 0xec, 0x13, 0xed, }, 1098c2ecf20Sopenharmony_ci { 0xd4, 0x40, 0xd2, 0xa0, 0x7f, 0xc1, 0x58, 0x0c, 0x85, 0xa0, 0x86, 0xc7, 1108c2ecf20Sopenharmony_ci 0x86, 0xb9, 0x61, 0xc9, 0xea, 0x19, 0x86, 0x1f, 0xab, 0x07, 0xce, 0x37, 1118c2ecf20Sopenharmony_ci 0x72, 0x67, 0x09, 0xfc, }, 1128c2ecf20Sopenharmony_ci { 0x9e, 0xf8, 0x18, 0x67, 0x93, 0x10, 0x9b, 0x39, 0x75, 0xe8, 0x8b, 0x38, 1138c2ecf20Sopenharmony_ci 0x82, 0x7d, 0xb8, 0xb7, 0xa5, 0xaf, 0xe6, 0x6a, 0x22, 0x5e, 0x1f, 0x9c, 1148c2ecf20Sopenharmony_ci 0x95, 0x29, 0x19, 0xf2, 0x4b, }, 1158c2ecf20Sopenharmony_ci { 0xc8, 0x62, 0x25, 0xf5, 0x98, 0xc9, 0xea, 0xe5, 0x29, 0x3a, 0xd3, 0x22, 1168c2ecf20Sopenharmony_ci 0xeb, 0xeb, 0x07, 0x7c, 0x15, 0x07, 0xee, 0x15, 0x61, 0xbb, 0x05, 0x30, 1178c2ecf20Sopenharmony_ci 0x99, 0x7f, 0x11, 0xf6, 0x0a, 0x1d, }, 1188c2ecf20Sopenharmony_ci { 0x68, 0x70, 0xf7, 0x90, 0xa1, 0x8b, 0x1f, 0x0f, 0xbb, 0xce, 0xd2, 0x0e, 1198c2ecf20Sopenharmony_ci 0x33, 0x1f, 0x7f, 0xa9, 0x78, 0xa8, 0xa6, 0x81, 0x66, 0xab, 0x8d, 0xcd, 1208c2ecf20Sopenharmony_ci 0x58, 0x55, 0x3a, 0x0b, 0x7a, 0xdb, 0xb5, }, 1218c2ecf20Sopenharmony_ci { 0xdd, 0x35, 0xd2, 0xb4, 0xf6, 0xc7, 0xea, 0xab, 0x64, 0x24, 0x4e, 0xfe, 1228c2ecf20Sopenharmony_ci 0xe5, 0x3d, 0x4e, 0x95, 0x8b, 0x6d, 0x6c, 0xbc, 0xb0, 0xf8, 0x88, 0x61, 1238c2ecf20Sopenharmony_ci 0x09, 0xb7, 0x78, 0xa3, 0x31, 0xfe, 0xd9, 0x2f, }, 1248c2ecf20Sopenharmony_ci { 0x0a, }, 1258c2ecf20Sopenharmony_ci { 0x6e, 0xd4, }, 1268c2ecf20Sopenharmony_ci { 0x64, 0xe9, 0xd1, }, 1278c2ecf20Sopenharmony_ci { 0x30, 0xdd, 0x71, 0xef, }, 1288c2ecf20Sopenharmony_ci { 0x11, 0xb5, 0x0c, 0x87, 0xc9, }, 1298c2ecf20Sopenharmony_ci { 0x06, 0x1c, 0x6d, 0x04, 0x82, 0xd0, }, 1308c2ecf20Sopenharmony_ci { 0x5c, 0x42, 0x0b, 0xee, 0xc5, 0x9c, 0xb2, }, 1318c2ecf20Sopenharmony_ci { 0xe8, 0x29, 0xd6, 0xb4, 0x5d, 0xf7, 0x2b, 0x93, }, 1328c2ecf20Sopenharmony_ci { 0x18, 0xca, 0x27, 0x72, 0x43, 0x39, 0x16, 0xbc, 0x6a, }, 1338c2ecf20Sopenharmony_ci { 0x39, 0x8f, 0xfd, 0x64, 0xf5, 0x57, 0x23, 0xb0, 0x45, 0xf8, }, 1348c2ecf20Sopenharmony_ci { 0xbb, 0x3a, 0x78, 0x6b, 0x02, 0x1d, 0x0b, 0x16, 0xe3, 0xb2, 0x9a, }, 1358c2ecf20Sopenharmony_ci { 0xb8, 0xb4, 0x0b, 0xe5, 0xd4, 0x1d, 0x0d, 0x85, 0x49, 0x91, 0x35, 0xfa, }, 1368c2ecf20Sopenharmony_ci { 0x6d, 0x48, 0x2a, 0x0c, 0x42, 0x08, 0xbd, 0xa9, 0x78, 0x6f, 0x18, 0xaf, 1378c2ecf20Sopenharmony_ci 0xe2, }, 1388c2ecf20Sopenharmony_ci { 0x10, 0x45, 0xd4, 0x58, 0x88, 0xec, 0x4e, 0x1e, 0xf6, 0x14, 0x92, 0x64, 1398c2ecf20Sopenharmony_ci 0x7e, 0xb0, }, 1408c2ecf20Sopenharmony_ci { 0x8b, 0x0b, 0x95, 0xee, 0x92, 0xc6, 0x3b, 0x91, 0xf1, 0x1e, 0xeb, 0x51, 1418c2ecf20Sopenharmony_ci 0x98, 0x0a, 0x8d, }, 1428c2ecf20Sopenharmony_ci { 0xa3, 0x50, 0x4d, 0xa5, 0x1d, 0x03, 0x68, 0xe9, 0x57, 0x78, 0xd6, 0x04, 1438c2ecf20Sopenharmony_ci 0xf1, 0xc3, 0x94, 0xd8, }, 1448c2ecf20Sopenharmony_ci { 0xb8, 0x66, 0x6e, 0xdd, 0x46, 0x15, 0xae, 0x3d, 0x83, 0x7e, 0xcf, 0xe7, 1458c2ecf20Sopenharmony_ci 0x2c, 0xe8, 0x8f, 0xc7, 0x34, }, 1468c2ecf20Sopenharmony_ci { 0x2e, 0xc0, 0x1f, 0x29, 0xea, 0xf6, 0xb9, 0xe2, 0xc2, 0x93, 0xeb, 0x41, 1478c2ecf20Sopenharmony_ci 0x0d, 0xf0, 0x0a, 0x13, 0x0e, 0xa2, }, 1488c2ecf20Sopenharmony_ci { 0x71, 0xb8, 0x33, 0xa9, 0x1b, 0xac, 0xf1, 0xb5, 0x42, 0x8f, 0x5e, 0x81, 1498c2ecf20Sopenharmony_ci 0x34, 0x43, 0xb7, 0xa4, 0x18, 0x5c, 0x47, }, 1508c2ecf20Sopenharmony_ci { 0xda, 0x45, 0xb8, 0x2e, 0x82, 0x1e, 0xc0, 0x59, 0x77, 0x9d, 0xfa, 0xb4, 1518c2ecf20Sopenharmony_ci 0x1c, 0x5e, 0xa0, 0x2b, 0x33, 0x96, 0x5a, 0x58, }, 1528c2ecf20Sopenharmony_ci { 0xe3, 0x09, 0x05, 0xa9, 0xeb, 0x48, 0x13, 0xad, 0x71, 0x88, 0x81, 0x9a, 1538c2ecf20Sopenharmony_ci 0x3e, 0x2c, 0xe1, 0x23, 0x99, 0x13, 0x35, 0x9f, 0xb5, }, 1548c2ecf20Sopenharmony_ci { 0xb7, 0x86, 0x2d, 0x16, 0xe1, 0x04, 0x00, 0x47, 0x47, 0x61, 0x31, 0xfb, 1558c2ecf20Sopenharmony_ci 0x14, 0xac, 0xd8, 0xe9, 0xe3, 0x49, 0xbd, 0xf7, 0x9c, 0x3f, }, 1568c2ecf20Sopenharmony_ci { 0x7f, 0xd9, 0x95, 0xa8, 0xa7, 0xa0, 0xcc, 0xba, 0xef, 0xb1, 0x0a, 0xa9, 1578c2ecf20Sopenharmony_ci 0x21, 0x62, 0x08, 0x0f, 0x1b, 0xff, 0x7b, 0x9d, 0xae, 0xb2, 0x95, }, 1588c2ecf20Sopenharmony_ci { 0x85, 0x99, 0xea, 0x33, 0xe0, 0x56, 0xff, 0x13, 0xc6, 0x61, 0x8c, 0xf9, 1598c2ecf20Sopenharmony_ci 0x57, 0x05, 0x03, 0x11, 0xf9, 0xfb, 0x3a, 0xf7, 0xce, 0xbb, 0x52, 0x30, }, 1608c2ecf20Sopenharmony_ci { 0xb2, 0x72, 0x9c, 0xf8, 0x77, 0x4e, 0x8f, 0x6b, 0x01, 0x6c, 0xff, 0x4e, 1618c2ecf20Sopenharmony_ci 0x4f, 0x02, 0xd2, 0xbc, 0xeb, 0x51, 0x28, 0x99, 0x50, 0xab, 0xc4, 0x42, 1628c2ecf20Sopenharmony_ci 0xe3, }, 1638c2ecf20Sopenharmony_ci { 0x8b, 0x0a, 0xb5, 0x90, 0x8f, 0xf5, 0x7b, 0xdd, 0xba, 0x47, 0x37, 0xc9, 1648c2ecf20Sopenharmony_ci 0x2a, 0xd5, 0x4b, 0x25, 0x08, 0x8b, 0x02, 0x17, 0xa7, 0x9e, 0x6b, 0x6e, 1658c2ecf20Sopenharmony_ci 0xe3, 0x90, }, 1668c2ecf20Sopenharmony_ci { 0x90, 0xdd, 0xf7, 0x75, 0xa7, 0xa3, 0x99, 0x5e, 0x5b, 0x7d, 0x75, 0xc3, 1678c2ecf20Sopenharmony_ci 0x39, 0x6b, 0xa0, 0xe2, 0x44, 0x53, 0xb1, 0x9e, 0xc8, 0xf1, 0x77, 0x10, 1688c2ecf20Sopenharmony_ci 0x58, 0x06, 0x9a, }, 1698c2ecf20Sopenharmony_ci { 0x99, 0x52, 0xf0, 0x49, 0xa8, 0x8c, 0xec, 0xa6, 0x97, 0x32, 0x13, 0xb5, 1708c2ecf20Sopenharmony_ci 0xf7, 0xa3, 0x8e, 0xfb, 0x4b, 0x59, 0x31, 0x3d, 0x01, 0x59, 0x98, 0x5d, 1718c2ecf20Sopenharmony_ci 0x53, 0x03, 0x1a, 0x39, }, 1728c2ecf20Sopenharmony_ci { 0x9f, 0xe0, 0xc2, 0xe5, 0x5d, 0x93, 0xd6, 0x9b, 0x47, 0x8f, 0x9b, 0xe0, 1738c2ecf20Sopenharmony_ci 0x26, 0x35, 0x84, 0x20, 0x1d, 0xc5, 0x53, 0x10, 0x0f, 0x22, 0xb9, 0xb5, 1748c2ecf20Sopenharmony_ci 0xd4, 0x36, 0xb1, 0xac, 0x73, }, 1758c2ecf20Sopenharmony_ci { 0x30, 0x32, 0x20, 0x3b, 0x10, 0x28, 0xec, 0x1f, 0x4f, 0x9b, 0x47, 0x59, 1768c2ecf20Sopenharmony_ci 0xeb, 0x7b, 0xee, 0x45, 0xfb, 0x0c, 0x49, 0xd8, 0x3d, 0x69, 0xbd, 0x90, 1778c2ecf20Sopenharmony_ci 0x2c, 0xf0, 0x9e, 0x8d, 0xbf, 0xd5, }, 1788c2ecf20Sopenharmony_ci { 0x2a, 0x37, 0x73, 0x7f, 0xf9, 0x96, 0x19, 0xaa, 0x25, 0xd8, 0x13, 0x28, 1798c2ecf20Sopenharmony_ci 0x01, 0x29, 0x89, 0xdf, 0x6e, 0x0c, 0x9b, 0x43, 0x44, 0x51, 0xe9, 0x75, 1808c2ecf20Sopenharmony_ci 0x26, 0x0c, 0xb7, 0x87, 0x66, 0x0b, 0x5f, }, 1818c2ecf20Sopenharmony_ci { 0x23, 0xdf, 0x96, 0x68, 0x91, 0x86, 0xd0, 0x93, 0x55, 0x33, 0x24, 0xf6, 1828c2ecf20Sopenharmony_ci 0xba, 0x08, 0x75, 0x5b, 0x59, 0x11, 0x69, 0xb8, 0xb9, 0xe5, 0x2c, 0x77, 1838c2ecf20Sopenharmony_ci 0x02, 0xf6, 0x47, 0xee, 0x81, 0xdd, 0xb9, 0x06, }, 1848c2ecf20Sopenharmony_ci { 0x9d, }, 1858c2ecf20Sopenharmony_ci { 0x9d, 0x7d, }, 1868c2ecf20Sopenharmony_ci { 0xfd, 0xc3, 0xda, }, 1878c2ecf20Sopenharmony_ci { 0xe8, 0x82, 0xcd, 0x21, }, 1888c2ecf20Sopenharmony_ci { 0xc3, 0x1d, 0x42, 0x4c, 0x74, }, 1898c2ecf20Sopenharmony_ci { 0xe9, 0xda, 0xf1, 0xa2, 0xe5, 0x7c, }, 1908c2ecf20Sopenharmony_ci { 0x52, 0xb8, 0x6f, 0x81, 0x5c, 0x3a, 0x4c, }, 1918c2ecf20Sopenharmony_ci { 0x5b, 0x39, 0x26, 0xfc, 0x92, 0x5e, 0xe0, 0x49, }, 1928c2ecf20Sopenharmony_ci { 0x59, 0xe4, 0x7c, 0x93, 0x1c, 0xf9, 0x28, 0x93, 0xde, }, 1938c2ecf20Sopenharmony_ci { 0xde, 0xdf, 0xb2, 0x43, 0x61, 0x0b, 0x86, 0x16, 0x4c, 0x2e, }, 1948c2ecf20Sopenharmony_ci { 0x14, 0x8f, 0x75, 0x51, 0xaf, 0xb9, 0xee, 0x51, 0x5a, 0xae, 0x23, }, 1958c2ecf20Sopenharmony_ci { 0x43, 0x5f, 0x50, 0xd5, 0x70, 0xb0, 0x5b, 0x87, 0xf5, 0xd9, 0xb3, 0x6d, }, 1968c2ecf20Sopenharmony_ci { 0x66, 0x0a, 0x64, 0x93, 0x79, 0x71, 0x94, 0x40, 0xb7, 0x68, 0x2d, 0xd3, 1978c2ecf20Sopenharmony_ci 0x63, }, 1988c2ecf20Sopenharmony_ci { 0x15, 0x00, 0xc4, 0x0c, 0x7d, 0x1b, 0x10, 0xa9, 0x73, 0x1b, 0x90, 0x6f, 1998c2ecf20Sopenharmony_ci 0xe6, 0xa9, }, 2008c2ecf20Sopenharmony_ci { 0x34, 0x75, 0xf3, 0x86, 0x8f, 0x56, 0xcf, 0x2a, 0x0a, 0xf2, 0x62, 0x0a, 2018c2ecf20Sopenharmony_ci 0xf6, 0x0e, 0x20, }, 2028c2ecf20Sopenharmony_ci { 0xb1, 0xde, 0xc9, 0xf5, 0xdb, 0xf3, 0x2f, 0x4c, 0xd6, 0x41, 0x7d, 0x39, 2038c2ecf20Sopenharmony_ci 0x18, 0x3e, 0xc7, 0xc3, }, 2048c2ecf20Sopenharmony_ci { 0xc5, 0x89, 0xb2, 0xf8, 0xb8, 0xc0, 0xa3, 0xb9, 0x3b, 0x10, 0x6d, 0x7c, 2058c2ecf20Sopenharmony_ci 0x92, 0xfc, 0x7f, 0x34, 0x41, }, 2068c2ecf20Sopenharmony_ci { 0xc4, 0xd8, 0xef, 0xba, 0xef, 0xd2, 0xaa, 0xc5, 0x6c, 0x8e, 0x3e, 0xbb, 2078c2ecf20Sopenharmony_ci 0x12, 0xfc, 0x0f, 0x72, 0xbf, 0x0f, }, 2088c2ecf20Sopenharmony_ci { 0xdd, 0x91, 0xd1, 0x15, 0x9e, 0x7d, 0xf8, 0xc1, 0xb9, 0x14, 0x63, 0x96, 2098c2ecf20Sopenharmony_ci 0xb5, 0xcb, 0x83, 0x1d, 0x35, 0x1c, 0xec, }, 2108c2ecf20Sopenharmony_ci { 0xa9, 0xf8, 0x52, 0xc9, 0x67, 0x76, 0x2b, 0xad, 0xfb, 0xd8, 0x3a, 0xa6, 2118c2ecf20Sopenharmony_ci 0x74, 0x02, 0xae, 0xb8, 0x25, 0x2c, 0x63, 0x49, }, 2128c2ecf20Sopenharmony_ci { 0x77, 0x1f, 0x66, 0x70, 0xfd, 0x50, 0x29, 0xaa, 0xeb, 0xdc, 0xee, 0xba, 2138c2ecf20Sopenharmony_ci 0x75, 0x98, 0xdc, 0x93, 0x12, 0x3f, 0xdc, 0x7c, 0x38, }, 2148c2ecf20Sopenharmony_ci { 0xe2, 0xe1, 0x89, 0x5c, 0x37, 0x38, 0x6a, 0xa3, 0x40, 0xac, 0x3f, 0xb0, 2158c2ecf20Sopenharmony_ci 0xca, 0xfc, 0xa7, 0xf3, 0xea, 0xf9, 0x0f, 0x5d, 0x8e, 0x39, }, 2168c2ecf20Sopenharmony_ci { 0x0f, 0x67, 0xc8, 0x38, 0x01, 0xb1, 0xb7, 0xb8, 0xa2, 0xe7, 0x0a, 0x6d, 2178c2ecf20Sopenharmony_ci 0xd2, 0x63, 0x69, 0x9e, 0xcc, 0xf0, 0xf2, 0xbe, 0x9b, 0x98, 0xdd, }, 2188c2ecf20Sopenharmony_ci { 0x13, 0xe1, 0x36, 0x30, 0xfe, 0xc6, 0x01, 0x8a, 0xa1, 0x63, 0x96, 0x59, 2198c2ecf20Sopenharmony_ci 0xc2, 0xa9, 0x68, 0x3f, 0x58, 0xd4, 0x19, 0x0c, 0x40, 0xf3, 0xde, 0x02, }, 2208c2ecf20Sopenharmony_ci { 0xa3, 0x9e, 0xce, 0xda, 0x42, 0xee, 0x8c, 0x6c, 0x5a, 0x7d, 0xdc, 0x89, 2218c2ecf20Sopenharmony_ci 0x02, 0x77, 0xdd, 0xe7, 0x95, 0xbb, 0xff, 0x0d, 0xa4, 0xb5, 0x38, 0x1e, 2228c2ecf20Sopenharmony_ci 0xaf, }, 2238c2ecf20Sopenharmony_ci { 0x9a, 0xf6, 0xb5, 0x9a, 0x4f, 0xa9, 0x4f, 0x2c, 0x35, 0x3c, 0x24, 0xdc, 2248c2ecf20Sopenharmony_ci 0x97, 0x6f, 0xd9, 0xa1, 0x7d, 0x1a, 0x85, 0x0b, 0xf5, 0xda, 0x2e, 0xe7, 2258c2ecf20Sopenharmony_ci 0xb1, 0x1d, }, 2268c2ecf20Sopenharmony_ci { 0x84, 0x1e, 0x8e, 0x3d, 0x45, 0xa5, 0xf2, 0x27, 0xf3, 0x31, 0xfe, 0xb9, 2278c2ecf20Sopenharmony_ci 0xfb, 0xc5, 0x45, 0x99, 0x99, 0xdd, 0x93, 0x43, 0x02, 0xee, 0x58, 0xaf, 2288c2ecf20Sopenharmony_ci 0xee, 0x6a, 0xbe, }, 2298c2ecf20Sopenharmony_ci { 0x07, 0x2f, 0xc0, 0xa2, 0x04, 0xc4, 0xab, 0x7c, 0x26, 0xbb, 0xa8, 0xd8, 2308c2ecf20Sopenharmony_ci 0xe3, 0x1c, 0x75, 0x15, 0x64, 0x5d, 0x02, 0x6a, 0xf0, 0x86, 0xe9, 0xcd, 2318c2ecf20Sopenharmony_ci 0x5c, 0xef, 0xa3, 0x25, }, 2328c2ecf20Sopenharmony_ci { 0x2f, 0x3b, 0x1f, 0xb5, 0x91, 0x8f, 0x86, 0xe0, 0xdc, 0x31, 0x48, 0xb6, 2338c2ecf20Sopenharmony_ci 0xa1, 0x8c, 0xfd, 0x75, 0xbb, 0x7d, 0x3d, 0xc1, 0xf0, 0x10, 0x9a, 0xd8, 2348c2ecf20Sopenharmony_ci 0x4b, 0x0e, 0xe3, 0x94, 0x9f, }, 2358c2ecf20Sopenharmony_ci { 0x29, 0xbb, 0x8f, 0x6c, 0xd1, 0xf2, 0xb6, 0xaf, 0xe5, 0xe3, 0x2d, 0xdc, 2368c2ecf20Sopenharmony_ci 0x6f, 0xa4, 0x53, 0x88, 0xd8, 0xcf, 0x4d, 0x45, 0x42, 0x62, 0xdb, 0xdf, 2378c2ecf20Sopenharmony_ci 0xf8, 0x45, 0xc2, 0x13, 0xec, 0x35, }, 2388c2ecf20Sopenharmony_ci { 0x06, 0x3c, 0xe3, 0x2c, 0x15, 0xc6, 0x43, 0x03, 0x81, 0xfb, 0x08, 0x76, 2398c2ecf20Sopenharmony_ci 0x33, 0xcb, 0x02, 0xc1, 0xba, 0x33, 0xe5, 0xe0, 0xd1, 0x92, 0xa8, 0x46, 2408c2ecf20Sopenharmony_ci 0x28, 0x3f, 0x3e, 0x9d, 0x2c, 0x44, 0x54, }, 2418c2ecf20Sopenharmony_ci { 0xea, 0xbb, 0x96, 0xf8, 0xd1, 0x8b, 0x04, 0x11, 0x40, 0x78, 0x42, 0x02, 2428c2ecf20Sopenharmony_ci 0x19, 0xd1, 0xbc, 0x65, 0x92, 0xd3, 0xc3, 0xd6, 0xd9, 0x19, 0xe7, 0xc3, 2438c2ecf20Sopenharmony_ci 0x40, 0x97, 0xbd, 0xd4, 0xed, 0xfa, 0x5e, 0x28, }, 2448c2ecf20Sopenharmony_ci { 0x02, }, 2458c2ecf20Sopenharmony_ci { 0x52, 0xa8, }, 2468c2ecf20Sopenharmony_ci { 0x38, 0x25, 0x0d, }, 2478c2ecf20Sopenharmony_ci { 0xe3, 0x04, 0xd4, 0x92, }, 2488c2ecf20Sopenharmony_ci { 0x97, 0xdb, 0xf7, 0x81, 0xca, }, 2498c2ecf20Sopenharmony_ci { 0x8a, 0x56, 0x9d, 0x62, 0x56, 0xcc, }, 2508c2ecf20Sopenharmony_ci { 0xa1, 0x8e, 0x3c, 0x72, 0x8f, 0x63, 0x03, }, 2518c2ecf20Sopenharmony_ci { 0xf7, 0xf3, 0x39, 0x09, 0x0a, 0xa1, 0xbb, 0x23, }, 2528c2ecf20Sopenharmony_ci { 0x6b, 0x03, 0xc0, 0xe9, 0xd9, 0x83, 0x05, 0x22, 0x01, }, 2538c2ecf20Sopenharmony_ci { 0x1b, 0x4b, 0xf5, 0xd6, 0x4f, 0x05, 0x75, 0x91, 0x4c, 0x7f, }, 2548c2ecf20Sopenharmony_ci { 0x4c, 0x8c, 0x25, 0x20, 0x21, 0xcb, 0xc2, 0x4b, 0x3a, 0x5b, 0x8d, }, 2558c2ecf20Sopenharmony_ci { 0x56, 0xe2, 0x77, 0xa0, 0xb6, 0x9f, 0x81, 0xec, 0x83, 0x75, 0xc4, 0xf9, }, 2568c2ecf20Sopenharmony_ci { 0x71, 0x70, 0x0f, 0xad, 0x4d, 0x35, 0x81, 0x9d, 0x88, 0x69, 0xf9, 0xaa, 2578c2ecf20Sopenharmony_ci 0xd3, }, 2588c2ecf20Sopenharmony_ci { 0x50, 0x6e, 0x86, 0x6e, 0x43, 0xc0, 0xc2, 0x44, 0xc2, 0xe2, 0xa0, 0x1c, 2598c2ecf20Sopenharmony_ci 0xb7, 0x9a, }, 2608c2ecf20Sopenharmony_ci { 0xe4, 0x7e, 0x72, 0xc6, 0x12, 0x8e, 0x7c, 0xfc, 0xbd, 0xe2, 0x08, 0x31, 2618c2ecf20Sopenharmony_ci 0x3d, 0x47, 0x3d, }, 2628c2ecf20Sopenharmony_ci { 0x08, 0x97, 0x5b, 0x80, 0xae, 0xc4, 0x1d, 0x50, 0x77, 0xdf, 0x1f, 0xd0, 2638c2ecf20Sopenharmony_ci 0x24, 0xf0, 0x17, 0xc0, }, 2648c2ecf20Sopenharmony_ci { 0x01, 0xb6, 0x29, 0xf4, 0xaf, 0x78, 0x5f, 0xb6, 0x91, 0xdd, 0x76, 0x76, 2658c2ecf20Sopenharmony_ci 0xd2, 0xfd, 0x0c, 0x47, 0x40, }, 2668c2ecf20Sopenharmony_ci { 0xa1, 0xd8, 0x09, 0x97, 0x7a, 0xa6, 0xc8, 0x94, 0xf6, 0x91, 0x7b, 0xae, 2678c2ecf20Sopenharmony_ci 0x2b, 0x9f, 0x0d, 0x83, 0x48, 0xf7, }, 2688c2ecf20Sopenharmony_ci { 0x12, 0xd5, 0x53, 0x7d, 0x9a, 0xb0, 0xbe, 0xd9, 0xed, 0xe9, 0x9e, 0xee, 2698c2ecf20Sopenharmony_ci 0x61, 0x5b, 0x42, 0xf2, 0xc0, 0x73, 0xc0, }, 2708c2ecf20Sopenharmony_ci { 0xd5, 0x77, 0xd6, 0x5c, 0x6e, 0xa5, 0x69, 0x2b, 0x3b, 0x8c, 0xd6, 0x7d, 2718c2ecf20Sopenharmony_ci 0x1d, 0xbe, 0x2c, 0xa1, 0x02, 0x21, 0xcd, 0x29, }, 2728c2ecf20Sopenharmony_ci { 0xa4, 0x98, 0x80, 0xca, 0x22, 0xcf, 0x6a, 0xab, 0x5e, 0x40, 0x0d, 0x61, 2738c2ecf20Sopenharmony_ci 0x08, 0x21, 0xef, 0xc0, 0x6c, 0x52, 0xb4, 0xb0, 0x53, }, 2748c2ecf20Sopenharmony_ci { 0xbf, 0xaf, 0x8f, 0x3b, 0x7a, 0x97, 0x33, 0xe5, 0xca, 0x07, 0x37, 0xfd, 2758c2ecf20Sopenharmony_ci 0x15, 0xdf, 0xce, 0x26, 0x2a, 0xb1, 0xa7, 0x0b, 0xb3, 0xac, }, 2768c2ecf20Sopenharmony_ci { 0x16, 0x22, 0xe1, 0xbc, 0x99, 0x4e, 0x01, 0xf0, 0xfa, 0xff, 0x8f, 0xa5, 2778c2ecf20Sopenharmony_ci 0x0c, 0x61, 0xb0, 0xad, 0xcc, 0xb1, 0xe1, 0x21, 0x46, 0xfa, 0x2e, }, 2788c2ecf20Sopenharmony_ci { 0x11, 0x5b, 0x0b, 0x2b, 0xe6, 0x14, 0xc1, 0xd5, 0x4d, 0x71, 0x5e, 0x17, 2798c2ecf20Sopenharmony_ci 0xea, 0x23, 0xdd, 0x6c, 0xbd, 0x1d, 0xbe, 0x12, 0x1b, 0xee, 0x4c, 0x1a, }, 2808c2ecf20Sopenharmony_ci { 0x40, 0x88, 0x22, 0xf3, 0x20, 0x6c, 0xed, 0xe1, 0x36, 0x34, 0x62, 0x2c, 2818c2ecf20Sopenharmony_ci 0x98, 0x83, 0x52, 0xe2, 0x25, 0xee, 0xe9, 0xf5, 0xe1, 0x17, 0xf0, 0x5c, 2828c2ecf20Sopenharmony_ci 0xae, }, 2838c2ecf20Sopenharmony_ci { 0xc3, 0x76, 0x37, 0xde, 0x95, 0x8c, 0xca, 0x2b, 0x0c, 0x23, 0xe7, 0xb5, 2848c2ecf20Sopenharmony_ci 0x38, 0x70, 0x61, 0xcc, 0xff, 0xd3, 0x95, 0x7b, 0xf3, 0xff, 0x1f, 0x9d, 2858c2ecf20Sopenharmony_ci 0x59, 0x00, }, 2868c2ecf20Sopenharmony_ci { 0x0c, 0x19, 0x52, 0x05, 0x22, 0x53, 0xcb, 0x48, 0xd7, 0x10, 0x0e, 0x7e, 2878c2ecf20Sopenharmony_ci 0x14, 0x69, 0xb5, 0xa2, 0x92, 0x43, 0xa3, 0x9e, 0x4b, 0x8f, 0x51, 0x2c, 2888c2ecf20Sopenharmony_ci 0x5a, 0x2c, 0x3b, }, 2898c2ecf20Sopenharmony_ci { 0xe1, 0x9d, 0x70, 0x70, 0x28, 0xec, 0x86, 0x40, 0x55, 0x33, 0x56, 0xda, 2908c2ecf20Sopenharmony_ci 0x88, 0xca, 0xee, 0xc8, 0x6a, 0x20, 0xb1, 0xe5, 0x3d, 0x57, 0xf8, 0x3c, 2918c2ecf20Sopenharmony_ci 0x10, 0x07, 0x2a, 0xc4, }, 2928c2ecf20Sopenharmony_ci { 0x0b, 0xae, 0xf1, 0xc4, 0x79, 0xee, 0x1b, 0x3d, 0x27, 0x35, 0x8d, 0x14, 2938c2ecf20Sopenharmony_ci 0xd6, 0xae, 0x4e, 0x3c, 0xe9, 0x53, 0x50, 0xb5, 0xcc, 0x0c, 0xf7, 0xdf, 2948c2ecf20Sopenharmony_ci 0xee, 0xa1, 0x74, 0xd6, 0x71, }, 2958c2ecf20Sopenharmony_ci { 0xe6, 0xa4, 0xf4, 0x99, 0x98, 0xb9, 0x80, 0xea, 0x96, 0x7f, 0x4f, 0x33, 2968c2ecf20Sopenharmony_ci 0xcf, 0x74, 0x25, 0x6f, 0x17, 0x6c, 0xbf, 0xf5, 0x5c, 0x38, 0xd0, 0xff, 2978c2ecf20Sopenharmony_ci 0x96, 0xcb, 0x13, 0xf9, 0xdf, 0xfd, }, 2988c2ecf20Sopenharmony_ci { 0xbe, 0x92, 0xeb, 0xba, 0x44, 0x2c, 0x24, 0x74, 0xd4, 0x03, 0x27, 0x3c, 2998c2ecf20Sopenharmony_ci 0x5d, 0x5b, 0x03, 0x30, 0x87, 0x63, 0x69, 0xe0, 0xb8, 0x94, 0xf4, 0x44, 3008c2ecf20Sopenharmony_ci 0x7e, 0xad, 0xcd, 0x20, 0x12, 0x16, 0x79, }, 3018c2ecf20Sopenharmony_ci { 0x30, 0xf1, 0xc4, 0x8e, 0x05, 0x90, 0x2a, 0x97, 0x63, 0x94, 0x46, 0xff, 3028c2ecf20Sopenharmony_ci 0xce, 0xd8, 0x67, 0xa7, 0xac, 0x33, 0x8c, 0x95, 0xb7, 0xcd, 0xa3, 0x23, 3038c2ecf20Sopenharmony_ci 0x98, 0x9d, 0x76, 0x6c, 0x9d, 0xa8, 0xd6, 0x8a, }, 3048c2ecf20Sopenharmony_ci { 0xbe, }, 3058c2ecf20Sopenharmony_ci { 0x17, 0x6c, }, 3068c2ecf20Sopenharmony_ci { 0x1a, 0x42, 0x4f, }, 3078c2ecf20Sopenharmony_ci { 0xba, 0xaf, 0xb7, 0x65, }, 3088c2ecf20Sopenharmony_ci { 0xc2, 0x63, 0x43, 0x6a, 0xea, }, 3098c2ecf20Sopenharmony_ci { 0xe4, 0x4d, 0xad, 0xf2, 0x0b, 0x02, }, 3108c2ecf20Sopenharmony_ci { 0x04, 0xc7, 0xc4, 0x7f, 0xa9, 0x2b, 0xce, }, 3118c2ecf20Sopenharmony_ci { 0x66, 0xf6, 0x67, 0xcb, 0x03, 0x53, 0xc8, 0xf1, }, 3128c2ecf20Sopenharmony_ci { 0x56, 0xa3, 0x60, 0x78, 0xc9, 0x5f, 0x70, 0x1b, 0x5e, }, 3138c2ecf20Sopenharmony_ci { 0x99, 0xff, 0x81, 0x7c, 0x13, 0x3c, 0x29, 0x79, 0x4b, 0x65, }, 3148c2ecf20Sopenharmony_ci { 0x51, 0x10, 0x50, 0x93, 0x01, 0x93, 0xb7, 0x01, 0xc9, 0x18, 0xb7, }, 3158c2ecf20Sopenharmony_ci { 0x8e, 0x3c, 0x42, 0x1e, 0x5e, 0x7d, 0xc1, 0x50, 0x70, 0x1f, 0x00, 0x98, }, 3168c2ecf20Sopenharmony_ci { 0x5f, 0xd9, 0x9b, 0xc8, 0xd7, 0xb2, 0x72, 0x62, 0x1a, 0x1e, 0xba, 0x92, 3178c2ecf20Sopenharmony_ci 0xe9, }, 3188c2ecf20Sopenharmony_ci { 0x70, 0x2b, 0xba, 0xfe, 0xad, 0x5d, 0x96, 0x3f, 0x27, 0xc2, 0x41, 0x6d, 3198c2ecf20Sopenharmony_ci 0xc4, 0xb3, }, 3208c2ecf20Sopenharmony_ci { 0xae, 0xe0, 0xd5, 0xd4, 0xc7, 0xae, 0x15, 0x5e, 0xdc, 0xdd, 0x33, 0x60, 3218c2ecf20Sopenharmony_ci 0xd7, 0xd3, 0x5e, }, 3228c2ecf20Sopenharmony_ci { 0x79, 0x8e, 0xbc, 0x9e, 0x20, 0xb9, 0x19, 0x4b, 0x63, 0x80, 0xf3, 0x16, 3238c2ecf20Sopenharmony_ci 0xaf, 0x39, 0xbd, 0x92, }, 3248c2ecf20Sopenharmony_ci { 0xc2, 0x0e, 0x85, 0xa0, 0x0b, 0x9a, 0xb0, 0xec, 0xde, 0x38, 0xd3, 0x10, 3258c2ecf20Sopenharmony_ci 0xd9, 0xa7, 0x66, 0x27, 0xcf, }, 3268c2ecf20Sopenharmony_ci { 0x0e, 0x3b, 0x75, 0x80, 0x67, 0x14, 0x0c, 0x02, 0x90, 0xd6, 0xb3, 0x02, 3278c2ecf20Sopenharmony_ci 0x81, 0xf6, 0xa6, 0x87, 0xce, 0x58, }, 3288c2ecf20Sopenharmony_ci { 0x79, 0xb5, 0xe9, 0x5d, 0x52, 0x4d, 0xf7, 0x59, 0xf4, 0x2e, 0x27, 0xdd, 3298c2ecf20Sopenharmony_ci 0xb3, 0xed, 0x57, 0x5b, 0x82, 0xea, 0x6f, }, 3308c2ecf20Sopenharmony_ci { 0xa2, 0x97, 0xf5, 0x80, 0x02, 0x3d, 0xde, 0xa3, 0xf9, 0xf6, 0xab, 0xe3, 3318c2ecf20Sopenharmony_ci 0x57, 0x63, 0x7b, 0x9b, 0x10, 0x42, 0x6f, 0xf2, }, 3328c2ecf20Sopenharmony_ci { 0x12, 0x7a, 0xfc, 0xb7, 0x67, 0x06, 0x0c, 0x78, 0x1a, 0xfe, 0x88, 0x4f, 3338c2ecf20Sopenharmony_ci 0xc6, 0xac, 0x52, 0x96, 0x64, 0x28, 0x97, 0x84, 0x06, }, 3348c2ecf20Sopenharmony_ci { 0xc5, 0x04, 0x44, 0x6b, 0xb2, 0xa5, 0xa4, 0x66, 0xe1, 0x76, 0xa2, 0x51, 3358c2ecf20Sopenharmony_ci 0xf9, 0x59, 0x69, 0x97, 0x56, 0x0b, 0xbf, 0x50, 0xb3, 0x34, }, 3368c2ecf20Sopenharmony_ci { 0x21, 0x32, 0x6b, 0x42, 0xb5, 0xed, 0x71, 0x8d, 0xf7, 0x5a, 0x35, 0xe3, 3378c2ecf20Sopenharmony_ci 0x90, 0xe2, 0xee, 0xaa, 0x89, 0xf6, 0xc9, 0x9c, 0x4d, 0x73, 0xf4, }, 3388c2ecf20Sopenharmony_ci { 0x4c, 0xa6, 0x09, 0xf4, 0x48, 0xe7, 0x46, 0xbc, 0x49, 0xfc, 0xe5, 0xda, 3398c2ecf20Sopenharmony_ci 0xd1, 0x87, 0x13, 0x17, 0x4c, 0x59, 0x71, 0x26, 0x5b, 0x2c, 0x42, 0xb7, }, 3408c2ecf20Sopenharmony_ci { 0x13, 0x63, 0xf3, 0x40, 0x02, 0xe5, 0xa3, 0x3a, 0x5e, 0x8e, 0xf8, 0xb6, 3418c2ecf20Sopenharmony_ci 0x8a, 0x49, 0x60, 0x76, 0x34, 0x72, 0x94, 0x73, 0xf6, 0xd9, 0x21, 0x6a, 3428c2ecf20Sopenharmony_ci 0x26, }, 3438c2ecf20Sopenharmony_ci { 0xdf, 0x75, 0x16, 0x10, 0x1b, 0x5e, 0x81, 0xc3, 0xc8, 0xde, 0x34, 0x24, 3448c2ecf20Sopenharmony_ci 0xb0, 0x98, 0xeb, 0x1b, 0x8f, 0xa1, 0x9b, 0x05, 0xee, 0xa5, 0xe9, 0x35, 3458c2ecf20Sopenharmony_ci 0xf4, 0x1d, }, 3468c2ecf20Sopenharmony_ci { 0xcd, 0x21, 0x93, 0x6e, 0x5b, 0xa0, 0x26, 0x2b, 0x21, 0x0e, 0xa0, 0xb9, 3478c2ecf20Sopenharmony_ci 0x1c, 0xb5, 0xbb, 0xb8, 0xf8, 0x1e, 0xff, 0x5c, 0xa8, 0xf9, 0x39, 0x46, 3488c2ecf20Sopenharmony_ci 0x4e, 0x29, 0x26, }, 3498c2ecf20Sopenharmony_ci { 0x73, 0x7f, 0x0e, 0x3b, 0x0b, 0x5c, 0xf9, 0x60, 0xaa, 0x88, 0xa1, 0x09, 3508c2ecf20Sopenharmony_ci 0xb1, 0x5d, 0x38, 0x7b, 0x86, 0x8f, 0x13, 0x7a, 0x8d, 0x72, 0x7a, 0x98, 3518c2ecf20Sopenharmony_ci 0x1a, 0x5b, 0xff, 0xc9, }, 3528c2ecf20Sopenharmony_ci { 0xd3, 0x3c, 0x61, 0x71, 0x44, 0x7e, 0x31, 0x74, 0x98, 0x9d, 0x9a, 0xd2, 3538c2ecf20Sopenharmony_ci 0x27, 0xf3, 0x46, 0x43, 0x42, 0x51, 0xd0, 0x5f, 0xe9, 0x1c, 0x5c, 0x69, 3548c2ecf20Sopenharmony_ci 0xbf, 0xf6, 0xbe, 0x3c, 0x40, }, 3558c2ecf20Sopenharmony_ci { 0x31, 0x99, 0x31, 0x9f, 0xaa, 0x43, 0x2e, 0x77, 0x3e, 0x74, 0x26, 0x31, 3568c2ecf20Sopenharmony_ci 0x5e, 0x61, 0xf1, 0x87, 0xe2, 0xeb, 0x9b, 0xcd, 0xd0, 0x3a, 0xee, 0x20, 3578c2ecf20Sopenharmony_ci 0x7e, 0x10, 0x0a, 0x0b, 0x7e, 0xfa, }, 3588c2ecf20Sopenharmony_ci { 0xa4, 0x27, 0x80, 0x67, 0x81, 0x2a, 0xa7, 0x62, 0xf7, 0x6e, 0xda, 0xd4, 3598c2ecf20Sopenharmony_ci 0x5c, 0x39, 0x74, 0xad, 0x7e, 0xbe, 0xad, 0xa5, 0x84, 0x7f, 0xa9, 0x30, 3608c2ecf20Sopenharmony_ci 0x5d, 0xdb, 0xe2, 0x05, 0x43, 0xf7, 0x1b, }, 3618c2ecf20Sopenharmony_ci { 0x0b, 0x37, 0xd8, 0x02, 0xe1, 0x83, 0xd6, 0x80, 0xf2, 0x35, 0xc2, 0xb0, 3628c2ecf20Sopenharmony_ci 0x37, 0xef, 0xef, 0x5e, 0x43, 0x93, 0xf0, 0x49, 0x45, 0x0a, 0xef, 0xb5, 3638c2ecf20Sopenharmony_ci 0x76, 0x70, 0x12, 0x44, 0xc4, 0xdb, 0xf5, 0x7a, }, 3648c2ecf20Sopenharmony_ci { 0x1f, }, 3658c2ecf20Sopenharmony_ci { 0x82, 0x60, }, 3668c2ecf20Sopenharmony_ci { 0xcc, 0xe3, 0x08, }, 3678c2ecf20Sopenharmony_ci { 0x56, 0x17, 0xe4, 0x59, }, 3688c2ecf20Sopenharmony_ci { 0xe2, 0xd7, 0x9e, 0xc4, 0x4c, }, 3698c2ecf20Sopenharmony_ci { 0xb2, 0xad, 0xd3, 0x78, 0x58, 0x5a, }, 3708c2ecf20Sopenharmony_ci { 0xce, 0x43, 0xb4, 0x02, 0x96, 0xab, 0x3c, }, 3718c2ecf20Sopenharmony_ci { 0xe6, 0x05, 0x1a, 0x73, 0x22, 0x32, 0xbb, 0x77, }, 3728c2ecf20Sopenharmony_ci { 0x23, 0xe7, 0xda, 0xfe, 0x2c, 0xef, 0x8c, 0x22, 0xec, }, 3738c2ecf20Sopenharmony_ci { 0xe9, 0x8e, 0x55, 0x38, 0xd1, 0xd7, 0x35, 0x23, 0x98, 0xc7, }, 3748c2ecf20Sopenharmony_ci { 0xb5, 0x81, 0x1a, 0xe5, 0xb5, 0xa5, 0xd9, 0x4d, 0xca, 0x41, 0xe7, }, 3758c2ecf20Sopenharmony_ci { 0x41, 0x16, 0x16, 0x95, 0x8d, 0x9e, 0x0c, 0xea, 0x8c, 0x71, 0x9a, 0xc1, }, 3768c2ecf20Sopenharmony_ci { 0x7c, 0x33, 0xc0, 0xa4, 0x00, 0x62, 0xea, 0x60, 0x67, 0xe4, 0x20, 0xbc, 3778c2ecf20Sopenharmony_ci 0x5b, }, 3788c2ecf20Sopenharmony_ci { 0xdb, 0xb1, 0xdc, 0xfd, 0x08, 0xc0, 0xde, 0x82, 0xd1, 0xde, 0x38, 0xc0, 3798c2ecf20Sopenharmony_ci 0x90, 0x48, }, 3808c2ecf20Sopenharmony_ci { 0x37, 0x18, 0x2e, 0x0d, 0x61, 0xaa, 0x61, 0xd7, 0x86, 0x20, 0x16, 0x60, 3818c2ecf20Sopenharmony_ci 0x04, 0xd9, 0xd5, }, 3828c2ecf20Sopenharmony_ci { 0xb0, 0xcf, 0x2c, 0x4c, 0x5e, 0x5b, 0x4f, 0x2a, 0x23, 0x25, 0x58, 0x47, 3838c2ecf20Sopenharmony_ci 0xe5, 0x31, 0x06, 0x70, }, 3848c2ecf20Sopenharmony_ci { 0x91, 0xa0, 0xa3, 0x86, 0x4e, 0xe0, 0x72, 0x38, 0x06, 0x67, 0x59, 0x5c, 3858c2ecf20Sopenharmony_ci 0x70, 0x25, 0xdb, 0x33, 0x27, }, 3868c2ecf20Sopenharmony_ci { 0x44, 0x58, 0x66, 0xb8, 0x58, 0xc7, 0x13, 0xed, 0x4c, 0xc0, 0xf4, 0x9a, 3878c2ecf20Sopenharmony_ci 0x1e, 0x67, 0x75, 0x33, 0xb6, 0xb8, }, 3888c2ecf20Sopenharmony_ci { 0x7f, 0x98, 0x4a, 0x8e, 0x50, 0xa2, 0x5c, 0xcd, 0x59, 0xde, 0x72, 0xb3, 3898c2ecf20Sopenharmony_ci 0x9d, 0xc3, 0x09, 0x8a, 0xab, 0x56, 0xf1, }, 3908c2ecf20Sopenharmony_ci { 0x80, 0x96, 0x49, 0x1a, 0x59, 0xa2, 0xc5, 0xd5, 0xa7, 0x20, 0x8a, 0xb7, 3918c2ecf20Sopenharmony_ci 0x27, 0x62, 0x84, 0x43, 0xc6, 0xe1, 0x1b, 0x5d, }, 3928c2ecf20Sopenharmony_ci { 0x6b, 0xb7, 0x2b, 0x26, 0x62, 0x14, 0x70, 0x19, 0x3d, 0x4d, 0xac, 0xac, 3938c2ecf20Sopenharmony_ci 0x63, 0x58, 0x5e, 0x94, 0xb5, 0xb7, 0xe8, 0xe8, 0xa2, }, 3948c2ecf20Sopenharmony_ci { 0x20, 0xa8, 0xc0, 0xfd, 0x63, 0x3d, 0x6e, 0x98, 0xcf, 0x0c, 0x49, 0x98, 3958c2ecf20Sopenharmony_ci 0xe4, 0x5a, 0xfe, 0x8c, 0xaa, 0x70, 0x82, 0x1c, 0x7b, 0x74, }, 3968c2ecf20Sopenharmony_ci { 0xc8, 0xe8, 0xdd, 0xdf, 0x69, 0x30, 0x01, 0xc2, 0x0f, 0x7e, 0x2f, 0x11, 3978c2ecf20Sopenharmony_ci 0xcc, 0x3e, 0x17, 0xa5, 0x69, 0x40, 0x3f, 0x0e, 0x79, 0x7f, 0xcf, }, 3988c2ecf20Sopenharmony_ci { 0xdb, 0x61, 0xc0, 0xe2, 0x2e, 0x49, 0x07, 0x31, 0x1d, 0x91, 0x42, 0x8a, 3998c2ecf20Sopenharmony_ci 0xfc, 0x5e, 0xd3, 0xf8, 0x56, 0x1f, 0x2b, 0x73, 0xfd, 0x9f, 0xb2, 0x8e, }, 4008c2ecf20Sopenharmony_ci { 0x0c, 0x89, 0x55, 0x0c, 0x1f, 0x59, 0x2c, 0x9d, 0x1b, 0x29, 0x1d, 0x41, 4018c2ecf20Sopenharmony_ci 0x1d, 0xe6, 0x47, 0x8f, 0x8c, 0x2b, 0xea, 0x8f, 0xf0, 0xff, 0x21, 0x70, 4028c2ecf20Sopenharmony_ci 0x88, }, 4038c2ecf20Sopenharmony_ci { 0x12, 0x18, 0x95, 0xa6, 0x59, 0xb1, 0x31, 0x24, 0x45, 0x67, 0x55, 0xa4, 4048c2ecf20Sopenharmony_ci 0x1a, 0x2d, 0x48, 0x67, 0x1b, 0x43, 0x88, 0x2d, 0x8e, 0xa0, 0x70, 0xb3, 4058c2ecf20Sopenharmony_ci 0xc6, 0xbb, }, 4068c2ecf20Sopenharmony_ci { 0xe7, 0xb1, 0x1d, 0xb2, 0x76, 0x4d, 0x68, 0x68, 0x68, 0x23, 0x02, 0x55, 4078c2ecf20Sopenharmony_ci 0x3a, 0xe2, 0xe5, 0xd5, 0x4b, 0x43, 0xf9, 0x34, 0x77, 0x5c, 0xa1, 0xf5, 4088c2ecf20Sopenharmony_ci 0x55, 0xfd, 0x4f, }, 4098c2ecf20Sopenharmony_ci { 0x8c, 0x87, 0x5a, 0x08, 0x3a, 0x73, 0xad, 0x61, 0xe1, 0xe7, 0x99, 0x7e, 4108c2ecf20Sopenharmony_ci 0xf0, 0x5d, 0xe9, 0x5d, 0x16, 0x43, 0x80, 0x2f, 0xd0, 0x66, 0x34, 0xe2, 4118c2ecf20Sopenharmony_ci 0x42, 0x64, 0x3b, 0x1a, }, 4128c2ecf20Sopenharmony_ci { 0x39, 0xc1, 0x99, 0xcf, 0x22, 0xbf, 0x16, 0x8f, 0x9f, 0x80, 0x7f, 0x95, 4138c2ecf20Sopenharmony_ci 0x0a, 0x05, 0x67, 0x27, 0xe7, 0x15, 0xdf, 0x9d, 0xb2, 0xfe, 0x1c, 0xb5, 4148c2ecf20Sopenharmony_ci 0x1d, 0x60, 0x8f, 0x8a, 0x1d, }, 4158c2ecf20Sopenharmony_ci { 0x9b, 0x6e, 0x08, 0x09, 0x06, 0x73, 0xab, 0x68, 0x02, 0x62, 0x1a, 0xe4, 4168c2ecf20Sopenharmony_ci 0xd4, 0xdf, 0xc7, 0x02, 0x4c, 0x6a, 0x5f, 0xfd, 0x23, 0xac, 0xae, 0x6d, 4178c2ecf20Sopenharmony_ci 0x43, 0xa4, 0x7a, 0x50, 0x60, 0x3c, }, 4188c2ecf20Sopenharmony_ci { 0x1d, 0xb4, 0xc6, 0xe1, 0xb1, 0x4b, 0xe3, 0xf2, 0xe2, 0x1a, 0x73, 0x1b, 4198c2ecf20Sopenharmony_ci 0xa0, 0x92, 0xa7, 0xf5, 0xff, 0x8f, 0x8b, 0x5d, 0xdf, 0xa8, 0x04, 0xb3, 4208c2ecf20Sopenharmony_ci 0xb0, 0xf7, 0xcc, 0x12, 0xfa, 0x35, 0x46, }, 4218c2ecf20Sopenharmony_ci { 0x49, 0x45, 0x97, 0x11, 0x0f, 0x1c, 0x60, 0x8e, 0xe8, 0x47, 0x30, 0xcf, 4228c2ecf20Sopenharmony_ci 0x60, 0xa8, 0x71, 0xc5, 0x1b, 0xe9, 0x39, 0x4d, 0x49, 0xb6, 0x12, 0x1f, 4238c2ecf20Sopenharmony_ci 0x24, 0xab, 0x37, 0xff, 0x83, 0xc2, 0xe1, 0x3a, }, 4248c2ecf20Sopenharmony_ci { 0x60, }, 4258c2ecf20Sopenharmony_ci { 0x24, 0x26, }, 4268c2ecf20Sopenharmony_ci { 0x47, 0xeb, 0xc9, }, 4278c2ecf20Sopenharmony_ci { 0x4a, 0xd0, 0xbc, 0xf0, }, 4288c2ecf20Sopenharmony_ci { 0x8e, 0x2b, 0xc9, 0x85, 0x3c, }, 4298c2ecf20Sopenharmony_ci { 0xa2, 0x07, 0x15, 0xb8, 0x12, 0x74, }, 4308c2ecf20Sopenharmony_ci { 0x0f, 0xdb, 0x5b, 0x33, 0x69, 0xfe, 0x4b, }, 4318c2ecf20Sopenharmony_ci { 0xa2, 0x86, 0x54, 0xf4, 0xfd, 0xb2, 0xd4, 0xe6, }, 4328c2ecf20Sopenharmony_ci { 0xbb, 0x84, 0x78, 0x49, 0x27, 0x8e, 0x61, 0xda, 0x60, }, 4338c2ecf20Sopenharmony_ci { 0x04, 0xc3, 0xcd, 0xaa, 0x8f, 0xa7, 0x03, 0xc9, 0xf9, 0xb6, }, 4348c2ecf20Sopenharmony_ci { 0xf8, 0x27, 0x1d, 0x61, 0xdc, 0x21, 0x42, 0xdd, 0xad, 0x92, 0x40, }, 4358c2ecf20Sopenharmony_ci { 0x12, 0x87, 0xdf, 0xc2, 0x41, 0x45, 0x5a, 0x36, 0x48, 0x5b, 0x51, 0x2b, }, 4368c2ecf20Sopenharmony_ci { 0xbb, 0x37, 0x5d, 0x1f, 0xf1, 0x68, 0x7a, 0xc4, 0xa5, 0xd2, 0xa4, 0x91, 4378c2ecf20Sopenharmony_ci 0x8d, }, 4388c2ecf20Sopenharmony_ci { 0x5b, 0x27, 0xd1, 0x04, 0x54, 0x52, 0x9f, 0xa3, 0x47, 0x86, 0x33, 0x33, 4398c2ecf20Sopenharmony_ci 0xbf, 0xa0, }, 4408c2ecf20Sopenharmony_ci { 0xcf, 0x04, 0xea, 0xf8, 0x03, 0x2a, 0x43, 0xff, 0xa6, 0x68, 0x21, 0x4c, 4418c2ecf20Sopenharmony_ci 0xd5, 0x4b, 0xed, }, 4428c2ecf20Sopenharmony_ci { 0xaf, 0xb8, 0xbc, 0x63, 0x0f, 0x18, 0x4d, 0xe2, 0x7a, 0xdd, 0x46, 0x44, 4438c2ecf20Sopenharmony_ci 0xc8, 0x24, 0x0a, 0xb7, }, 4448c2ecf20Sopenharmony_ci { 0x3e, 0xdc, 0x36, 0xe4, 0x89, 0xb1, 0xfa, 0xc6, 0x40, 0x93, 0x2e, 0x75, 4458c2ecf20Sopenharmony_ci 0xb2, 0x15, 0xd1, 0xb1, 0x10, }, 4468c2ecf20Sopenharmony_ci { 0x6c, 0xd8, 0x20, 0x3b, 0x82, 0x79, 0xf9, 0xc8, 0xbc, 0x9d, 0xe0, 0x35, 4478c2ecf20Sopenharmony_ci 0xbe, 0x1b, 0x49, 0x1a, 0xbc, 0x3a, }, 4488c2ecf20Sopenharmony_ci { 0x78, 0x65, 0x2c, 0xbe, 0x35, 0x67, 0xdc, 0x78, 0xd4, 0x41, 0xf6, 0xc9, 4498c2ecf20Sopenharmony_ci 0xde, 0xde, 0x1f, 0x18, 0x13, 0x31, 0x11, }, 4508c2ecf20Sopenharmony_ci { 0x8a, 0x7f, 0xb1, 0x33, 0x8f, 0x0c, 0x3c, 0x0a, 0x06, 0x61, 0xf0, 0x47, 4518c2ecf20Sopenharmony_ci 0x29, 0x1b, 0x29, 0xbc, 0x1c, 0x47, 0xef, 0x7a, }, 4528c2ecf20Sopenharmony_ci { 0x65, 0x91, 0xf1, 0xe6, 0xb3, 0x96, 0xd3, 0x8c, 0xc2, 0x4a, 0x59, 0x35, 4538c2ecf20Sopenharmony_ci 0x72, 0x8e, 0x0b, 0x9a, 0x87, 0xca, 0x34, 0x7b, 0x63, }, 4548c2ecf20Sopenharmony_ci { 0x5f, 0x08, 0x87, 0x80, 0x56, 0x25, 0x89, 0x77, 0x61, 0x8c, 0x64, 0xa1, 4558c2ecf20Sopenharmony_ci 0x59, 0x6d, 0x59, 0x62, 0xe8, 0x4a, 0xc8, 0x58, 0x99, 0xd1, }, 4568c2ecf20Sopenharmony_ci { 0x23, 0x87, 0x1d, 0xed, 0x6f, 0xf2, 0x91, 0x90, 0xe2, 0xfe, 0x43, 0x21, 4578c2ecf20Sopenharmony_ci 0xaf, 0x97, 0xc6, 0xbc, 0xd7, 0x15, 0xc7, 0x2d, 0x08, 0x77, 0x91, }, 4588c2ecf20Sopenharmony_ci { 0x90, 0x47, 0x9a, 0x9e, 0x3a, 0xdf, 0xf3, 0xc9, 0x4c, 0x1e, 0xa7, 0xd4, 4598c2ecf20Sopenharmony_ci 0x6a, 0x32, 0x90, 0xfe, 0xb7, 0xb6, 0x7b, 0xfa, 0x96, 0x61, 0xfb, 0xa4, }, 4608c2ecf20Sopenharmony_ci { 0xb1, 0x67, 0x60, 0x45, 0xb0, 0x96, 0xc5, 0x15, 0x9f, 0x4d, 0x26, 0xd7, 4618c2ecf20Sopenharmony_ci 0x9d, 0xf1, 0xf5, 0x6d, 0x21, 0x00, 0x94, 0x31, 0x64, 0x94, 0xd3, 0xa7, 4628c2ecf20Sopenharmony_ci 0xd3, }, 4638c2ecf20Sopenharmony_ci { 0x02, 0x3e, 0xaf, 0xf3, 0x79, 0x73, 0xa5, 0xf5, 0xcc, 0x7a, 0x7f, 0xfb, 4648c2ecf20Sopenharmony_ci 0x79, 0x2b, 0x85, 0x8c, 0x88, 0x72, 0x06, 0xbe, 0xfe, 0xaf, 0xc1, 0x16, 4658c2ecf20Sopenharmony_ci 0xa6, 0xd6, }, 4668c2ecf20Sopenharmony_ci { 0x2a, 0xb0, 0x1a, 0xe5, 0xaa, 0x6e, 0xb3, 0xae, 0x53, 0x85, 0x33, 0x80, 4678c2ecf20Sopenharmony_ci 0x75, 0xae, 0x30, 0xe6, 0xb8, 0x72, 0x42, 0xf6, 0x25, 0x4f, 0x38, 0x88, 4688c2ecf20Sopenharmony_ci 0x55, 0xd1, 0xa9, }, 4698c2ecf20Sopenharmony_ci { 0x90, 0xd8, 0x0c, 0xc0, 0x93, 0x4b, 0x4f, 0x9e, 0x65, 0x6c, 0xa1, 0x54, 4708c2ecf20Sopenharmony_ci 0xa6, 0xf6, 0x6e, 0xca, 0xd2, 0xbb, 0x7e, 0x6a, 0x1c, 0xd3, 0xce, 0x46, 4718c2ecf20Sopenharmony_ci 0xef, 0xb0, 0x00, 0x8d, }, 4728c2ecf20Sopenharmony_ci { 0xed, 0x9c, 0x49, 0xcd, 0xc2, 0xde, 0x38, 0x0e, 0xe9, 0x98, 0x6c, 0xc8, 4738c2ecf20Sopenharmony_ci 0x90, 0x9e, 0x3c, 0xd4, 0xd3, 0xeb, 0x88, 0x32, 0xc7, 0x28, 0xe3, 0x94, 4748c2ecf20Sopenharmony_ci 0x1c, 0x9f, 0x8b, 0xf3, 0xcb, }, 4758c2ecf20Sopenharmony_ci { 0xac, 0xe7, 0x92, 0x16, 0xb4, 0x14, 0xa0, 0xe4, 0x04, 0x79, 0xa2, 0xf4, 4768c2ecf20Sopenharmony_ci 0x31, 0xe6, 0x0c, 0x26, 0xdc, 0xbf, 0x2f, 0x69, 0x1b, 0x55, 0x94, 0x67, 4778c2ecf20Sopenharmony_ci 0xda, 0x0c, 0xd7, 0x32, 0x1f, 0xef, }, 4788c2ecf20Sopenharmony_ci { 0x68, 0x63, 0x85, 0x57, 0x95, 0x9e, 0x42, 0x27, 0x41, 0x43, 0x42, 0x02, 4798c2ecf20Sopenharmony_ci 0xa5, 0x78, 0xa7, 0xc6, 0x43, 0xc1, 0x6a, 0xba, 0x70, 0x80, 0xcd, 0x04, 4808c2ecf20Sopenharmony_ci 0xb6, 0x78, 0x76, 0x29, 0xf3, 0xe8, 0xa0, }, 4818c2ecf20Sopenharmony_ci { 0xe6, 0xac, 0x8d, 0x9d, 0xf0, 0xc0, 0xf7, 0xf7, 0xe3, 0x3e, 0x4e, 0x28, 4828c2ecf20Sopenharmony_ci 0x0f, 0x59, 0xb2, 0x67, 0x9e, 0x84, 0x34, 0x42, 0x96, 0x30, 0x2b, 0xca, 4838c2ecf20Sopenharmony_ci 0x49, 0xb6, 0xc5, 0x9a, 0x84, 0x59, 0xa7, 0x81, }, 4848c2ecf20Sopenharmony_ci { 0x7e, }, 4858c2ecf20Sopenharmony_ci { 0x1e, 0x21, }, 4868c2ecf20Sopenharmony_ci { 0x26, 0xd3, 0xdd, }, 4878c2ecf20Sopenharmony_ci { 0x2c, 0xd4, 0xb3, 0x3d, }, 4888c2ecf20Sopenharmony_ci { 0x86, 0x7b, 0x76, 0x3c, 0xf0, }, 4898c2ecf20Sopenharmony_ci { 0x12, 0xc3, 0x70, 0x1d, 0x55, 0x18, }, 4908c2ecf20Sopenharmony_ci { 0x96, 0xc2, 0xbd, 0x61, 0x55, 0xf4, 0x24, }, 4918c2ecf20Sopenharmony_ci { 0x20, 0x51, 0xf7, 0x86, 0x58, 0x8f, 0x07, 0x2a, }, 4928c2ecf20Sopenharmony_ci { 0x93, 0x15, 0xa8, 0x1d, 0xda, 0x97, 0xee, 0x0e, 0x6c, }, 4938c2ecf20Sopenharmony_ci { 0x39, 0x93, 0xdf, 0xd5, 0x0e, 0xca, 0xdc, 0x7a, 0x92, 0xce, }, 4948c2ecf20Sopenharmony_ci { 0x60, 0xd5, 0xfd, 0xf5, 0x1b, 0x26, 0x82, 0x26, 0x73, 0x02, 0xbc, }, 4958c2ecf20Sopenharmony_ci { 0x98, 0xf2, 0x34, 0xe1, 0xf5, 0xfb, 0x00, 0xac, 0x10, 0x4a, 0x38, 0x9f, }, 4968c2ecf20Sopenharmony_ci { 0xda, 0x3a, 0x92, 0x8a, 0xd0, 0xcd, 0x12, 0xcd, 0x15, 0xbb, 0xab, 0x77, 4978c2ecf20Sopenharmony_ci 0x66, }, 4988c2ecf20Sopenharmony_ci { 0xa2, 0x92, 0x1a, 0xe5, 0xca, 0x0c, 0x30, 0x75, 0xeb, 0xaf, 0x00, 0x31, 4998c2ecf20Sopenharmony_ci 0x55, 0x66, }, 5008c2ecf20Sopenharmony_ci { 0x06, 0xea, 0xfd, 0x3e, 0x86, 0x38, 0x62, 0x4e, 0xa9, 0x12, 0xa4, 0x12, 5018c2ecf20Sopenharmony_ci 0x43, 0xbf, 0xa1, }, 5028c2ecf20Sopenharmony_ci { 0xe4, 0x71, 0x7b, 0x94, 0xdb, 0xa0, 0xd2, 0xff, 0x9b, 0xeb, 0xad, 0x8e, 5038c2ecf20Sopenharmony_ci 0x95, 0x8a, 0xc5, 0xed, }, 5048c2ecf20Sopenharmony_ci { 0x25, 0x5a, 0x77, 0x71, 0x41, 0x0e, 0x7a, 0xe9, 0xed, 0x0c, 0x10, 0xef, 5058c2ecf20Sopenharmony_ci 0xf6, 0x2b, 0x3a, 0xba, 0x60, }, 5068c2ecf20Sopenharmony_ci { 0xee, 0xe2, 0xa3, 0x67, 0x64, 0x1d, 0xc6, 0x04, 0xc4, 0xe1, 0x68, 0xd2, 5078c2ecf20Sopenharmony_ci 0x6e, 0xd2, 0x91, 0x75, 0x53, 0x07, }, 5088c2ecf20Sopenharmony_ci { 0xe0, 0xf6, 0x4d, 0x8f, 0x68, 0xfc, 0x06, 0x7e, 0x18, 0x79, 0x7f, 0x2b, 5098c2ecf20Sopenharmony_ci 0x6d, 0xef, 0x46, 0x7f, 0xab, 0xb2, 0xad, }, 5108c2ecf20Sopenharmony_ci { 0x3d, 0x35, 0x88, 0x9f, 0x2e, 0xcf, 0x96, 0x45, 0x07, 0x60, 0x71, 0x94, 5118c2ecf20Sopenharmony_ci 0x00, 0x8d, 0xbf, 0xf4, 0xef, 0x46, 0x2e, 0x3c, }, 5128c2ecf20Sopenharmony_ci { 0x43, 0xcf, 0x98, 0xf7, 0x2d, 0xf4, 0x17, 0xe7, 0x8c, 0x05, 0x2d, 0x9b, 5138c2ecf20Sopenharmony_ci 0x24, 0xfb, 0x4d, 0xea, 0x4a, 0xec, 0x01, 0x25, 0x29, }, 5148c2ecf20Sopenharmony_ci { 0x8e, 0x73, 0x9a, 0x78, 0x11, 0xfe, 0x48, 0xa0, 0x3b, 0x1a, 0x26, 0xdf, 5158c2ecf20Sopenharmony_ci 0x25, 0xe9, 0x59, 0x1c, 0x70, 0x07, 0x9f, 0xdc, 0xa0, 0xa6, }, 5168c2ecf20Sopenharmony_ci { 0xe8, 0x47, 0x71, 0xc7, 0x3e, 0xdf, 0xb5, 0x13, 0xb9, 0x85, 0x13, 0xa8, 5178c2ecf20Sopenharmony_ci 0x54, 0x47, 0x6e, 0x59, 0x96, 0x09, 0x13, 0x5f, 0x82, 0x16, 0x0b, }, 5188c2ecf20Sopenharmony_ci { 0xfb, 0xc0, 0x8c, 0x03, 0x21, 0xb3, 0xc4, 0xb5, 0x43, 0x32, 0x6c, 0xea, 5198c2ecf20Sopenharmony_ci 0x7f, 0xa8, 0x43, 0x91, 0xe8, 0x4e, 0x3f, 0xbf, 0x45, 0x58, 0x6a, 0xa3, }, 5208c2ecf20Sopenharmony_ci { 0x55, 0xf8, 0xf3, 0x00, 0x76, 0x09, 0xef, 0x69, 0x5d, 0xd2, 0x8a, 0xf2, 5218c2ecf20Sopenharmony_ci 0x65, 0xc3, 0xcb, 0x9b, 0x43, 0xfd, 0xb1, 0x7e, 0x7f, 0xa1, 0x94, 0xb0, 5228c2ecf20Sopenharmony_ci 0xd7, }, 5238c2ecf20Sopenharmony_ci { 0xaa, 0x13, 0xc1, 0x51, 0x40, 0x6d, 0x8d, 0x4c, 0x0a, 0x95, 0x64, 0x7b, 5248c2ecf20Sopenharmony_ci 0xd1, 0x96, 0xb6, 0x56, 0xb4, 0x5b, 0xcf, 0xd6, 0xd9, 0x15, 0x97, 0xdd, 5258c2ecf20Sopenharmony_ci 0xb6, 0xef, }, 5268c2ecf20Sopenharmony_ci { 0xaf, 0xb7, 0x36, 0xb0, 0x04, 0xdb, 0xd7, 0x9c, 0x9a, 0x44, 0xc4, 0xf6, 5278c2ecf20Sopenharmony_ci 0x1f, 0x12, 0x21, 0x2d, 0x59, 0x30, 0x54, 0xab, 0x27, 0x61, 0xa3, 0x57, 5288c2ecf20Sopenharmony_ci 0xef, 0xf8, 0x53, }, 5298c2ecf20Sopenharmony_ci { 0x97, 0x34, 0x45, 0x3e, 0xce, 0x7c, 0x35, 0xa2, 0xda, 0x9f, 0x4b, 0x46, 5308c2ecf20Sopenharmony_ci 0x6c, 0x11, 0x67, 0xff, 0x2f, 0x76, 0x58, 0x15, 0x71, 0xfa, 0x44, 0x89, 5318c2ecf20Sopenharmony_ci 0x89, 0xfd, 0xf7, 0x99, }, 5328c2ecf20Sopenharmony_ci { 0x1f, 0xb1, 0x62, 0xeb, 0x83, 0xc5, 0x9c, 0x89, 0xf9, 0x2c, 0xd2, 0x03, 5338c2ecf20Sopenharmony_ci 0x61, 0xbc, 0xbb, 0xa5, 0x74, 0x0e, 0x9b, 0x7e, 0x82, 0x3e, 0x70, 0x0a, 5348c2ecf20Sopenharmony_ci 0xa9, 0x8f, 0x2b, 0x59, 0xfb, }, 5358c2ecf20Sopenharmony_ci { 0xf8, 0xca, 0x5e, 0x3a, 0x4f, 0x9e, 0x10, 0x69, 0x10, 0xd5, 0x4c, 0xeb, 5368c2ecf20Sopenharmony_ci 0x1a, 0x0f, 0x3c, 0x6a, 0x98, 0xf5, 0xb0, 0x97, 0x5b, 0x37, 0x2f, 0x0d, 5378c2ecf20Sopenharmony_ci 0xbd, 0x42, 0x4b, 0x69, 0xa1, 0x82, }, 5388c2ecf20Sopenharmony_ci { 0x12, 0x8c, 0x6d, 0x52, 0x08, 0xef, 0x74, 0xb2, 0xe6, 0xaa, 0xd3, 0xb0, 5398c2ecf20Sopenharmony_ci 0x26, 0xb0, 0xd9, 0x94, 0xb6, 0x11, 0x45, 0x0e, 0x36, 0x71, 0x14, 0x2d, 5408c2ecf20Sopenharmony_ci 0x41, 0x8c, 0x21, 0x53, 0x31, 0xe9, 0x68, }, 5418c2ecf20Sopenharmony_ci { 0xee, 0xea, 0x0d, 0x89, 0x47, 0x7e, 0x72, 0xd1, 0xd8, 0xce, 0x58, 0x4c, 5428c2ecf20Sopenharmony_ci 0x94, 0x1f, 0x0d, 0x51, 0x08, 0xa3, 0xb6, 0x3d, 0xe7, 0x82, 0x46, 0x92, 5438c2ecf20Sopenharmony_ci 0xd6, 0x98, 0x6b, 0x07, 0x10, 0x65, 0x52, 0x65, }, 5448c2ecf20Sopenharmony_ci}; 5458c2ecf20Sopenharmony_ci 5468c2ecf20Sopenharmony_cibool __init blake2s_selftest(void) 5478c2ecf20Sopenharmony_ci{ 5488c2ecf20Sopenharmony_ci u8 key[BLAKE2S_KEY_SIZE]; 5498c2ecf20Sopenharmony_ci u8 buf[ARRAY_SIZE(blake2s_testvecs)]; 5508c2ecf20Sopenharmony_ci u8 hash[BLAKE2S_HASH_SIZE]; 5518c2ecf20Sopenharmony_ci struct blake2s_state state; 5528c2ecf20Sopenharmony_ci bool success = true; 5538c2ecf20Sopenharmony_ci int i, l; 5548c2ecf20Sopenharmony_ci 5558c2ecf20Sopenharmony_ci key[0] = key[1] = 1; 5568c2ecf20Sopenharmony_ci for (i = 2; i < sizeof(key); ++i) 5578c2ecf20Sopenharmony_ci key[i] = key[i - 2] + key[i - 1]; 5588c2ecf20Sopenharmony_ci 5598c2ecf20Sopenharmony_ci for (i = 0; i < sizeof(buf); ++i) 5608c2ecf20Sopenharmony_ci buf[i] = (u8)i; 5618c2ecf20Sopenharmony_ci 5628c2ecf20Sopenharmony_ci for (i = l = 0; i < ARRAY_SIZE(blake2s_testvecs); l = (l + 37) % ++i) { 5638c2ecf20Sopenharmony_ci int outlen = 1 + i % BLAKE2S_HASH_SIZE; 5648c2ecf20Sopenharmony_ci int keylen = (13 * i) % (BLAKE2S_KEY_SIZE + 1); 5658c2ecf20Sopenharmony_ci 5668c2ecf20Sopenharmony_ci blake2s(hash, buf, key + BLAKE2S_KEY_SIZE - keylen, outlen, i, 5678c2ecf20Sopenharmony_ci keylen); 5688c2ecf20Sopenharmony_ci if (memcmp(hash, blake2s_testvecs[i], outlen)) { 5698c2ecf20Sopenharmony_ci pr_err("blake2s self-test %d: FAIL\n", i + 1); 5708c2ecf20Sopenharmony_ci success = false; 5718c2ecf20Sopenharmony_ci } 5728c2ecf20Sopenharmony_ci 5738c2ecf20Sopenharmony_ci if (!keylen) 5748c2ecf20Sopenharmony_ci blake2s_init(&state, outlen); 5758c2ecf20Sopenharmony_ci else 5768c2ecf20Sopenharmony_ci blake2s_init_key(&state, outlen, 5778c2ecf20Sopenharmony_ci key + BLAKE2S_KEY_SIZE - keylen, 5788c2ecf20Sopenharmony_ci keylen); 5798c2ecf20Sopenharmony_ci 5808c2ecf20Sopenharmony_ci blake2s_update(&state, buf, l); 5818c2ecf20Sopenharmony_ci blake2s_update(&state, buf + l, i - l); 5828c2ecf20Sopenharmony_ci blake2s_final(&state, hash); 5838c2ecf20Sopenharmony_ci if (memcmp(hash, blake2s_testvecs[i], outlen)) { 5848c2ecf20Sopenharmony_ci pr_err("blake2s init/update/final self-test %d: FAIL\n", 5858c2ecf20Sopenharmony_ci i + 1); 5868c2ecf20Sopenharmony_ci success = false; 5878c2ecf20Sopenharmony_ci } 5888c2ecf20Sopenharmony_ci } 5898c2ecf20Sopenharmony_ci 5908c2ecf20Sopenharmony_ci return success; 5918c2ecf20Sopenharmony_ci} 592