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/chacha20poly1305.h>
78c2ecf20Sopenharmony_ci#include <crypto/chacha.h>
88c2ecf20Sopenharmony_ci#include <crypto/poly1305.h>
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci#include <asm/unaligned.h>
118c2ecf20Sopenharmony_ci#include <linux/bug.h>
128c2ecf20Sopenharmony_ci#include <linux/init.h>
138c2ecf20Sopenharmony_ci#include <linux/mm.h>
148c2ecf20Sopenharmony_ci#include <linux/kernel.h>
158c2ecf20Sopenharmony_ci#include <linux/slab.h>
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_cistruct chacha20poly1305_testvec {
188c2ecf20Sopenharmony_ci	const u8 *input, *output, *assoc, *nonce, *key;
198c2ecf20Sopenharmony_ci	size_t ilen, alen, nlen;
208c2ecf20Sopenharmony_ci	bool failure;
218c2ecf20Sopenharmony_ci};
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci/* The first of these are the ChaCha20-Poly1305 AEAD test vectors from RFC7539
248c2ecf20Sopenharmony_ci * 2.8.2. After they are generated by reference implementations. And the final
258c2ecf20Sopenharmony_ci * marked ones are taken from wycheproof, but we only do these for the encrypt
268c2ecf20Sopenharmony_ci * side, because mostly we're stressing the primitives rather than the actual
278c2ecf20Sopenharmony_ci * chapoly construction.
288c2ecf20Sopenharmony_ci */
298c2ecf20Sopenharmony_ci
308c2ecf20Sopenharmony_cistatic const u8 enc_input001[] __initconst = {
318c2ecf20Sopenharmony_ci	0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74,
328c2ecf20Sopenharmony_ci	0x2d, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x20,
338c2ecf20Sopenharmony_ci	0x61, 0x72, 0x65, 0x20, 0x64, 0x72, 0x61, 0x66,
348c2ecf20Sopenharmony_ci	0x74, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
358c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x69,
368c2ecf20Sopenharmony_ci	0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x20,
378c2ecf20Sopenharmony_ci	0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x20,
388c2ecf20Sopenharmony_ci	0x6f, 0x66, 0x20, 0x73, 0x69, 0x78, 0x20, 0x6d,
398c2ecf20Sopenharmony_ci	0x6f, 0x6e, 0x74, 0x68, 0x73, 0x20, 0x61, 0x6e,
408c2ecf20Sopenharmony_ci	0x64, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65,
418c2ecf20Sopenharmony_ci	0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
428c2ecf20Sopenharmony_ci	0x2c, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63,
438c2ecf20Sopenharmony_ci	0x65, 0x64, 0x2c, 0x20, 0x6f, 0x72, 0x20, 0x6f,
448c2ecf20Sopenharmony_ci	0x62, 0x73, 0x6f, 0x6c, 0x65, 0x74, 0x65, 0x64,
458c2ecf20Sopenharmony_ci	0x20, 0x62, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65,
468c2ecf20Sopenharmony_ci	0x72, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
478c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x61, 0x74, 0x20, 0x61,
488c2ecf20Sopenharmony_ci	0x6e, 0x79, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2e,
498c2ecf20Sopenharmony_ci	0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x69,
508c2ecf20Sopenharmony_ci	0x6e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x70, 0x72,
518c2ecf20Sopenharmony_ci	0x69, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20,
528c2ecf20Sopenharmony_ci	0x75, 0x73, 0x65, 0x20, 0x49, 0x6e, 0x74, 0x65,
538c2ecf20Sopenharmony_ci	0x72, 0x6e, 0x65, 0x74, 0x2d, 0x44, 0x72, 0x61,
548c2ecf20Sopenharmony_ci	0x66, 0x74, 0x73, 0x20, 0x61, 0x73, 0x20, 0x72,
558c2ecf20Sopenharmony_ci	0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
568c2ecf20Sopenharmony_ci	0x20, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
578c2ecf20Sopenharmony_ci	0x6c, 0x20, 0x6f, 0x72, 0x20, 0x74, 0x6f, 0x20,
588c2ecf20Sopenharmony_ci	0x63, 0x69, 0x74, 0x65, 0x20, 0x74, 0x68, 0x65,
598c2ecf20Sopenharmony_ci	0x6d, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20,
608c2ecf20Sopenharmony_ci	0x74, 0x68, 0x61, 0x6e, 0x20, 0x61, 0x73, 0x20,
618c2ecf20Sopenharmony_ci	0x2f, 0xe2, 0x80, 0x9c, 0x77, 0x6f, 0x72, 0x6b,
628c2ecf20Sopenharmony_ci	0x20, 0x69, 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x67,
638c2ecf20Sopenharmony_ci	0x72, 0x65, 0x73, 0x73, 0x2e, 0x2f, 0xe2, 0x80,
648c2ecf20Sopenharmony_ci	0x9d
658c2ecf20Sopenharmony_ci};
668c2ecf20Sopenharmony_cistatic const u8 enc_output001[] __initconst = {
678c2ecf20Sopenharmony_ci	0x64, 0xa0, 0x86, 0x15, 0x75, 0x86, 0x1a, 0xf4,
688c2ecf20Sopenharmony_ci	0x60, 0xf0, 0x62, 0xc7, 0x9b, 0xe6, 0x43, 0xbd,
698c2ecf20Sopenharmony_ci	0x5e, 0x80, 0x5c, 0xfd, 0x34, 0x5c, 0xf3, 0x89,
708c2ecf20Sopenharmony_ci	0xf1, 0x08, 0x67, 0x0a, 0xc7, 0x6c, 0x8c, 0xb2,
718c2ecf20Sopenharmony_ci	0x4c, 0x6c, 0xfc, 0x18, 0x75, 0x5d, 0x43, 0xee,
728c2ecf20Sopenharmony_ci	0xa0, 0x9e, 0xe9, 0x4e, 0x38, 0x2d, 0x26, 0xb0,
738c2ecf20Sopenharmony_ci	0xbd, 0xb7, 0xb7, 0x3c, 0x32, 0x1b, 0x01, 0x00,
748c2ecf20Sopenharmony_ci	0xd4, 0xf0, 0x3b, 0x7f, 0x35, 0x58, 0x94, 0xcf,
758c2ecf20Sopenharmony_ci	0x33, 0x2f, 0x83, 0x0e, 0x71, 0x0b, 0x97, 0xce,
768c2ecf20Sopenharmony_ci	0x98, 0xc8, 0xa8, 0x4a, 0xbd, 0x0b, 0x94, 0x81,
778c2ecf20Sopenharmony_ci	0x14, 0xad, 0x17, 0x6e, 0x00, 0x8d, 0x33, 0xbd,
788c2ecf20Sopenharmony_ci	0x60, 0xf9, 0x82, 0xb1, 0xff, 0x37, 0xc8, 0x55,
798c2ecf20Sopenharmony_ci	0x97, 0x97, 0xa0, 0x6e, 0xf4, 0xf0, 0xef, 0x61,
808c2ecf20Sopenharmony_ci	0xc1, 0x86, 0x32, 0x4e, 0x2b, 0x35, 0x06, 0x38,
818c2ecf20Sopenharmony_ci	0x36, 0x06, 0x90, 0x7b, 0x6a, 0x7c, 0x02, 0xb0,
828c2ecf20Sopenharmony_ci	0xf9, 0xf6, 0x15, 0x7b, 0x53, 0xc8, 0x67, 0xe4,
838c2ecf20Sopenharmony_ci	0xb9, 0x16, 0x6c, 0x76, 0x7b, 0x80, 0x4d, 0x46,
848c2ecf20Sopenharmony_ci	0xa5, 0x9b, 0x52, 0x16, 0xcd, 0xe7, 0xa4, 0xe9,
858c2ecf20Sopenharmony_ci	0x90, 0x40, 0xc5, 0xa4, 0x04, 0x33, 0x22, 0x5e,
868c2ecf20Sopenharmony_ci	0xe2, 0x82, 0xa1, 0xb0, 0xa0, 0x6c, 0x52, 0x3e,
878c2ecf20Sopenharmony_ci	0xaf, 0x45, 0x34, 0xd7, 0xf8, 0x3f, 0xa1, 0x15,
888c2ecf20Sopenharmony_ci	0x5b, 0x00, 0x47, 0x71, 0x8c, 0xbc, 0x54, 0x6a,
898c2ecf20Sopenharmony_ci	0x0d, 0x07, 0x2b, 0x04, 0xb3, 0x56, 0x4e, 0xea,
908c2ecf20Sopenharmony_ci	0x1b, 0x42, 0x22, 0x73, 0xf5, 0x48, 0x27, 0x1a,
918c2ecf20Sopenharmony_ci	0x0b, 0xb2, 0x31, 0x60, 0x53, 0xfa, 0x76, 0x99,
928c2ecf20Sopenharmony_ci	0x19, 0x55, 0xeb, 0xd6, 0x31, 0x59, 0x43, 0x4e,
938c2ecf20Sopenharmony_ci	0xce, 0xbb, 0x4e, 0x46, 0x6d, 0xae, 0x5a, 0x10,
948c2ecf20Sopenharmony_ci	0x73, 0xa6, 0x72, 0x76, 0x27, 0x09, 0x7a, 0x10,
958c2ecf20Sopenharmony_ci	0x49, 0xe6, 0x17, 0xd9, 0x1d, 0x36, 0x10, 0x94,
968c2ecf20Sopenharmony_ci	0xfa, 0x68, 0xf0, 0xff, 0x77, 0x98, 0x71, 0x30,
978c2ecf20Sopenharmony_ci	0x30, 0x5b, 0xea, 0xba, 0x2e, 0xda, 0x04, 0xdf,
988c2ecf20Sopenharmony_ci	0x99, 0x7b, 0x71, 0x4d, 0x6c, 0x6f, 0x2c, 0x29,
998c2ecf20Sopenharmony_ci	0xa6, 0xad, 0x5c, 0xb4, 0x02, 0x2b, 0x02, 0x70,
1008c2ecf20Sopenharmony_ci	0x9b, 0xee, 0xad, 0x9d, 0x67, 0x89, 0x0c, 0xbb,
1018c2ecf20Sopenharmony_ci	0x22, 0x39, 0x23, 0x36, 0xfe, 0xa1, 0x85, 0x1f,
1028c2ecf20Sopenharmony_ci	0x38
1038c2ecf20Sopenharmony_ci};
1048c2ecf20Sopenharmony_cistatic const u8 enc_assoc001[] __initconst = {
1058c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x00, 0x00, 0x00, 0x00,
1068c2ecf20Sopenharmony_ci	0x00, 0x00, 0x4e, 0x91
1078c2ecf20Sopenharmony_ci};
1088c2ecf20Sopenharmony_cistatic const u8 enc_nonce001[] __initconst = {
1098c2ecf20Sopenharmony_ci	0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08
1108c2ecf20Sopenharmony_ci};
1118c2ecf20Sopenharmony_cistatic const u8 enc_key001[] __initconst = {
1128c2ecf20Sopenharmony_ci	0x1c, 0x92, 0x40, 0xa5, 0xeb, 0x55, 0xd3, 0x8a,
1138c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x04, 0xf6, 0xb5, 0xf0,
1148c2ecf20Sopenharmony_ci	0x47, 0x39, 0x17, 0xc1, 0x40, 0x2b, 0x80, 0x09,
1158c2ecf20Sopenharmony_ci	0x9d, 0xca, 0x5c, 0xbc, 0x20, 0x70, 0x75, 0xc0
1168c2ecf20Sopenharmony_ci};
1178c2ecf20Sopenharmony_ci
1188c2ecf20Sopenharmony_cistatic const u8 enc_input002[] __initconst = { };
1198c2ecf20Sopenharmony_cistatic const u8 enc_output002[] __initconst = {
1208c2ecf20Sopenharmony_ci	0xea, 0xe0, 0x1e, 0x9e, 0x2c, 0x91, 0xaa, 0xe1,
1218c2ecf20Sopenharmony_ci	0xdb, 0x5d, 0x99, 0x3f, 0x8a, 0xf7, 0x69, 0x92
1228c2ecf20Sopenharmony_ci};
1238c2ecf20Sopenharmony_cistatic const u8 enc_assoc002[] __initconst = { };
1248c2ecf20Sopenharmony_cistatic const u8 enc_nonce002[] __initconst = {
1258c2ecf20Sopenharmony_ci	0xca, 0xbf, 0x33, 0x71, 0x32, 0x45, 0x77, 0x8e
1268c2ecf20Sopenharmony_ci};
1278c2ecf20Sopenharmony_cistatic const u8 enc_key002[] __initconst = {
1288c2ecf20Sopenharmony_ci	0x4c, 0xf5, 0x96, 0x83, 0x38, 0xe6, 0xae, 0x7f,
1298c2ecf20Sopenharmony_ci	0x2d, 0x29, 0x25, 0x76, 0xd5, 0x75, 0x27, 0x86,
1308c2ecf20Sopenharmony_ci	0x91, 0x9a, 0x27, 0x7a, 0xfb, 0x46, 0xc5, 0xef,
1318c2ecf20Sopenharmony_ci	0x94, 0x81, 0x79, 0x57, 0x14, 0x59, 0x40, 0x68
1328c2ecf20Sopenharmony_ci};
1338c2ecf20Sopenharmony_ci
1348c2ecf20Sopenharmony_cistatic const u8 enc_input003[] __initconst = { };
1358c2ecf20Sopenharmony_cistatic const u8 enc_output003[] __initconst = {
1368c2ecf20Sopenharmony_ci	0xdd, 0x6b, 0x3b, 0x82, 0xce, 0x5a, 0xbd, 0xd6,
1378c2ecf20Sopenharmony_ci	0xa9, 0x35, 0x83, 0xd8, 0x8c, 0x3d, 0x85, 0x77
1388c2ecf20Sopenharmony_ci};
1398c2ecf20Sopenharmony_cistatic const u8 enc_assoc003[] __initconst = {
1408c2ecf20Sopenharmony_ci	0x33, 0x10, 0x41, 0x12, 0x1f, 0xf3, 0xd2, 0x6b
1418c2ecf20Sopenharmony_ci};
1428c2ecf20Sopenharmony_cistatic const u8 enc_nonce003[] __initconst = {
1438c2ecf20Sopenharmony_ci	0x3d, 0x86, 0xb5, 0x6b, 0xc8, 0xa3, 0x1f, 0x1d
1448c2ecf20Sopenharmony_ci};
1458c2ecf20Sopenharmony_cistatic const u8 enc_key003[] __initconst = {
1468c2ecf20Sopenharmony_ci	0x2d, 0xb0, 0x5d, 0x40, 0xc8, 0xed, 0x44, 0x88,
1478c2ecf20Sopenharmony_ci	0x34, 0xd1, 0x13, 0xaf, 0x57, 0xa1, 0xeb, 0x3a,
1488c2ecf20Sopenharmony_ci	0x2a, 0x80, 0x51, 0x36, 0xec, 0x5b, 0xbc, 0x08,
1498c2ecf20Sopenharmony_ci	0x93, 0x84, 0x21, 0xb5, 0x13, 0x88, 0x3c, 0x0d
1508c2ecf20Sopenharmony_ci};
1518c2ecf20Sopenharmony_ci
1528c2ecf20Sopenharmony_cistatic const u8 enc_input004[] __initconst = {
1538c2ecf20Sopenharmony_ci	0xa4
1548c2ecf20Sopenharmony_ci};
1558c2ecf20Sopenharmony_cistatic const u8 enc_output004[] __initconst = {
1568c2ecf20Sopenharmony_ci	0xb7, 0x1b, 0xb0, 0x73, 0x59, 0xb0, 0x84, 0xb2,
1578c2ecf20Sopenharmony_ci	0x6d, 0x8e, 0xab, 0x94, 0x31, 0xa1, 0xae, 0xac,
1588c2ecf20Sopenharmony_ci	0x89
1598c2ecf20Sopenharmony_ci};
1608c2ecf20Sopenharmony_cistatic const u8 enc_assoc004[] __initconst = {
1618c2ecf20Sopenharmony_ci	0x6a, 0xe2, 0xad, 0x3f, 0x88, 0x39, 0x5a, 0x40
1628c2ecf20Sopenharmony_ci};
1638c2ecf20Sopenharmony_cistatic const u8 enc_nonce004[] __initconst = {
1648c2ecf20Sopenharmony_ci	0xd2, 0x32, 0x1f, 0x29, 0x28, 0xc6, 0xc4, 0xc4
1658c2ecf20Sopenharmony_ci};
1668c2ecf20Sopenharmony_cistatic const u8 enc_key004[] __initconst = {
1678c2ecf20Sopenharmony_ci	0x4b, 0x28, 0x4b, 0xa3, 0x7b, 0xbe, 0xe9, 0xf8,
1688c2ecf20Sopenharmony_ci	0x31, 0x80, 0x82, 0xd7, 0xd8, 0xe8, 0xb5, 0xa1,
1698c2ecf20Sopenharmony_ci	0xe2, 0x18, 0x18, 0x8a, 0x9c, 0xfa, 0xa3, 0x3d,
1708c2ecf20Sopenharmony_ci	0x25, 0x71, 0x3e, 0x40, 0xbc, 0x54, 0x7a, 0x3e
1718c2ecf20Sopenharmony_ci};
1728c2ecf20Sopenharmony_ci
1738c2ecf20Sopenharmony_cistatic const u8 enc_input005[] __initconst = {
1748c2ecf20Sopenharmony_ci	0x2d
1758c2ecf20Sopenharmony_ci};
1768c2ecf20Sopenharmony_cistatic const u8 enc_output005[] __initconst = {
1778c2ecf20Sopenharmony_ci	0xbf, 0xe1, 0x5b, 0x0b, 0xdb, 0x6b, 0xf5, 0x5e,
1788c2ecf20Sopenharmony_ci	0x6c, 0x5d, 0x84, 0x44, 0x39, 0x81, 0xc1, 0x9c,
1798c2ecf20Sopenharmony_ci	0xac
1808c2ecf20Sopenharmony_ci};
1818c2ecf20Sopenharmony_cistatic const u8 enc_assoc005[] __initconst = { };
1828c2ecf20Sopenharmony_cistatic const u8 enc_nonce005[] __initconst = {
1838c2ecf20Sopenharmony_ci	0x20, 0x1c, 0xaa, 0x5f, 0x9c, 0xbf, 0x92, 0x30
1848c2ecf20Sopenharmony_ci};
1858c2ecf20Sopenharmony_cistatic const u8 enc_key005[] __initconst = {
1868c2ecf20Sopenharmony_ci	0x66, 0xca, 0x9c, 0x23, 0x2a, 0x4b, 0x4b, 0x31,
1878c2ecf20Sopenharmony_ci	0x0e, 0x92, 0x89, 0x8b, 0xf4, 0x93, 0xc7, 0x87,
1888c2ecf20Sopenharmony_ci	0x98, 0xa3, 0xd8, 0x39, 0xf8, 0xf4, 0xa7, 0x01,
1898c2ecf20Sopenharmony_ci	0xc0, 0x2e, 0x0a, 0xa6, 0x7e, 0x5a, 0x78, 0x87
1908c2ecf20Sopenharmony_ci};
1918c2ecf20Sopenharmony_ci
1928c2ecf20Sopenharmony_cistatic const u8 enc_input006[] __initconst = {
1938c2ecf20Sopenharmony_ci	0x33, 0x2f, 0x94, 0xc1, 0xa4, 0xef, 0xcc, 0x2a,
1948c2ecf20Sopenharmony_ci	0x5b, 0xa6, 0xe5, 0x8f, 0x1d, 0x40, 0xf0, 0x92,
1958c2ecf20Sopenharmony_ci	0x3c, 0xd9, 0x24, 0x11, 0xa9, 0x71, 0xf9, 0x37,
1968c2ecf20Sopenharmony_ci	0x14, 0x99, 0xfa, 0xbe, 0xe6, 0x80, 0xde, 0x50,
1978c2ecf20Sopenharmony_ci	0xc9, 0x96, 0xd4, 0xb0, 0xec, 0x9e, 0x17, 0xec,
1988c2ecf20Sopenharmony_ci	0xd2, 0x5e, 0x72, 0x99, 0xfc, 0x0a, 0xe1, 0xcb,
1998c2ecf20Sopenharmony_ci	0x48, 0xd2, 0x85, 0xdd, 0x2f, 0x90, 0xe0, 0x66,
2008c2ecf20Sopenharmony_ci	0x3b, 0xe6, 0x20, 0x74, 0xbe, 0x23, 0x8f, 0xcb,
2018c2ecf20Sopenharmony_ci	0xb4, 0xe4, 0xda, 0x48, 0x40, 0xa6, 0xd1, 0x1b,
2028c2ecf20Sopenharmony_ci	0xc7, 0x42, 0xce, 0x2f, 0x0c, 0xa6, 0x85, 0x6e,
2038c2ecf20Sopenharmony_ci	0x87, 0x37, 0x03, 0xb1, 0x7c, 0x25, 0x96, 0xa3,
2048c2ecf20Sopenharmony_ci	0x05, 0xd8, 0xb0, 0xf4, 0xed, 0xea, 0xc2, 0xf0,
2058c2ecf20Sopenharmony_ci	0x31, 0x98, 0x6c, 0xd1, 0x14, 0x25, 0xc0, 0xcb,
2068c2ecf20Sopenharmony_ci	0x01, 0x74, 0xd0, 0x82, 0xf4, 0x36, 0xf5, 0x41,
2078c2ecf20Sopenharmony_ci	0xd5, 0xdc, 0xca, 0xc5, 0xbb, 0x98, 0xfe, 0xfc,
2088c2ecf20Sopenharmony_ci	0x69, 0x21, 0x70, 0xd8, 0xa4, 0x4b, 0xc8, 0xde,
2098c2ecf20Sopenharmony_ci	0x8f
2108c2ecf20Sopenharmony_ci};
2118c2ecf20Sopenharmony_cistatic const u8 enc_output006[] __initconst = {
2128c2ecf20Sopenharmony_ci	0x8b, 0x06, 0xd3, 0x31, 0xb0, 0x93, 0x45, 0xb1,
2138c2ecf20Sopenharmony_ci	0x75, 0x6e, 0x26, 0xf9, 0x67, 0xbc, 0x90, 0x15,
2148c2ecf20Sopenharmony_ci	0x81, 0x2c, 0xb5, 0xf0, 0xc6, 0x2b, 0xc7, 0x8c,
2158c2ecf20Sopenharmony_ci	0x56, 0xd1, 0xbf, 0x69, 0x6c, 0x07, 0xa0, 0xda,
2168c2ecf20Sopenharmony_ci	0x65, 0x27, 0xc9, 0x90, 0x3d, 0xef, 0x4b, 0x11,
2178c2ecf20Sopenharmony_ci	0x0f, 0x19, 0x07, 0xfd, 0x29, 0x92, 0xd9, 0xc8,
2188c2ecf20Sopenharmony_ci	0xf7, 0x99, 0x2e, 0x4a, 0xd0, 0xb8, 0x2c, 0xdc,
2198c2ecf20Sopenharmony_ci	0x93, 0xf5, 0x9e, 0x33, 0x78, 0xd1, 0x37, 0xc3,
2208c2ecf20Sopenharmony_ci	0x66, 0xd7, 0x5e, 0xbc, 0x44, 0xbf, 0x53, 0xa5,
2218c2ecf20Sopenharmony_ci	0xbc, 0xc4, 0xcb, 0x7b, 0x3a, 0x8e, 0x7f, 0x02,
2228c2ecf20Sopenharmony_ci	0xbd, 0xbb, 0xe7, 0xca, 0xa6, 0x6c, 0x6b, 0x93,
2238c2ecf20Sopenharmony_ci	0x21, 0x93, 0x10, 0x61, 0xe7, 0x69, 0xd0, 0x78,
2248c2ecf20Sopenharmony_ci	0xf3, 0x07, 0x5a, 0x1a, 0x8f, 0x73, 0xaa, 0xb1,
2258c2ecf20Sopenharmony_ci	0x4e, 0xd3, 0xda, 0x4f, 0xf3, 0x32, 0xe1, 0x66,
2268c2ecf20Sopenharmony_ci	0x3e, 0x6c, 0xc6, 0x13, 0xba, 0x06, 0x5b, 0xfc,
2278c2ecf20Sopenharmony_ci	0x6a, 0xe5, 0x6f, 0x60, 0xfb, 0x07, 0x40, 0xb0,
2288c2ecf20Sopenharmony_ci	0x8c, 0x9d, 0x84, 0x43, 0x6b, 0xc1, 0xf7, 0x8d,
2298c2ecf20Sopenharmony_ci	0x8d, 0x31, 0xf7, 0x7a, 0x39, 0x4d, 0x8f, 0x9a,
2308c2ecf20Sopenharmony_ci	0xeb
2318c2ecf20Sopenharmony_ci};
2328c2ecf20Sopenharmony_cistatic const u8 enc_assoc006[] __initconst = {
2338c2ecf20Sopenharmony_ci	0x70, 0xd3, 0x33, 0xf3, 0x8b, 0x18, 0x0b
2348c2ecf20Sopenharmony_ci};
2358c2ecf20Sopenharmony_cistatic const u8 enc_nonce006[] __initconst = {
2368c2ecf20Sopenharmony_ci	0xdf, 0x51, 0x84, 0x82, 0x42, 0x0c, 0x75, 0x9c
2378c2ecf20Sopenharmony_ci};
2388c2ecf20Sopenharmony_cistatic const u8 enc_key006[] __initconst = {
2398c2ecf20Sopenharmony_ci	0x68, 0x7b, 0x8d, 0x8e, 0xe3, 0xc4, 0xdd, 0xae,
2408c2ecf20Sopenharmony_ci	0xdf, 0x72, 0x7f, 0x53, 0x72, 0x25, 0x1e, 0x78,
2418c2ecf20Sopenharmony_ci	0x91, 0xcb, 0x69, 0x76, 0x1f, 0x49, 0x93, 0xf9,
2428c2ecf20Sopenharmony_ci	0x6f, 0x21, 0xcc, 0x39, 0x9c, 0xad, 0xb1, 0x01
2438c2ecf20Sopenharmony_ci};
2448c2ecf20Sopenharmony_ci
2458c2ecf20Sopenharmony_cistatic const u8 enc_input007[] __initconst = {
2468c2ecf20Sopenharmony_ci	0x9b, 0x18, 0xdb, 0xdd, 0x9a, 0x0f, 0x3e, 0xa5,
2478c2ecf20Sopenharmony_ci	0x15, 0x17, 0xde, 0xdf, 0x08, 0x9d, 0x65, 0x0a,
2488c2ecf20Sopenharmony_ci	0x67, 0x30, 0x12, 0xe2, 0x34, 0x77, 0x4b, 0xc1,
2498c2ecf20Sopenharmony_ci	0xd9, 0xc6, 0x1f, 0xab, 0xc6, 0x18, 0x50, 0x17,
2508c2ecf20Sopenharmony_ci	0xa7, 0x9d, 0x3c, 0xa6, 0xc5, 0x35, 0x8c, 0x1c,
2518c2ecf20Sopenharmony_ci	0xc0, 0xa1, 0x7c, 0x9f, 0x03, 0x89, 0xca, 0xe1,
2528c2ecf20Sopenharmony_ci	0xe6, 0xe9, 0xd4, 0xd3, 0x88, 0xdb, 0xb4, 0x51,
2538c2ecf20Sopenharmony_ci	0x9d, 0xec, 0xb4, 0xfc, 0x52, 0xee, 0x6d, 0xf1,
2548c2ecf20Sopenharmony_ci	0x75, 0x42, 0xc6, 0xfd, 0xbd, 0x7a, 0x8e, 0x86,
2558c2ecf20Sopenharmony_ci	0xfc, 0x44, 0xb3, 0x4f, 0xf3, 0xea, 0x67, 0x5a,
2568c2ecf20Sopenharmony_ci	0x41, 0x13, 0xba, 0xb0, 0xdc, 0xe1, 0xd3, 0x2a,
2578c2ecf20Sopenharmony_ci	0x7c, 0x22, 0xb3, 0xca, 0xac, 0x6a, 0x37, 0x98,
2588c2ecf20Sopenharmony_ci	0x3e, 0x1d, 0x40, 0x97, 0xf7, 0x9b, 0x1d, 0x36,
2598c2ecf20Sopenharmony_ci	0x6b, 0xb3, 0x28, 0xbd, 0x60, 0x82, 0x47, 0x34,
2608c2ecf20Sopenharmony_ci	0xaa, 0x2f, 0x7d, 0xe9, 0xa8, 0x70, 0x81, 0x57,
2618c2ecf20Sopenharmony_ci	0xd4, 0xb9, 0x77, 0x0a, 0x9d, 0x29, 0xa7, 0x84,
2628c2ecf20Sopenharmony_ci	0x52, 0x4f, 0xc2, 0x4a, 0x40, 0x3b, 0x3c, 0xd4,
2638c2ecf20Sopenharmony_ci	0xc9, 0x2a, 0xdb, 0x4a, 0x53, 0xc4, 0xbe, 0x80,
2648c2ecf20Sopenharmony_ci	0xe9, 0x51, 0x7f, 0x8f, 0xc7, 0xa2, 0xce, 0x82,
2658c2ecf20Sopenharmony_ci	0x5c, 0x91, 0x1e, 0x74, 0xd9, 0xd0, 0xbd, 0xd5,
2668c2ecf20Sopenharmony_ci	0xf3, 0xfd, 0xda, 0x4d, 0x25, 0xb4, 0xbb, 0x2d,
2678c2ecf20Sopenharmony_ci	0xac, 0x2f, 0x3d, 0x71, 0x85, 0x7b, 0xcf, 0x3c,
2688c2ecf20Sopenharmony_ci	0x7b, 0x3e, 0x0e, 0x22, 0x78, 0x0c, 0x29, 0xbf,
2698c2ecf20Sopenharmony_ci	0xe4, 0xf4, 0x57, 0xb3, 0xcb, 0x49, 0xa0, 0xfc,
2708c2ecf20Sopenharmony_ci	0x1e, 0x05, 0x4e, 0x16, 0xbc, 0xd5, 0xa8, 0xa3,
2718c2ecf20Sopenharmony_ci	0xee, 0x05, 0x35, 0xc6, 0x7c, 0xab, 0x60, 0x14,
2728c2ecf20Sopenharmony_ci	0x55, 0x1a, 0x8e, 0xc5, 0x88, 0x5d, 0xd5, 0x81,
2738c2ecf20Sopenharmony_ci	0xc2, 0x81, 0xa5, 0xc4, 0x60, 0xdb, 0xaf, 0x77,
2748c2ecf20Sopenharmony_ci	0x91, 0xe1, 0xce, 0xa2, 0x7e, 0x7f, 0x42, 0xe3,
2758c2ecf20Sopenharmony_ci	0xb0, 0x13, 0x1c, 0x1f, 0x25, 0x60, 0x21, 0xe2,
2768c2ecf20Sopenharmony_ci	0x40, 0x5f, 0x99, 0xb7, 0x73, 0xec, 0x9b, 0x2b,
2778c2ecf20Sopenharmony_ci	0xf0, 0x65, 0x11, 0xc8, 0xd0, 0x0a, 0x9f, 0xd3
2788c2ecf20Sopenharmony_ci};
2798c2ecf20Sopenharmony_cistatic const u8 enc_output007[] __initconst = {
2808c2ecf20Sopenharmony_ci	0x85, 0x04, 0xc2, 0xed, 0x8d, 0xfd, 0x97, 0x5c,
2818c2ecf20Sopenharmony_ci	0xd2, 0xb7, 0xe2, 0xc1, 0x6b, 0xa3, 0xba, 0xf8,
2828c2ecf20Sopenharmony_ci	0xc9, 0x50, 0xc3, 0xc6, 0xa5, 0xe3, 0xa4, 0x7c,
2838c2ecf20Sopenharmony_ci	0xc3, 0x23, 0x49, 0x5e, 0xa9, 0xb9, 0x32, 0xeb,
2848c2ecf20Sopenharmony_ci	0x8a, 0x7c, 0xca, 0xe5, 0xec, 0xfb, 0x7c, 0xc0,
2858c2ecf20Sopenharmony_ci	0xcb, 0x7d, 0xdc, 0x2c, 0x9d, 0x92, 0x55, 0x21,
2868c2ecf20Sopenharmony_ci	0x0a, 0xc8, 0x43, 0x63, 0x59, 0x0a, 0x31, 0x70,
2878c2ecf20Sopenharmony_ci	0x82, 0x67, 0x41, 0x03, 0xf8, 0xdf, 0xf2, 0xac,
2888c2ecf20Sopenharmony_ci	0xa7, 0x02, 0xd4, 0xd5, 0x8a, 0x2d, 0xc8, 0x99,
2898c2ecf20Sopenharmony_ci	0x19, 0x66, 0xd0, 0xf6, 0x88, 0x2c, 0x77, 0xd9,
2908c2ecf20Sopenharmony_ci	0xd4, 0x0d, 0x6c, 0xbd, 0x98, 0xde, 0xe7, 0x7f,
2918c2ecf20Sopenharmony_ci	0xad, 0x7e, 0x8a, 0xfb, 0xe9, 0x4b, 0xe5, 0xf7,
2928c2ecf20Sopenharmony_ci	0xe5, 0x50, 0xa0, 0x90, 0x3f, 0xd6, 0x22, 0x53,
2938c2ecf20Sopenharmony_ci	0xe3, 0xfe, 0x1b, 0xcc, 0x79, 0x3b, 0xec, 0x12,
2948c2ecf20Sopenharmony_ci	0x47, 0x52, 0xa7, 0xd6, 0x04, 0xe3, 0x52, 0xe6,
2958c2ecf20Sopenharmony_ci	0x93, 0x90, 0x91, 0x32, 0x73, 0x79, 0xb8, 0xd0,
2968c2ecf20Sopenharmony_ci	0x31, 0xde, 0x1f, 0x9f, 0x2f, 0x05, 0x38, 0x54,
2978c2ecf20Sopenharmony_ci	0x2f, 0x35, 0x04, 0x39, 0xe0, 0xa7, 0xba, 0xc6,
2988c2ecf20Sopenharmony_ci	0x52, 0xf6, 0x37, 0x65, 0x4c, 0x07, 0xa9, 0x7e,
2998c2ecf20Sopenharmony_ci	0xb3, 0x21, 0x6f, 0x74, 0x8c, 0xc9, 0xde, 0xdb,
3008c2ecf20Sopenharmony_ci	0x65, 0x1b, 0x9b, 0xaa, 0x60, 0xb1, 0x03, 0x30,
3018c2ecf20Sopenharmony_ci	0x6b, 0xb2, 0x03, 0xc4, 0x1c, 0x04, 0xf8, 0x0f,
3028c2ecf20Sopenharmony_ci	0x64, 0xaf, 0x46, 0xe4, 0x65, 0x99, 0x49, 0xe2,
3038c2ecf20Sopenharmony_ci	0xea, 0xce, 0x78, 0x00, 0xd8, 0x8b, 0xd5, 0x2e,
3048c2ecf20Sopenharmony_ci	0xcf, 0xfc, 0x40, 0x49, 0xe8, 0x58, 0xdc, 0x34,
3058c2ecf20Sopenharmony_ci	0x9c, 0x8c, 0x61, 0xbf, 0x0a, 0x8e, 0xec, 0x39,
3068c2ecf20Sopenharmony_ci	0xa9, 0x30, 0x05, 0x5a, 0xd2, 0x56, 0x01, 0xc7,
3078c2ecf20Sopenharmony_ci	0xda, 0x8f, 0x4e, 0xbb, 0x43, 0xa3, 0x3a, 0xf9,
3088c2ecf20Sopenharmony_ci	0x15, 0x2a, 0xd0, 0xa0, 0x7a, 0x87, 0x34, 0x82,
3098c2ecf20Sopenharmony_ci	0xfe, 0x8a, 0xd1, 0x2d, 0x5e, 0xc7, 0xbf, 0x04,
3108c2ecf20Sopenharmony_ci	0x53, 0x5f, 0x3b, 0x36, 0xd4, 0x25, 0x5c, 0x34,
3118c2ecf20Sopenharmony_ci	0x7a, 0x8d, 0xd5, 0x05, 0xce, 0x72, 0xca, 0xef,
3128c2ecf20Sopenharmony_ci	0x7a, 0x4b, 0xbc, 0xb0, 0x10, 0x5c, 0x96, 0x42,
3138c2ecf20Sopenharmony_ci	0x3a, 0x00, 0x98, 0xcd, 0x15, 0xe8, 0xb7, 0x53
3148c2ecf20Sopenharmony_ci};
3158c2ecf20Sopenharmony_cistatic const u8 enc_assoc007[] __initconst = { };
3168c2ecf20Sopenharmony_cistatic const u8 enc_nonce007[] __initconst = {
3178c2ecf20Sopenharmony_ci	0xde, 0x7b, 0xef, 0xc3, 0x65, 0x1b, 0x68, 0xb0
3188c2ecf20Sopenharmony_ci};
3198c2ecf20Sopenharmony_cistatic const u8 enc_key007[] __initconst = {
3208c2ecf20Sopenharmony_ci	0x8d, 0xb8, 0x91, 0x48, 0xf0, 0xe7, 0x0a, 0xbd,
3218c2ecf20Sopenharmony_ci	0xf9, 0x3f, 0xcd, 0xd9, 0xa0, 0x1e, 0x42, 0x4c,
3228c2ecf20Sopenharmony_ci	0xe7, 0xde, 0x25, 0x3d, 0xa3, 0xd7, 0x05, 0x80,
3238c2ecf20Sopenharmony_ci	0x8d, 0xf2, 0x82, 0xac, 0x44, 0x16, 0x51, 0x01
3248c2ecf20Sopenharmony_ci};
3258c2ecf20Sopenharmony_ci
3268c2ecf20Sopenharmony_cistatic const u8 enc_input008[] __initconst = {
3278c2ecf20Sopenharmony_ci	0xc3, 0x09, 0x94, 0x62, 0xe6, 0x46, 0x2e, 0x10,
3288c2ecf20Sopenharmony_ci	0xbe, 0x00, 0xe4, 0xfc, 0xf3, 0x40, 0xa3, 0xe2,
3298c2ecf20Sopenharmony_ci	0x0f, 0xc2, 0x8b, 0x28, 0xdc, 0xba, 0xb4, 0x3c,
3308c2ecf20Sopenharmony_ci	0xe4, 0x21, 0x58, 0x61, 0xcd, 0x8b, 0xcd, 0xfb,
3318c2ecf20Sopenharmony_ci	0xac, 0x94, 0xa1, 0x45, 0xf5, 0x1c, 0xe1, 0x12,
3328c2ecf20Sopenharmony_ci	0xe0, 0x3b, 0x67, 0x21, 0x54, 0x5e, 0x8c, 0xaa,
3338c2ecf20Sopenharmony_ci	0xcf, 0xdb, 0xb4, 0x51, 0xd4, 0x13, 0xda, 0xe6,
3348c2ecf20Sopenharmony_ci	0x83, 0x89, 0xb6, 0x92, 0xe9, 0x21, 0x76, 0xa4,
3358c2ecf20Sopenharmony_ci	0x93, 0x7d, 0x0e, 0xfd, 0x96, 0x36, 0x03, 0x91,
3368c2ecf20Sopenharmony_ci	0x43, 0x5c, 0x92, 0x49, 0x62, 0x61, 0x7b, 0xeb,
3378c2ecf20Sopenharmony_ci	0x43, 0x89, 0xb8, 0x12, 0x20, 0x43, 0xd4, 0x47,
3388c2ecf20Sopenharmony_ci	0x06, 0x84, 0xee, 0x47, 0xe9, 0x8a, 0x73, 0x15,
3398c2ecf20Sopenharmony_ci	0x0f, 0x72, 0xcf, 0xed, 0xce, 0x96, 0xb2, 0x7f,
3408c2ecf20Sopenharmony_ci	0x21, 0x45, 0x76, 0xeb, 0x26, 0x28, 0x83, 0x6a,
3418c2ecf20Sopenharmony_ci	0xad, 0xaa, 0xa6, 0x81, 0xd8, 0x55, 0xb1, 0xa3,
3428c2ecf20Sopenharmony_ci	0x85, 0xb3, 0x0c, 0xdf, 0xf1, 0x69, 0x2d, 0x97,
3438c2ecf20Sopenharmony_ci	0x05, 0x2a, 0xbc, 0x7c, 0x7b, 0x25, 0xf8, 0x80,
3448c2ecf20Sopenharmony_ci	0x9d, 0x39, 0x25, 0xf3, 0x62, 0xf0, 0x66, 0x5e,
3458c2ecf20Sopenharmony_ci	0xf4, 0xa0, 0xcf, 0xd8, 0xfd, 0x4f, 0xb1, 0x1f,
3468c2ecf20Sopenharmony_ci	0x60, 0x3a, 0x08, 0x47, 0xaf, 0xe1, 0xf6, 0x10,
3478c2ecf20Sopenharmony_ci	0x77, 0x09, 0xa7, 0x27, 0x8f, 0x9a, 0x97, 0x5a,
3488c2ecf20Sopenharmony_ci	0x26, 0xfa, 0xfe, 0x41, 0x32, 0x83, 0x10, 0xe0,
3498c2ecf20Sopenharmony_ci	0x1d, 0xbf, 0x64, 0x0d, 0xf4, 0x1c, 0x32, 0x35,
3508c2ecf20Sopenharmony_ci	0xe5, 0x1b, 0x36, 0xef, 0xd4, 0x4a, 0x93, 0x4d,
3518c2ecf20Sopenharmony_ci	0x00, 0x7c, 0xec, 0x02, 0x07, 0x8b, 0x5d, 0x7d,
3528c2ecf20Sopenharmony_ci	0x1b, 0x0e, 0xd1, 0xa6, 0xa5, 0x5d, 0x7d, 0x57,
3538c2ecf20Sopenharmony_ci	0x88, 0xa8, 0xcc, 0x81, 0xb4, 0x86, 0x4e, 0xb4,
3548c2ecf20Sopenharmony_ci	0x40, 0xe9, 0x1d, 0xc3, 0xb1, 0x24, 0x3e, 0x7f,
3558c2ecf20Sopenharmony_ci	0xcc, 0x8a, 0x24, 0x9b, 0xdf, 0x6d, 0xf0, 0x39,
3568c2ecf20Sopenharmony_ci	0x69, 0x3e, 0x4c, 0xc0, 0x96, 0xe4, 0x13, 0xda,
3578c2ecf20Sopenharmony_ci	0x90, 0xda, 0xf4, 0x95, 0x66, 0x8b, 0x17, 0x17,
3588c2ecf20Sopenharmony_ci	0xfe, 0x39, 0x43, 0x25, 0xaa, 0xda, 0xa0, 0x43,
3598c2ecf20Sopenharmony_ci	0x3c, 0xb1, 0x41, 0x02, 0xa3, 0xf0, 0xa7, 0x19,
3608c2ecf20Sopenharmony_ci	0x59, 0xbc, 0x1d, 0x7d, 0x6c, 0x6d, 0x91, 0x09,
3618c2ecf20Sopenharmony_ci	0x5c, 0xb7, 0x5b, 0x01, 0xd1, 0x6f, 0x17, 0x21,
3628c2ecf20Sopenharmony_ci	0x97, 0xbf, 0x89, 0x71, 0xa5, 0xb0, 0x6e, 0x07,
3638c2ecf20Sopenharmony_ci	0x45, 0xfd, 0x9d, 0xea, 0x07, 0xf6, 0x7a, 0x9f,
3648c2ecf20Sopenharmony_ci	0x10, 0x18, 0x22, 0x30, 0x73, 0xac, 0xd4, 0x6b,
3658c2ecf20Sopenharmony_ci	0x72, 0x44, 0xed, 0xd9, 0x19, 0x9b, 0x2d, 0x4a,
3668c2ecf20Sopenharmony_ci	0x41, 0xdd, 0xd1, 0x85, 0x5e, 0x37, 0x19, 0xed,
3678c2ecf20Sopenharmony_ci	0xd2, 0x15, 0x8f, 0x5e, 0x91, 0xdb, 0x33, 0xf2,
3688c2ecf20Sopenharmony_ci	0xe4, 0xdb, 0xff, 0x98, 0xfb, 0xa3, 0xb5, 0xca,
3698c2ecf20Sopenharmony_ci	0x21, 0x69, 0x08, 0xe7, 0x8a, 0xdf, 0x90, 0xff,
3708c2ecf20Sopenharmony_ci	0x3e, 0xe9, 0x20, 0x86, 0x3c, 0xe9, 0xfc, 0x0b,
3718c2ecf20Sopenharmony_ci	0xfe, 0x5c, 0x61, 0xaa, 0x13, 0x92, 0x7f, 0x7b,
3728c2ecf20Sopenharmony_ci	0xec, 0xe0, 0x6d, 0xa8, 0x23, 0x22, 0xf6, 0x6b,
3738c2ecf20Sopenharmony_ci	0x77, 0xc4, 0xfe, 0x40, 0x07, 0x3b, 0xb6, 0xf6,
3748c2ecf20Sopenharmony_ci	0x8e, 0x5f, 0xd4, 0xb9, 0xb7, 0x0f, 0x21, 0x04,
3758c2ecf20Sopenharmony_ci	0xef, 0x83, 0x63, 0x91, 0x69, 0x40, 0xa3, 0x48,
3768c2ecf20Sopenharmony_ci	0x5c, 0xd2, 0x60, 0xf9, 0x4f, 0x6c, 0x47, 0x8b,
3778c2ecf20Sopenharmony_ci	0x3b, 0xb1, 0x9f, 0x8e, 0xee, 0x16, 0x8a, 0x13,
3788c2ecf20Sopenharmony_ci	0xfc, 0x46, 0x17, 0xc3, 0xc3, 0x32, 0x56, 0xf8,
3798c2ecf20Sopenharmony_ci	0x3c, 0x85, 0x3a, 0xb6, 0x3e, 0xaa, 0x89, 0x4f,
3808c2ecf20Sopenharmony_ci	0xb3, 0xdf, 0x38, 0xfd, 0xf1, 0xe4, 0x3a, 0xc0,
3818c2ecf20Sopenharmony_ci	0xe6, 0x58, 0xb5, 0x8f, 0xc5, 0x29, 0xa2, 0x92,
3828c2ecf20Sopenharmony_ci	0x4a, 0xb6, 0xa0, 0x34, 0x7f, 0xab, 0xb5, 0x8a,
3838c2ecf20Sopenharmony_ci	0x90, 0xa1, 0xdb, 0x4d, 0xca, 0xb6, 0x2c, 0x41,
3848c2ecf20Sopenharmony_ci	0x3c, 0xf7, 0x2b, 0x21, 0xc3, 0xfd, 0xf4, 0x17,
3858c2ecf20Sopenharmony_ci	0x5c, 0xb5, 0x33, 0x17, 0x68, 0x2b, 0x08, 0x30,
3868c2ecf20Sopenharmony_ci	0xf3, 0xf7, 0x30, 0x3c, 0x96, 0xe6, 0x6a, 0x20,
3878c2ecf20Sopenharmony_ci	0x97, 0xe7, 0x4d, 0x10, 0x5f, 0x47, 0x5f, 0x49,
3888c2ecf20Sopenharmony_ci	0x96, 0x09, 0xf0, 0x27, 0x91, 0xc8, 0xf8, 0x5a,
3898c2ecf20Sopenharmony_ci	0x2e, 0x79, 0xb5, 0xe2, 0xb8, 0xe8, 0xb9, 0x7b,
3908c2ecf20Sopenharmony_ci	0xd5, 0x10, 0xcb, 0xff, 0x5d, 0x14, 0x73, 0xf3
3918c2ecf20Sopenharmony_ci};
3928c2ecf20Sopenharmony_cistatic const u8 enc_output008[] __initconst = {
3938c2ecf20Sopenharmony_ci	0x14, 0xf6, 0x41, 0x37, 0xa6, 0xd4, 0x27, 0xcd,
3948c2ecf20Sopenharmony_ci	0xdb, 0x06, 0x3e, 0x9a, 0x4e, 0xab, 0xd5, 0xb1,
3958c2ecf20Sopenharmony_ci	0x1e, 0x6b, 0xd2, 0xbc, 0x11, 0xf4, 0x28, 0x93,
3968c2ecf20Sopenharmony_ci	0x63, 0x54, 0xef, 0xbb, 0x5e, 0x1d, 0x3a, 0x1d,
3978c2ecf20Sopenharmony_ci	0x37, 0x3c, 0x0a, 0x6c, 0x1e, 0xc2, 0xd1, 0x2c,
3988c2ecf20Sopenharmony_ci	0xb5, 0xa3, 0xb5, 0x7b, 0xb8, 0x8f, 0x25, 0xa6,
3998c2ecf20Sopenharmony_ci	0x1b, 0x61, 0x1c, 0xec, 0x28, 0x58, 0x26, 0xa4,
4008c2ecf20Sopenharmony_ci	0xa8, 0x33, 0x28, 0x25, 0x5c, 0x45, 0x05, 0xe5,
4018c2ecf20Sopenharmony_ci	0x6c, 0x99, 0xe5, 0x45, 0xc4, 0xa2, 0x03, 0x84,
4028c2ecf20Sopenharmony_ci	0x03, 0x73, 0x1e, 0x8c, 0x49, 0xac, 0x20, 0xdd,
4038c2ecf20Sopenharmony_ci	0x8d, 0xb3, 0xc4, 0xf5, 0xe7, 0x4f, 0xf1, 0xed,
4048c2ecf20Sopenharmony_ci	0xa1, 0x98, 0xde, 0xa4, 0x96, 0xdd, 0x2f, 0xab,
4058c2ecf20Sopenharmony_ci	0xab, 0x97, 0xcf, 0x3e, 0xd2, 0x9e, 0xb8, 0x13,
4068c2ecf20Sopenharmony_ci	0x07, 0x28, 0x29, 0x19, 0xaf, 0xfd, 0xf2, 0x49,
4078c2ecf20Sopenharmony_ci	0x43, 0xea, 0x49, 0x26, 0x91, 0xc1, 0x07, 0xd6,
4088c2ecf20Sopenharmony_ci	0xbb, 0x81, 0x75, 0x35, 0x0d, 0x24, 0x7f, 0xc8,
4098c2ecf20Sopenharmony_ci	0xda, 0xd4, 0xb7, 0xeb, 0xe8, 0x5c, 0x09, 0xa2,
4108c2ecf20Sopenharmony_ci	0x2f, 0xdc, 0x28, 0x7d, 0x3a, 0x03, 0xfa, 0x94,
4118c2ecf20Sopenharmony_ci	0xb5, 0x1d, 0x17, 0x99, 0x36, 0xc3, 0x1c, 0x18,
4128c2ecf20Sopenharmony_ci	0x34, 0xe3, 0x9f, 0xf5, 0x55, 0x7c, 0xb0, 0x60,
4138c2ecf20Sopenharmony_ci	0x9d, 0xff, 0xac, 0xd4, 0x61, 0xf2, 0xad, 0xf8,
4148c2ecf20Sopenharmony_ci	0xce, 0xc7, 0xbe, 0x5c, 0xd2, 0x95, 0xa8, 0x4b,
4158c2ecf20Sopenharmony_ci	0x77, 0x13, 0x19, 0x59, 0x26, 0xc9, 0xb7, 0x8f,
4168c2ecf20Sopenharmony_ci	0x6a, 0xcb, 0x2d, 0x37, 0x91, 0xea, 0x92, 0x9c,
4178c2ecf20Sopenharmony_ci	0x94, 0x5b, 0xda, 0x0b, 0xce, 0xfe, 0x30, 0x20,
4188c2ecf20Sopenharmony_ci	0xf8, 0x51, 0xad, 0xf2, 0xbe, 0xe7, 0xc7, 0xff,
4198c2ecf20Sopenharmony_ci	0xb3, 0x33, 0x91, 0x6a, 0xc9, 0x1a, 0x41, 0xc9,
4208c2ecf20Sopenharmony_ci	0x0f, 0xf3, 0x10, 0x0e, 0xfd, 0x53, 0xff, 0x6c,
4218c2ecf20Sopenharmony_ci	0x16, 0x52, 0xd9, 0xf3, 0xf7, 0x98, 0x2e, 0xc9,
4228c2ecf20Sopenharmony_ci	0x07, 0x31, 0x2c, 0x0c, 0x72, 0xd7, 0xc5, 0xc6,
4238c2ecf20Sopenharmony_ci	0x08, 0x2a, 0x7b, 0xda, 0xbd, 0x7e, 0x02, 0xea,
4248c2ecf20Sopenharmony_ci	0x1a, 0xbb, 0xf2, 0x04, 0x27, 0x61, 0x28, 0x8e,
4258c2ecf20Sopenharmony_ci	0xf5, 0x04, 0x03, 0x1f, 0x4c, 0x07, 0x55, 0x82,
4268c2ecf20Sopenharmony_ci	0xec, 0x1e, 0xd7, 0x8b, 0x2f, 0x65, 0x56, 0xd1,
4278c2ecf20Sopenharmony_ci	0xd9, 0x1e, 0x3c, 0xe9, 0x1f, 0x5e, 0x98, 0x70,
4288c2ecf20Sopenharmony_ci	0x38, 0x4a, 0x8c, 0x49, 0xc5, 0x43, 0xa0, 0xa1,
4298c2ecf20Sopenharmony_ci	0x8b, 0x74, 0x9d, 0x4c, 0x62, 0x0d, 0x10, 0x0c,
4308c2ecf20Sopenharmony_ci	0xf4, 0x6c, 0x8f, 0xe0, 0xaa, 0x9a, 0x8d, 0xb7,
4318c2ecf20Sopenharmony_ci	0xe0, 0xbe, 0x4c, 0x87, 0xf1, 0x98, 0x2f, 0xcc,
4328c2ecf20Sopenharmony_ci	0xed, 0xc0, 0x52, 0x29, 0xdc, 0x83, 0xf8, 0xfc,
4338c2ecf20Sopenharmony_ci	0x2c, 0x0e, 0xa8, 0x51, 0x4d, 0x80, 0x0d, 0xa3,
4348c2ecf20Sopenharmony_ci	0xfe, 0xd8, 0x37, 0xe7, 0x41, 0x24, 0xfc, 0xfb,
4358c2ecf20Sopenharmony_ci	0x75, 0xe3, 0x71, 0x7b, 0x57, 0x45, 0xf5, 0x97,
4368c2ecf20Sopenharmony_ci	0x73, 0x65, 0x63, 0x14, 0x74, 0xb8, 0x82, 0x9f,
4378c2ecf20Sopenharmony_ci	0xf8, 0x60, 0x2f, 0x8a, 0xf2, 0x4e, 0xf1, 0x39,
4388c2ecf20Sopenharmony_ci	0xda, 0x33, 0x91, 0xf8, 0x36, 0xe0, 0x8d, 0x3f,
4398c2ecf20Sopenharmony_ci	0x1f, 0x3b, 0x56, 0xdc, 0xa0, 0x8f, 0x3c, 0x9d,
4408c2ecf20Sopenharmony_ci	0x71, 0x52, 0xa7, 0xb8, 0xc0, 0xa5, 0xc6, 0xa2,
4418c2ecf20Sopenharmony_ci	0x73, 0xda, 0xf4, 0x4b, 0x74, 0x5b, 0x00, 0x3d,
4428c2ecf20Sopenharmony_ci	0x99, 0xd7, 0x96, 0xba, 0xe6, 0xe1, 0xa6, 0x96,
4438c2ecf20Sopenharmony_ci	0x38, 0xad, 0xb3, 0xc0, 0xd2, 0xba, 0x91, 0x6b,
4448c2ecf20Sopenharmony_ci	0xf9, 0x19, 0xdd, 0x3b, 0xbe, 0xbe, 0x9c, 0x20,
4458c2ecf20Sopenharmony_ci	0x50, 0xba, 0xa1, 0xd0, 0xce, 0x11, 0xbd, 0x95,
4468c2ecf20Sopenharmony_ci	0xd8, 0xd1, 0xdd, 0x33, 0x85, 0x74, 0xdc, 0xdb,
4478c2ecf20Sopenharmony_ci	0x66, 0x76, 0x44, 0xdc, 0x03, 0x74, 0x48, 0x35,
4488c2ecf20Sopenharmony_ci	0x98, 0xb1, 0x18, 0x47, 0x94, 0x7d, 0xff, 0x62,
4498c2ecf20Sopenharmony_ci	0xe4, 0x58, 0x78, 0xab, 0xed, 0x95, 0x36, 0xd9,
4508c2ecf20Sopenharmony_ci	0x84, 0x91, 0x82, 0x64, 0x41, 0xbb, 0x58, 0xe6,
4518c2ecf20Sopenharmony_ci	0x1c, 0x20, 0x6d, 0x15, 0x6b, 0x13, 0x96, 0xe8,
4528c2ecf20Sopenharmony_ci	0x35, 0x7f, 0xdc, 0x40, 0x2c, 0xe9, 0xbc, 0x8a,
4538c2ecf20Sopenharmony_ci	0x4f, 0x92, 0xec, 0x06, 0x2d, 0x50, 0xdf, 0x93,
4548c2ecf20Sopenharmony_ci	0x5d, 0x65, 0x5a, 0xa8, 0xfc, 0x20, 0x50, 0x14,
4558c2ecf20Sopenharmony_ci	0xa9, 0x8a, 0x7e, 0x1d, 0x08, 0x1f, 0xe2, 0x99,
4568c2ecf20Sopenharmony_ci	0xd0, 0xbe, 0xfb, 0x3a, 0x21, 0x9d, 0xad, 0x86,
4578c2ecf20Sopenharmony_ci	0x54, 0xfd, 0x0d, 0x98, 0x1c, 0x5a, 0x6f, 0x1f,
4588c2ecf20Sopenharmony_ci	0x9a, 0x40, 0xcd, 0xa2, 0xff, 0x6a, 0xf1, 0x54
4598c2ecf20Sopenharmony_ci};
4608c2ecf20Sopenharmony_cistatic const u8 enc_assoc008[] __initconst = { };
4618c2ecf20Sopenharmony_cistatic const u8 enc_nonce008[] __initconst = {
4628c2ecf20Sopenharmony_ci	0x0e, 0x0d, 0x57, 0xbb, 0x7b, 0x40, 0x54, 0x02
4638c2ecf20Sopenharmony_ci};
4648c2ecf20Sopenharmony_cistatic const u8 enc_key008[] __initconst = {
4658c2ecf20Sopenharmony_ci	0xf2, 0xaa, 0x4f, 0x99, 0xfd, 0x3e, 0xa8, 0x53,
4668c2ecf20Sopenharmony_ci	0xc1, 0x44, 0xe9, 0x81, 0x18, 0xdc, 0xf5, 0xf0,
4678c2ecf20Sopenharmony_ci	0x3e, 0x44, 0x15, 0x59, 0xe0, 0xc5, 0x44, 0x86,
4688c2ecf20Sopenharmony_ci	0xc3, 0x91, 0xa8, 0x75, 0xc0, 0x12, 0x46, 0xba
4698c2ecf20Sopenharmony_ci};
4708c2ecf20Sopenharmony_ci
4718c2ecf20Sopenharmony_cistatic const u8 enc_input009[] __initconst = {
4728c2ecf20Sopenharmony_ci	0xe6, 0xc3, 0xdb, 0x63, 0x55, 0x15, 0xe3, 0x5b,
4738c2ecf20Sopenharmony_ci	0xb7, 0x4b, 0x27, 0x8b, 0x5a, 0xdd, 0xc2, 0xe8,
4748c2ecf20Sopenharmony_ci	0x3a, 0x6b, 0xd7, 0x81, 0x96, 0x35, 0x97, 0xca,
4758c2ecf20Sopenharmony_ci	0xd7, 0x68, 0xe8, 0xef, 0xce, 0xab, 0xda, 0x09,
4768c2ecf20Sopenharmony_ci	0x6e, 0xd6, 0x8e, 0xcb, 0x55, 0xb5, 0xe1, 0xe5,
4778c2ecf20Sopenharmony_ci	0x57, 0xfd, 0xc4, 0xe3, 0xe0, 0x18, 0x4f, 0x85,
4788c2ecf20Sopenharmony_ci	0xf5, 0x3f, 0x7e, 0x4b, 0x88, 0xc9, 0x52, 0x44,
4798c2ecf20Sopenharmony_ci	0x0f, 0xea, 0xaf, 0x1f, 0x71, 0x48, 0x9f, 0x97,
4808c2ecf20Sopenharmony_ci	0x6d, 0xb9, 0x6f, 0x00, 0xa6, 0xde, 0x2b, 0x77,
4818c2ecf20Sopenharmony_ci	0x8b, 0x15, 0xad, 0x10, 0xa0, 0x2b, 0x7b, 0x41,
4828c2ecf20Sopenharmony_ci	0x90, 0x03, 0x2d, 0x69, 0xae, 0xcc, 0x77, 0x7c,
4838c2ecf20Sopenharmony_ci	0xa5, 0x9d, 0x29, 0x22, 0xc2, 0xea, 0xb4, 0x00,
4848c2ecf20Sopenharmony_ci	0x1a, 0xd2, 0x7a, 0x98, 0x8a, 0xf9, 0xf7, 0x82,
4858c2ecf20Sopenharmony_ci	0xb0, 0xab, 0xd8, 0xa6, 0x94, 0x8d, 0x58, 0x2f,
4868c2ecf20Sopenharmony_ci	0x01, 0x9e, 0x00, 0x20, 0xfc, 0x49, 0xdc, 0x0e,
4878c2ecf20Sopenharmony_ci	0x03, 0xe8, 0x45, 0x10, 0xd6, 0xa8, 0xda, 0x55,
4888c2ecf20Sopenharmony_ci	0x10, 0x9a, 0xdf, 0x67, 0x22, 0x8b, 0x43, 0xab,
4898c2ecf20Sopenharmony_ci	0x00, 0xbb, 0x02, 0xc8, 0xdd, 0x7b, 0x97, 0x17,
4908c2ecf20Sopenharmony_ci	0xd7, 0x1d, 0x9e, 0x02, 0x5e, 0x48, 0xde, 0x8e,
4918c2ecf20Sopenharmony_ci	0xcf, 0x99, 0x07, 0x95, 0x92, 0x3c, 0x5f, 0x9f,
4928c2ecf20Sopenharmony_ci	0xc5, 0x8a, 0xc0, 0x23, 0xaa, 0xd5, 0x8c, 0x82,
4938c2ecf20Sopenharmony_ci	0x6e, 0x16, 0x92, 0xb1, 0x12, 0x17, 0x07, 0xc3,
4948c2ecf20Sopenharmony_ci	0xfb, 0x36, 0xf5, 0x6c, 0x35, 0xd6, 0x06, 0x1f,
4958c2ecf20Sopenharmony_ci	0x9f, 0xa7, 0x94, 0xa2, 0x38, 0x63, 0x9c, 0xb0,
4968c2ecf20Sopenharmony_ci	0x71, 0xb3, 0xa5, 0xd2, 0xd8, 0xba, 0x9f, 0x08,
4978c2ecf20Sopenharmony_ci	0x01, 0xb3, 0xff, 0x04, 0x97, 0x73, 0x45, 0x1b,
4988c2ecf20Sopenharmony_ci	0xd5, 0xa9, 0x9c, 0x80, 0xaf, 0x04, 0x9a, 0x85,
4998c2ecf20Sopenharmony_ci	0xdb, 0x32, 0x5b, 0x5d, 0x1a, 0xc1, 0x36, 0x28,
5008c2ecf20Sopenharmony_ci	0x10, 0x79, 0xf1, 0x3c, 0xbf, 0x1a, 0x41, 0x5c,
5018c2ecf20Sopenharmony_ci	0x4e, 0xdf, 0xb2, 0x7c, 0x79, 0x3b, 0x7a, 0x62,
5028c2ecf20Sopenharmony_ci	0x3d, 0x4b, 0xc9, 0x9b, 0x2a, 0x2e, 0x7c, 0xa2,
5038c2ecf20Sopenharmony_ci	0xb1, 0x11, 0x98, 0xa7, 0x34, 0x1a, 0x00, 0xf3,
5048c2ecf20Sopenharmony_ci	0xd1, 0xbc, 0x18, 0x22, 0xba, 0x02, 0x56, 0x62,
5058c2ecf20Sopenharmony_ci	0x31, 0x10, 0x11, 0x6d, 0xe0, 0x54, 0x9d, 0x40,
5068c2ecf20Sopenharmony_ci	0x1f, 0x26, 0x80, 0x41, 0xca, 0x3f, 0x68, 0x0f,
5078c2ecf20Sopenharmony_ci	0x32, 0x1d, 0x0a, 0x8e, 0x79, 0xd8, 0xa4, 0x1b,
5088c2ecf20Sopenharmony_ci	0x29, 0x1c, 0x90, 0x8e, 0xc5, 0xe3, 0xb4, 0x91,
5098c2ecf20Sopenharmony_ci	0x37, 0x9a, 0x97, 0x86, 0x99, 0xd5, 0x09, 0xc5,
5108c2ecf20Sopenharmony_ci	0xbb, 0xa3, 0x3f, 0x21, 0x29, 0x82, 0x14, 0x5c,
5118c2ecf20Sopenharmony_ci	0xab, 0x25, 0xfb, 0xf2, 0x4f, 0x58, 0x26, 0xd4,
5128c2ecf20Sopenharmony_ci	0x83, 0xaa, 0x66, 0x89, 0x67, 0x7e, 0xc0, 0x49,
5138c2ecf20Sopenharmony_ci	0xe1, 0x11, 0x10, 0x7f, 0x7a, 0xda, 0x29, 0x04,
5148c2ecf20Sopenharmony_ci	0xff, 0xf0, 0xcb, 0x09, 0x7c, 0x9d, 0xfa, 0x03,
5158c2ecf20Sopenharmony_ci	0x6f, 0x81, 0x09, 0x31, 0x60, 0xfb, 0x08, 0xfa,
5168c2ecf20Sopenharmony_ci	0x74, 0xd3, 0x64, 0x44, 0x7c, 0x55, 0x85, 0xec,
5178c2ecf20Sopenharmony_ci	0x9c, 0x6e, 0x25, 0xb7, 0x6c, 0xc5, 0x37, 0xb6,
5188c2ecf20Sopenharmony_ci	0x83, 0x87, 0x72, 0x95, 0x8b, 0x9d, 0xe1, 0x69,
5198c2ecf20Sopenharmony_ci	0x5c, 0x31, 0x95, 0x42, 0xa6, 0x2c, 0xd1, 0x36,
5208c2ecf20Sopenharmony_ci	0x47, 0x1f, 0xec, 0x54, 0xab, 0xa2, 0x1c, 0xd8,
5218c2ecf20Sopenharmony_ci	0x00, 0xcc, 0xbc, 0x0d, 0x65, 0xe2, 0x67, 0xbf,
5228c2ecf20Sopenharmony_ci	0xbc, 0xea, 0xee, 0x9e, 0xe4, 0x36, 0x95, 0xbe,
5238c2ecf20Sopenharmony_ci	0x73, 0xd9, 0xa6, 0xd9, 0x0f, 0xa0, 0xcc, 0x82,
5248c2ecf20Sopenharmony_ci	0x76, 0x26, 0xad, 0x5b, 0x58, 0x6c, 0x4e, 0xab,
5258c2ecf20Sopenharmony_ci	0x29, 0x64, 0xd3, 0xd9, 0xa9, 0x08, 0x8c, 0x1d,
5268c2ecf20Sopenharmony_ci	0xa1, 0x4f, 0x80, 0xd8, 0x3f, 0x94, 0xfb, 0xd3,
5278c2ecf20Sopenharmony_ci	0x7b, 0xfc, 0xd1, 0x2b, 0xc3, 0x21, 0xeb, 0xe5,
5288c2ecf20Sopenharmony_ci	0x1c, 0x84, 0x23, 0x7f, 0x4b, 0xfa, 0xdb, 0x34,
5298c2ecf20Sopenharmony_ci	0x18, 0xa2, 0xc2, 0xe5, 0x13, 0xfe, 0x6c, 0x49,
5308c2ecf20Sopenharmony_ci	0x81, 0xd2, 0x73, 0xe7, 0xe2, 0xd7, 0xe4, 0x4f,
5318c2ecf20Sopenharmony_ci	0x4b, 0x08, 0x6e, 0xb1, 0x12, 0x22, 0x10, 0x9d,
5328c2ecf20Sopenharmony_ci	0xac, 0x51, 0x1e, 0x17, 0xd9, 0x8a, 0x0b, 0x42,
5338c2ecf20Sopenharmony_ci	0x88, 0x16, 0x81, 0x37, 0x7c, 0x6a, 0xf7, 0xef,
5348c2ecf20Sopenharmony_ci	0x2d, 0xe3, 0xd9, 0xf8, 0x5f, 0xe0, 0x53, 0x27,
5358c2ecf20Sopenharmony_ci	0x74, 0xb9, 0xe2, 0xd6, 0x1c, 0x80, 0x2c, 0x52,
5368c2ecf20Sopenharmony_ci	0x65
5378c2ecf20Sopenharmony_ci};
5388c2ecf20Sopenharmony_cistatic const u8 enc_output009[] __initconst = {
5398c2ecf20Sopenharmony_ci	0xfd, 0x81, 0x8d, 0xd0, 0x3d, 0xb4, 0xd5, 0xdf,
5408c2ecf20Sopenharmony_ci	0xd3, 0x42, 0x47, 0x5a, 0x6d, 0x19, 0x27, 0x66,
5418c2ecf20Sopenharmony_ci	0x4b, 0x2e, 0x0c, 0x27, 0x9c, 0x96, 0x4c, 0x72,
5428c2ecf20Sopenharmony_ci	0x02, 0xa3, 0x65, 0xc3, 0xb3, 0x6f, 0x2e, 0xbd,
5438c2ecf20Sopenharmony_ci	0x63, 0x8a, 0x4a, 0x5d, 0x29, 0xa2, 0xd0, 0x28,
5448c2ecf20Sopenharmony_ci	0x48, 0xc5, 0x3d, 0x98, 0xa3, 0xbc, 0xe0, 0xbe,
5458c2ecf20Sopenharmony_ci	0x3b, 0x3f, 0xe6, 0x8a, 0xa4, 0x7f, 0x53, 0x06,
5468c2ecf20Sopenharmony_ci	0xfa, 0x7f, 0x27, 0x76, 0x72, 0x31, 0xa1, 0xf5,
5478c2ecf20Sopenharmony_ci	0xd6, 0x0c, 0x52, 0x47, 0xba, 0xcd, 0x4f, 0xd7,
5488c2ecf20Sopenharmony_ci	0xeb, 0x05, 0x48, 0x0d, 0x7c, 0x35, 0x4a, 0x09,
5498c2ecf20Sopenharmony_ci	0xc9, 0x76, 0x71, 0x02, 0xa3, 0xfb, 0xb7, 0x1a,
5508c2ecf20Sopenharmony_ci	0x65, 0xb7, 0xed, 0x98, 0xc6, 0x30, 0x8a, 0x00,
5518c2ecf20Sopenharmony_ci	0xae, 0xa1, 0x31, 0xe5, 0xb5, 0x9e, 0x6d, 0x62,
5528c2ecf20Sopenharmony_ci	0xda, 0xda, 0x07, 0x0f, 0x38, 0x38, 0xd3, 0xcb,
5538c2ecf20Sopenharmony_ci	0xc1, 0xb0, 0xad, 0xec, 0x72, 0xec, 0xb1, 0xa2,
5548c2ecf20Sopenharmony_ci	0x7b, 0x59, 0xf3, 0x3d, 0x2b, 0xef, 0xcd, 0x28,
5558c2ecf20Sopenharmony_ci	0x5b, 0x83, 0xcc, 0x18, 0x91, 0x88, 0xb0, 0x2e,
5568c2ecf20Sopenharmony_ci	0xf9, 0x29, 0x31, 0x18, 0xf9, 0x4e, 0xe9, 0x0a,
5578c2ecf20Sopenharmony_ci	0x91, 0x92, 0x9f, 0xae, 0x2d, 0xad, 0xf4, 0xe6,
5588c2ecf20Sopenharmony_ci	0x1a, 0xe2, 0xa4, 0xee, 0x47, 0x15, 0xbf, 0x83,
5598c2ecf20Sopenharmony_ci	0x6e, 0xd7, 0x72, 0x12, 0x3b, 0x2d, 0x24, 0xe9,
5608c2ecf20Sopenharmony_ci	0xb2, 0x55, 0xcb, 0x3c, 0x10, 0xf0, 0x24, 0x8a,
5618c2ecf20Sopenharmony_ci	0x4a, 0x02, 0xea, 0x90, 0x25, 0xf0, 0xb4, 0x79,
5628c2ecf20Sopenharmony_ci	0x3a, 0xef, 0x6e, 0xf5, 0x52, 0xdf, 0xb0, 0x0a,
5638c2ecf20Sopenharmony_ci	0xcd, 0x24, 0x1c, 0xd3, 0x2e, 0x22, 0x74, 0xea,
5648c2ecf20Sopenharmony_ci	0x21, 0x6f, 0xe9, 0xbd, 0xc8, 0x3e, 0x36, 0x5b,
5658c2ecf20Sopenharmony_ci	0x19, 0xf1, 0xca, 0x99, 0x0a, 0xb4, 0xa7, 0x52,
5668c2ecf20Sopenharmony_ci	0x1a, 0x4e, 0xf2, 0xad, 0x8d, 0x56, 0x85, 0xbb,
5678c2ecf20Sopenharmony_ci	0x64, 0x89, 0xba, 0x26, 0xf9, 0xc7, 0xe1, 0x89,
5688c2ecf20Sopenharmony_ci	0x19, 0x22, 0x77, 0xc3, 0xa8, 0xfc, 0xff, 0xad,
5698c2ecf20Sopenharmony_ci	0xfe, 0xb9, 0x48, 0xae, 0x12, 0x30, 0x9f, 0x19,
5708c2ecf20Sopenharmony_ci	0xfb, 0x1b, 0xef, 0x14, 0x87, 0x8a, 0x78, 0x71,
5718c2ecf20Sopenharmony_ci	0xf3, 0xf4, 0xb7, 0x00, 0x9c, 0x1d, 0xb5, 0x3d,
5728c2ecf20Sopenharmony_ci	0x49, 0x00, 0x0c, 0x06, 0xd4, 0x50, 0xf9, 0x54,
5738c2ecf20Sopenharmony_ci	0x45, 0xb2, 0x5b, 0x43, 0xdb, 0x6d, 0xcf, 0x1a,
5748c2ecf20Sopenharmony_ci	0xe9, 0x7a, 0x7a, 0xcf, 0xfc, 0x8a, 0x4e, 0x4d,
5758c2ecf20Sopenharmony_ci	0x0b, 0x07, 0x63, 0x28, 0xd8, 0xe7, 0x08, 0x95,
5768c2ecf20Sopenharmony_ci	0xdf, 0xa6, 0x72, 0x93, 0x2e, 0xbb, 0xa0, 0x42,
5778c2ecf20Sopenharmony_ci	0x89, 0x16, 0xf1, 0xd9, 0x0c, 0xf9, 0xa1, 0x16,
5788c2ecf20Sopenharmony_ci	0xfd, 0xd9, 0x03, 0xb4, 0x3b, 0x8a, 0xf5, 0xf6,
5798c2ecf20Sopenharmony_ci	0xe7, 0x6b, 0x2e, 0x8e, 0x4c, 0x3d, 0xe2, 0xaf,
5808c2ecf20Sopenharmony_ci	0x08, 0x45, 0x03, 0xff, 0x09, 0xb6, 0xeb, 0x2d,
5818c2ecf20Sopenharmony_ci	0xc6, 0x1b, 0x88, 0x94, 0xac, 0x3e, 0xf1, 0x9f,
5828c2ecf20Sopenharmony_ci	0x0e, 0x0e, 0x2b, 0xd5, 0x00, 0x4d, 0x3f, 0x3b,
5838c2ecf20Sopenharmony_ci	0x53, 0xae, 0xaf, 0x1c, 0x33, 0x5f, 0x55, 0x6e,
5848c2ecf20Sopenharmony_ci	0x8d, 0xaf, 0x05, 0x7a, 0x10, 0x34, 0xc9, 0xf4,
5858c2ecf20Sopenharmony_ci	0x66, 0xcb, 0x62, 0x12, 0xa6, 0xee, 0xe8, 0x1c,
5868c2ecf20Sopenharmony_ci	0x5d, 0x12, 0x86, 0xdb, 0x6f, 0x1c, 0x33, 0xc4,
5878c2ecf20Sopenharmony_ci	0x1c, 0xda, 0x82, 0x2d, 0x3b, 0x59, 0xfe, 0xb1,
5888c2ecf20Sopenharmony_ci	0xa4, 0x59, 0x41, 0x86, 0xd0, 0xef, 0xae, 0xfb,
5898c2ecf20Sopenharmony_ci	0xda, 0x6d, 0x11, 0xb8, 0xca, 0xe9, 0x6e, 0xff,
5908c2ecf20Sopenharmony_ci	0xf7, 0xa9, 0xd9, 0x70, 0x30, 0xfc, 0x53, 0xe2,
5918c2ecf20Sopenharmony_ci	0xd7, 0xa2, 0x4e, 0xc7, 0x91, 0xd9, 0x07, 0x06,
5928c2ecf20Sopenharmony_ci	0xaa, 0xdd, 0xb0, 0x59, 0x28, 0x1d, 0x00, 0x66,
5938c2ecf20Sopenharmony_ci	0xc5, 0x54, 0xc2, 0xfc, 0x06, 0xda, 0x05, 0x90,
5948c2ecf20Sopenharmony_ci	0x52, 0x1d, 0x37, 0x66, 0xee, 0xf0, 0xb2, 0x55,
5958c2ecf20Sopenharmony_ci	0x8a, 0x5d, 0xd2, 0x38, 0x86, 0x94, 0x9b, 0xfc,
5968c2ecf20Sopenharmony_ci	0x10, 0x4c, 0xa1, 0xb9, 0x64, 0x3e, 0x44, 0xb8,
5978c2ecf20Sopenharmony_ci	0x5f, 0xb0, 0x0c, 0xec, 0xe0, 0xc9, 0xe5, 0x62,
5988c2ecf20Sopenharmony_ci	0x75, 0x3f, 0x09, 0xd5, 0xf5, 0xd9, 0x26, 0xba,
5998c2ecf20Sopenharmony_ci	0x9e, 0xd2, 0xf4, 0xb9, 0x48, 0x0a, 0xbc, 0xa2,
6008c2ecf20Sopenharmony_ci	0xd6, 0x7c, 0x36, 0x11, 0x7d, 0x26, 0x81, 0x89,
6018c2ecf20Sopenharmony_ci	0xcf, 0xa4, 0xad, 0x73, 0x0e, 0xee, 0xcc, 0x06,
6028c2ecf20Sopenharmony_ci	0xa9, 0xdb, 0xb1, 0xfd, 0xfb, 0x09, 0x7f, 0x90,
6038c2ecf20Sopenharmony_ci	0x42, 0x37, 0x2f, 0xe1, 0x9c, 0x0f, 0x6f, 0xcf,
6048c2ecf20Sopenharmony_ci	0x43, 0xb5, 0xd9, 0x90, 0xe1, 0x85, 0xf5, 0xa8,
6058c2ecf20Sopenharmony_ci	0xae
6068c2ecf20Sopenharmony_ci};
6078c2ecf20Sopenharmony_cistatic const u8 enc_assoc009[] __initconst = {
6088c2ecf20Sopenharmony_ci	0x5a, 0x27, 0xff, 0xeb, 0xdf, 0x84, 0xb2, 0x9e,
6098c2ecf20Sopenharmony_ci	0xef
6108c2ecf20Sopenharmony_ci};
6118c2ecf20Sopenharmony_cistatic const u8 enc_nonce009[] __initconst = {
6128c2ecf20Sopenharmony_ci	0xef, 0x2d, 0x63, 0xee, 0x6b, 0x80, 0x8b, 0x78
6138c2ecf20Sopenharmony_ci};
6148c2ecf20Sopenharmony_cistatic const u8 enc_key009[] __initconst = {
6158c2ecf20Sopenharmony_ci	0xea, 0xbc, 0x56, 0x99, 0xe3, 0x50, 0xff, 0xc5,
6168c2ecf20Sopenharmony_ci	0xcc, 0x1a, 0xd7, 0xc1, 0x57, 0x72, 0xea, 0x86,
6178c2ecf20Sopenharmony_ci	0x5b, 0x89, 0x88, 0x61, 0x3d, 0x2f, 0x9b, 0xb2,
6188c2ecf20Sopenharmony_ci	0xe7, 0x9c, 0xec, 0x74, 0x6e, 0x3e, 0xf4, 0x3b
6198c2ecf20Sopenharmony_ci};
6208c2ecf20Sopenharmony_ci
6218c2ecf20Sopenharmony_cistatic const u8 enc_input010[] __initconst = {
6228c2ecf20Sopenharmony_ci	0x42, 0x93, 0xe4, 0xeb, 0x97, 0xb0, 0x57, 0xbf,
6238c2ecf20Sopenharmony_ci	0x1a, 0x8b, 0x1f, 0xe4, 0x5f, 0x36, 0x20, 0x3c,
6248c2ecf20Sopenharmony_ci	0xef, 0x0a, 0xa9, 0x48, 0x5f, 0x5f, 0x37, 0x22,
6258c2ecf20Sopenharmony_ci	0x3a, 0xde, 0xe3, 0xae, 0xbe, 0xad, 0x07, 0xcc,
6268c2ecf20Sopenharmony_ci	0xb1, 0xf6, 0xf5, 0xf9, 0x56, 0xdd, 0xe7, 0x16,
6278c2ecf20Sopenharmony_ci	0x1e, 0x7f, 0xdf, 0x7a, 0x9e, 0x75, 0xb7, 0xc7,
6288c2ecf20Sopenharmony_ci	0xbe, 0xbe, 0x8a, 0x36, 0x04, 0xc0, 0x10, 0xf4,
6298c2ecf20Sopenharmony_ci	0x95, 0x20, 0x03, 0xec, 0xdc, 0x05, 0xa1, 0x7d,
6308c2ecf20Sopenharmony_ci	0xc4, 0xa9, 0x2c, 0x82, 0xd0, 0xbc, 0x8b, 0xc5,
6318c2ecf20Sopenharmony_ci	0xc7, 0x45, 0x50, 0xf6, 0xa2, 0x1a, 0xb5, 0x46,
6328c2ecf20Sopenharmony_ci	0x3b, 0x73, 0x02, 0xa6, 0x83, 0x4b, 0x73, 0x82,
6338c2ecf20Sopenharmony_ci	0x58, 0x5e, 0x3b, 0x65, 0x2f, 0x0e, 0xfd, 0x2b,
6348c2ecf20Sopenharmony_ci	0x59, 0x16, 0xce, 0xa1, 0x60, 0x9c, 0xe8, 0x3a,
6358c2ecf20Sopenharmony_ci	0x99, 0xed, 0x8d, 0x5a, 0xcf, 0xf6, 0x83, 0xaf,
6368c2ecf20Sopenharmony_ci	0xba, 0xd7, 0x73, 0x73, 0x40, 0x97, 0x3d, 0xca,
6378c2ecf20Sopenharmony_ci	0xef, 0x07, 0x57, 0xe6, 0xd9, 0x70, 0x0e, 0x95,
6388c2ecf20Sopenharmony_ci	0xae, 0xa6, 0x8d, 0x04, 0xcc, 0xee, 0xf7, 0x09,
6398c2ecf20Sopenharmony_ci	0x31, 0x77, 0x12, 0xa3, 0x23, 0x97, 0x62, 0xb3,
6408c2ecf20Sopenharmony_ci	0x7b, 0x32, 0xfb, 0x80, 0x14, 0x48, 0x81, 0xc3,
6418c2ecf20Sopenharmony_ci	0xe5, 0xea, 0x91, 0x39, 0x52, 0x81, 0xa2, 0x4f,
6428c2ecf20Sopenharmony_ci	0xe4, 0xb3, 0x09, 0xff, 0xde, 0x5e, 0xe9, 0x58,
6438c2ecf20Sopenharmony_ci	0x84, 0x6e, 0xf9, 0x3d, 0xdf, 0x25, 0xea, 0xad,
6448c2ecf20Sopenharmony_ci	0xae, 0xe6, 0x9a, 0xd1, 0x89, 0x55, 0xd3, 0xde,
6458c2ecf20Sopenharmony_ci	0x6c, 0x52, 0xdb, 0x70, 0xfe, 0x37, 0xce, 0x44,
6468c2ecf20Sopenharmony_ci	0x0a, 0xa8, 0x25, 0x5f, 0x92, 0xc1, 0x33, 0x4a,
6478c2ecf20Sopenharmony_ci	0x4f, 0x9b, 0x62, 0x35, 0xff, 0xce, 0xc0, 0xa9,
6488c2ecf20Sopenharmony_ci	0x60, 0xce, 0x52, 0x00, 0x97, 0x51, 0x35, 0x26,
6498c2ecf20Sopenharmony_ci	0x2e, 0xb9, 0x36, 0xa9, 0x87, 0x6e, 0x1e, 0xcc,
6508c2ecf20Sopenharmony_ci	0x91, 0x78, 0x53, 0x98, 0x86, 0x5b, 0x9c, 0x74,
6518c2ecf20Sopenharmony_ci	0x7d, 0x88, 0x33, 0xe1, 0xdf, 0x37, 0x69, 0x2b,
6528c2ecf20Sopenharmony_ci	0xbb, 0xf1, 0x4d, 0xf4, 0xd1, 0xf1, 0x39, 0x93,
6538c2ecf20Sopenharmony_ci	0x17, 0x51, 0x19, 0xe3, 0x19, 0x1e, 0x76, 0x37,
6548c2ecf20Sopenharmony_ci	0x25, 0xfb, 0x09, 0x27, 0x6a, 0xab, 0x67, 0x6f,
6558c2ecf20Sopenharmony_ci	0x14, 0x12, 0x64, 0xe7, 0xc4, 0x07, 0xdf, 0x4d,
6568c2ecf20Sopenharmony_ci	0x17, 0xbb, 0x6d, 0xe0, 0xe9, 0xb9, 0xab, 0xca,
6578c2ecf20Sopenharmony_ci	0x10, 0x68, 0xaf, 0x7e, 0xb7, 0x33, 0x54, 0x73,
6588c2ecf20Sopenharmony_ci	0x07, 0x6e, 0xf7, 0x81, 0x97, 0x9c, 0x05, 0x6f,
6598c2ecf20Sopenharmony_ci	0x84, 0x5f, 0xd2, 0x42, 0xfb, 0x38, 0xcf, 0xd1,
6608c2ecf20Sopenharmony_ci	0x2f, 0x14, 0x30, 0x88, 0x98, 0x4d, 0x5a, 0xa9,
6618c2ecf20Sopenharmony_ci	0x76, 0xd5, 0x4f, 0x3e, 0x70, 0x6c, 0x85, 0x76,
6628c2ecf20Sopenharmony_ci	0xd7, 0x01, 0xa0, 0x1a, 0xc8, 0x4e, 0xaa, 0xac,
6638c2ecf20Sopenharmony_ci	0x78, 0xfe, 0x46, 0xde, 0x6a, 0x05, 0x46, 0xa7,
6648c2ecf20Sopenharmony_ci	0x43, 0x0c, 0xb9, 0xde, 0xb9, 0x68, 0xfb, 0xce,
6658c2ecf20Sopenharmony_ci	0x42, 0x99, 0x07, 0x4d, 0x0b, 0x3b, 0x5a, 0x30,
6668c2ecf20Sopenharmony_ci	0x35, 0xa8, 0xf9, 0x3a, 0x73, 0xef, 0x0f, 0xdb,
6678c2ecf20Sopenharmony_ci	0x1e, 0x16, 0x42, 0xc4, 0xba, 0xae, 0x58, 0xaa,
6688c2ecf20Sopenharmony_ci	0xf8, 0xe5, 0x75, 0x2f, 0x1b, 0x15, 0x5c, 0xfd,
6698c2ecf20Sopenharmony_ci	0x0a, 0x97, 0xd0, 0xe4, 0x37, 0x83, 0x61, 0x5f,
6708c2ecf20Sopenharmony_ci	0x43, 0xa6, 0xc7, 0x3f, 0x38, 0x59, 0xe6, 0xeb,
6718c2ecf20Sopenharmony_ci	0xa3, 0x90, 0xc3, 0xaa, 0xaa, 0x5a, 0xd3, 0x34,
6728c2ecf20Sopenharmony_ci	0xd4, 0x17, 0xc8, 0x65, 0x3e, 0x57, 0xbc, 0x5e,
6738c2ecf20Sopenharmony_ci	0xdd, 0x9e, 0xb7, 0xf0, 0x2e, 0x5b, 0xb2, 0x1f,
6748c2ecf20Sopenharmony_ci	0x8a, 0x08, 0x0d, 0x45, 0x91, 0x0b, 0x29, 0x53,
6758c2ecf20Sopenharmony_ci	0x4f, 0x4c, 0x5a, 0x73, 0x56, 0xfe, 0xaf, 0x41,
6768c2ecf20Sopenharmony_ci	0x01, 0x39, 0x0a, 0x24, 0x3c, 0x7e, 0xbe, 0x4e,
6778c2ecf20Sopenharmony_ci	0x53, 0xf3, 0xeb, 0x06, 0x66, 0x51, 0x28, 0x1d,
6788c2ecf20Sopenharmony_ci	0xbd, 0x41, 0x0a, 0x01, 0xab, 0x16, 0x47, 0x27,
6798c2ecf20Sopenharmony_ci	0x47, 0x47, 0xf7, 0xcb, 0x46, 0x0a, 0x70, 0x9e,
6808c2ecf20Sopenharmony_ci	0x01, 0x9c, 0x09, 0xe1, 0x2a, 0x00, 0x1a, 0xd8,
6818c2ecf20Sopenharmony_ci	0xd4, 0x79, 0x9d, 0x80, 0x15, 0x8e, 0x53, 0x2a,
6828c2ecf20Sopenharmony_ci	0x65, 0x83, 0x78, 0x3e, 0x03, 0x00, 0x07, 0x12,
6838c2ecf20Sopenharmony_ci	0x1f, 0x33, 0x3e, 0x7b, 0x13, 0x37, 0xf1, 0xc3,
6848c2ecf20Sopenharmony_ci	0xef, 0xb7, 0xc1, 0x20, 0x3c, 0x3e, 0x67, 0x66,
6858c2ecf20Sopenharmony_ci	0x5d, 0x88, 0xa7, 0x7d, 0x33, 0x50, 0x77, 0xb0,
6868c2ecf20Sopenharmony_ci	0x28, 0x8e, 0xe7, 0x2c, 0x2e, 0x7a, 0xf4, 0x3c,
6878c2ecf20Sopenharmony_ci	0x8d, 0x74, 0x83, 0xaf, 0x8e, 0x87, 0x0f, 0xe4,
6888c2ecf20Sopenharmony_ci	0x50, 0xff, 0x84, 0x5c, 0x47, 0x0c, 0x6a, 0x49,
6898c2ecf20Sopenharmony_ci	0xbf, 0x42, 0x86, 0x77, 0x15, 0x48, 0xa5, 0x90,
6908c2ecf20Sopenharmony_ci	0x5d, 0x93, 0xd6, 0x2a, 0x11, 0xd5, 0xd5, 0x11,
6918c2ecf20Sopenharmony_ci	0xaa, 0xce, 0xe7, 0x6f, 0xa5, 0xb0, 0x09, 0x2c,
6928c2ecf20Sopenharmony_ci	0x8d, 0xd3, 0x92, 0xf0, 0x5a, 0x2a, 0xda, 0x5b,
6938c2ecf20Sopenharmony_ci	0x1e, 0xd5, 0x9a, 0xc4, 0xc4, 0xf3, 0x49, 0x74,
6948c2ecf20Sopenharmony_ci	0x41, 0xca, 0xe8, 0xc1, 0xf8, 0x44, 0xd6, 0x3c,
6958c2ecf20Sopenharmony_ci	0xae, 0x6c, 0x1d, 0x9a, 0x30, 0x04, 0x4d, 0x27,
6968c2ecf20Sopenharmony_ci	0x0e, 0xb1, 0x5f, 0x59, 0xa2, 0x24, 0xe8, 0xe1,
6978c2ecf20Sopenharmony_ci	0x98, 0xc5, 0x6a, 0x4c, 0xfe, 0x41, 0xd2, 0x27,
6988c2ecf20Sopenharmony_ci	0x42, 0x52, 0xe1, 0xe9, 0x7d, 0x62, 0xe4, 0x88,
6998c2ecf20Sopenharmony_ci	0x0f, 0xad, 0xb2, 0x70, 0xcb, 0x9d, 0x4c, 0x27,
7008c2ecf20Sopenharmony_ci	0x2e, 0x76, 0x1e, 0x1a, 0x63, 0x65, 0xf5, 0x3b,
7018c2ecf20Sopenharmony_ci	0xf8, 0x57, 0x69, 0xeb, 0x5b, 0x38, 0x26, 0x39,
7028c2ecf20Sopenharmony_ci	0x33, 0x25, 0x45, 0x3e, 0x91, 0xb8, 0xd8, 0xc7,
7038c2ecf20Sopenharmony_ci	0xd5, 0x42, 0xc0, 0x22, 0x31, 0x74, 0xf4, 0xbc,
7048c2ecf20Sopenharmony_ci	0x0c, 0x23, 0xf1, 0xca, 0xc1, 0x8d, 0xd7, 0xbe,
7058c2ecf20Sopenharmony_ci	0xc9, 0x62, 0xe4, 0x08, 0x1a, 0xcf, 0x36, 0xd5,
7068c2ecf20Sopenharmony_ci	0xfe, 0x55, 0x21, 0x59, 0x91, 0x87, 0x87, 0xdf,
7078c2ecf20Sopenharmony_ci	0x06, 0xdb, 0xdf, 0x96, 0x45, 0x58, 0xda, 0x05,
7088c2ecf20Sopenharmony_ci	0xcd, 0x50, 0x4d, 0xd2, 0x7d, 0x05, 0x18, 0x73,
7098c2ecf20Sopenharmony_ci	0x6a, 0x8d, 0x11, 0x85, 0xa6, 0x88, 0xe8, 0xda,
7108c2ecf20Sopenharmony_ci	0xe6, 0x30, 0x33, 0xa4, 0x89, 0x31, 0x75, 0xbe,
7118c2ecf20Sopenharmony_ci	0x69, 0x43, 0x84, 0x43, 0x50, 0x87, 0xdd, 0x71,
7128c2ecf20Sopenharmony_ci	0x36, 0x83, 0xc3, 0x78, 0x74, 0x24, 0x0a, 0xed,
7138c2ecf20Sopenharmony_ci	0x7b, 0xdb, 0xa4, 0x24, 0x0b, 0xb9, 0x7e, 0x5d,
7148c2ecf20Sopenharmony_ci	0xff, 0xde, 0xb1, 0xef, 0x61, 0x5a, 0x45, 0x33,
7158c2ecf20Sopenharmony_ci	0xf6, 0x17, 0x07, 0x08, 0x98, 0x83, 0x92, 0x0f,
7168c2ecf20Sopenharmony_ci	0x23, 0x6d, 0xe6, 0xaa, 0x17, 0x54, 0xad, 0x6a,
7178c2ecf20Sopenharmony_ci	0xc8, 0xdb, 0x26, 0xbe, 0xb8, 0xb6, 0x08, 0xfa,
7188c2ecf20Sopenharmony_ci	0x68, 0xf1, 0xd7, 0x79, 0x6f, 0x18, 0xb4, 0x9e,
7198c2ecf20Sopenharmony_ci	0x2d, 0x3f, 0x1b, 0x64, 0xaf, 0x8d, 0x06, 0x0e,
7208c2ecf20Sopenharmony_ci	0x49, 0x28, 0xe0, 0x5d, 0x45, 0x68, 0x13, 0x87,
7218c2ecf20Sopenharmony_ci	0xfa, 0xde, 0x40, 0x7b, 0xd2, 0xc3, 0x94, 0xd5,
7228c2ecf20Sopenharmony_ci	0xe1, 0xd9, 0xc2, 0xaf, 0x55, 0x89, 0xeb, 0xb4,
7238c2ecf20Sopenharmony_ci	0x12, 0x59, 0xa8, 0xd4, 0xc5, 0x29, 0x66, 0x38,
7248c2ecf20Sopenharmony_ci	0xe6, 0xac, 0x22, 0x22, 0xd9, 0x64, 0x9b, 0x34,
7258c2ecf20Sopenharmony_ci	0x0a, 0x32, 0x9f, 0xc2, 0xbf, 0x17, 0x6c, 0x3f,
7268c2ecf20Sopenharmony_ci	0x71, 0x7a, 0x38, 0x6b, 0x98, 0xfb, 0x49, 0x36,
7278c2ecf20Sopenharmony_ci	0x89, 0xc9, 0xe2, 0xd6, 0xc7, 0x5d, 0xd0, 0x69,
7288c2ecf20Sopenharmony_ci	0x5f, 0x23, 0x35, 0xc9, 0x30, 0xe2, 0xfd, 0x44,
7298c2ecf20Sopenharmony_ci	0x58, 0x39, 0xd7, 0x97, 0xfb, 0x5c, 0x00, 0xd5,
7308c2ecf20Sopenharmony_ci	0x4f, 0x7a, 0x1a, 0x95, 0x8b, 0x62, 0x4b, 0xce,
7318c2ecf20Sopenharmony_ci	0xe5, 0x91, 0x21, 0x7b, 0x30, 0x00, 0xd6, 0xdd,
7328c2ecf20Sopenharmony_ci	0x6d, 0x02, 0x86, 0x49, 0x0f, 0x3c, 0x1a, 0x27,
7338c2ecf20Sopenharmony_ci	0x3c, 0xd3, 0x0e, 0x71, 0xf2, 0xff, 0xf5, 0x2f,
7348c2ecf20Sopenharmony_ci	0x87, 0xac, 0x67, 0x59, 0x81, 0xa3, 0xf7, 0xf8,
7358c2ecf20Sopenharmony_ci	0xd6, 0x11, 0x0c, 0x84, 0xa9, 0x03, 0xee, 0x2a,
7368c2ecf20Sopenharmony_ci	0xc4, 0xf3, 0x22, 0xab, 0x7c, 0xe2, 0x25, 0xf5,
7378c2ecf20Sopenharmony_ci	0x67, 0xa3, 0xe4, 0x11, 0xe0, 0x59, 0xb3, 0xca,
7388c2ecf20Sopenharmony_ci	0x87, 0xa0, 0xae, 0xc9, 0xa6, 0x62, 0x1b, 0x6e,
7398c2ecf20Sopenharmony_ci	0x4d, 0x02, 0x6b, 0x07, 0x9d, 0xfd, 0xd0, 0x92,
7408c2ecf20Sopenharmony_ci	0x06, 0xe1, 0xb2, 0x9a, 0x4a, 0x1f, 0x1f, 0x13,
7418c2ecf20Sopenharmony_ci	0x49, 0x99, 0x97, 0x08, 0xde, 0x7f, 0x98, 0xaf,
7428c2ecf20Sopenharmony_ci	0x51, 0x98, 0xee, 0x2c, 0xcb, 0xf0, 0x0b, 0xc6,
7438c2ecf20Sopenharmony_ci	0xb6, 0xb7, 0x2d, 0x9a, 0xb1, 0xac, 0xa6, 0xe3,
7448c2ecf20Sopenharmony_ci	0x15, 0x77, 0x9d, 0x6b, 0x1a, 0xe4, 0xfc, 0x8b,
7458c2ecf20Sopenharmony_ci	0xf2, 0x17, 0x59, 0x08, 0x04, 0x58, 0x81, 0x9d,
7468c2ecf20Sopenharmony_ci	0x1b, 0x1b, 0x69, 0x55, 0xc2, 0xb4, 0x3c, 0x1f,
7478c2ecf20Sopenharmony_ci	0x50, 0xf1, 0x7f, 0x77, 0x90, 0x4c, 0x66, 0x40,
7488c2ecf20Sopenharmony_ci	0x5a, 0xc0, 0x33, 0x1f, 0xcb, 0x05, 0x6d, 0x5c,
7498c2ecf20Sopenharmony_ci	0x06, 0x87, 0x52, 0xa2, 0x8f, 0x26, 0xd5, 0x4f
7508c2ecf20Sopenharmony_ci};
7518c2ecf20Sopenharmony_cistatic const u8 enc_output010[] __initconst = {
7528c2ecf20Sopenharmony_ci	0xe5, 0x26, 0xa4, 0x3d, 0xbd, 0x33, 0xd0, 0x4b,
7538c2ecf20Sopenharmony_ci	0x6f, 0x05, 0xa7, 0x6e, 0x12, 0x7a, 0xd2, 0x74,
7548c2ecf20Sopenharmony_ci	0xa6, 0xdd, 0xbd, 0x95, 0xeb, 0xf9, 0xa4, 0xf1,
7558c2ecf20Sopenharmony_ci	0x59, 0x93, 0x91, 0x70, 0xd9, 0xfe, 0x9a, 0xcd,
7568c2ecf20Sopenharmony_ci	0x53, 0x1f, 0x3a, 0xab, 0xa6, 0x7c, 0x9f, 0xa6,
7578c2ecf20Sopenharmony_ci	0x9e, 0xbd, 0x99, 0xd9, 0xb5, 0x97, 0x44, 0xd5,
7588c2ecf20Sopenharmony_ci	0x14, 0x48, 0x4d, 0x9d, 0xc0, 0xd0, 0x05, 0x96,
7598c2ecf20Sopenharmony_ci	0xeb, 0x4c, 0x78, 0x55, 0x09, 0x08, 0x01, 0x02,
7608c2ecf20Sopenharmony_ci	0x30, 0x90, 0x7b, 0x96, 0x7a, 0x7b, 0x5f, 0x30,
7618c2ecf20Sopenharmony_ci	0x41, 0x24, 0xce, 0x68, 0x61, 0x49, 0x86, 0x57,
7628c2ecf20Sopenharmony_ci	0x82, 0xdd, 0x53, 0x1c, 0x51, 0x28, 0x2b, 0x53,
7638c2ecf20Sopenharmony_ci	0x6e, 0x2d, 0xc2, 0x20, 0x4c, 0xdd, 0x8f, 0x65,
7648c2ecf20Sopenharmony_ci	0x10, 0x20, 0x50, 0xdd, 0x9d, 0x50, 0xe5, 0x71,
7658c2ecf20Sopenharmony_ci	0x40, 0x53, 0x69, 0xfc, 0x77, 0x48, 0x11, 0xb9,
7668c2ecf20Sopenharmony_ci	0xde, 0xa4, 0x8d, 0x58, 0xe4, 0xa6, 0x1a, 0x18,
7678c2ecf20Sopenharmony_ci	0x47, 0x81, 0x7e, 0xfc, 0xdd, 0xf6, 0xef, 0xce,
7688c2ecf20Sopenharmony_ci	0x2f, 0x43, 0x68, 0xd6, 0x06, 0xe2, 0x74, 0x6a,
7698c2ecf20Sopenharmony_ci	0xad, 0x90, 0xf5, 0x37, 0xf3, 0x3d, 0x82, 0x69,
7708c2ecf20Sopenharmony_ci	0x40, 0xe9, 0x6b, 0xa7, 0x3d, 0xa8, 0x1e, 0xd2,
7718c2ecf20Sopenharmony_ci	0x02, 0x7c, 0xb7, 0x9b, 0xe4, 0xda, 0x8f, 0x95,
7728c2ecf20Sopenharmony_ci	0x06, 0xc5, 0xdf, 0x73, 0xa3, 0x20, 0x9a, 0x49,
7738c2ecf20Sopenharmony_ci	0xde, 0x9c, 0xbc, 0xee, 0x14, 0x3f, 0x81, 0x5e,
7748c2ecf20Sopenharmony_ci	0xf8, 0x3b, 0x59, 0x3c, 0xe1, 0x68, 0x12, 0x5a,
7758c2ecf20Sopenharmony_ci	0x3a, 0x76, 0x3a, 0x3f, 0xf7, 0x87, 0x33, 0x0a,
7768c2ecf20Sopenharmony_ci	0x01, 0xb8, 0xd4, 0xed, 0xb6, 0xbe, 0x94, 0x5e,
7778c2ecf20Sopenharmony_ci	0x70, 0x40, 0x56, 0x67, 0x1f, 0x50, 0x44, 0x19,
7788c2ecf20Sopenharmony_ci	0xce, 0x82, 0x70, 0x10, 0x87, 0x13, 0x20, 0x0b,
7798c2ecf20Sopenharmony_ci	0x4c, 0x5a, 0xb6, 0xf6, 0xa7, 0xae, 0x81, 0x75,
7808c2ecf20Sopenharmony_ci	0x01, 0x81, 0xe6, 0x4b, 0x57, 0x7c, 0xdd, 0x6d,
7818c2ecf20Sopenharmony_ci	0xf8, 0x1c, 0x29, 0x32, 0xf7, 0xda, 0x3c, 0x2d,
7828c2ecf20Sopenharmony_ci	0xf8, 0x9b, 0x25, 0x6e, 0x00, 0xb4, 0xf7, 0x2f,
7838c2ecf20Sopenharmony_ci	0xf7, 0x04, 0xf7, 0xa1, 0x56, 0xac, 0x4f, 0x1a,
7848c2ecf20Sopenharmony_ci	0x64, 0xb8, 0x47, 0x55, 0x18, 0x7b, 0x07, 0x4d,
7858c2ecf20Sopenharmony_ci	0xbd, 0x47, 0x24, 0x80, 0x5d, 0xa2, 0x70, 0xc5,
7868c2ecf20Sopenharmony_ci	0xdd, 0x8e, 0x82, 0xd4, 0xeb, 0xec, 0xb2, 0x0c,
7878c2ecf20Sopenharmony_ci	0x39, 0xd2, 0x97, 0xc1, 0xcb, 0xeb, 0xf4, 0x77,
7888c2ecf20Sopenharmony_ci	0x59, 0xb4, 0x87, 0xef, 0xcb, 0x43, 0x2d, 0x46,
7898c2ecf20Sopenharmony_ci	0x54, 0xd1, 0xa7, 0xd7, 0x15, 0x99, 0x0a, 0x43,
7908c2ecf20Sopenharmony_ci	0xa1, 0xe0, 0x99, 0x33, 0x71, 0xc1, 0xed, 0xfe,
7918c2ecf20Sopenharmony_ci	0x72, 0x46, 0x33, 0x8e, 0x91, 0x08, 0x9f, 0xc8,
7928c2ecf20Sopenharmony_ci	0x2e, 0xca, 0xfa, 0xdc, 0x59, 0xd5, 0xc3, 0x76,
7938c2ecf20Sopenharmony_ci	0x84, 0x9f, 0xa3, 0x37, 0x68, 0xc3, 0xf0, 0x47,
7948c2ecf20Sopenharmony_ci	0x2c, 0x68, 0xdb, 0x5e, 0xc3, 0x49, 0x4c, 0xe8,
7958c2ecf20Sopenharmony_ci	0x92, 0x85, 0xe2, 0x23, 0xd3, 0x3f, 0xad, 0x32,
7968c2ecf20Sopenharmony_ci	0xe5, 0x2b, 0x82, 0xd7, 0x8f, 0x99, 0x0a, 0x59,
7978c2ecf20Sopenharmony_ci	0x5c, 0x45, 0xd9, 0xb4, 0x51, 0x52, 0xc2, 0xae,
7988c2ecf20Sopenharmony_ci	0xbf, 0x80, 0xcf, 0xc9, 0xc9, 0x51, 0x24, 0x2a,
7998c2ecf20Sopenharmony_ci	0x3b, 0x3a, 0x4d, 0xae, 0xeb, 0xbd, 0x22, 0xc3,
8008c2ecf20Sopenharmony_ci	0x0e, 0x0f, 0x59, 0x25, 0x92, 0x17, 0xe9, 0x74,
8018c2ecf20Sopenharmony_ci	0xc7, 0x8b, 0x70, 0x70, 0x36, 0x55, 0x95, 0x75,
8028c2ecf20Sopenharmony_ci	0x4b, 0xad, 0x61, 0x2b, 0x09, 0xbc, 0x82, 0xf2,
8038c2ecf20Sopenharmony_ci	0x6e, 0x94, 0x43, 0xae, 0xc3, 0xd5, 0xcd, 0x8e,
8048c2ecf20Sopenharmony_ci	0xfe, 0x5b, 0x9a, 0x88, 0x43, 0x01, 0x75, 0xb2,
8058c2ecf20Sopenharmony_ci	0x23, 0x09, 0xf7, 0x89, 0x83, 0xe7, 0xfa, 0xf9,
8068c2ecf20Sopenharmony_ci	0xb4, 0x9b, 0xf8, 0xef, 0xbd, 0x1c, 0x92, 0xc1,
8078c2ecf20Sopenharmony_ci	0xda, 0x7e, 0xfe, 0x05, 0xba, 0x5a, 0xcd, 0x07,
8088c2ecf20Sopenharmony_ci	0x6a, 0x78, 0x9e, 0x5d, 0xfb, 0x11, 0x2f, 0x79,
8098c2ecf20Sopenharmony_ci	0x38, 0xb6, 0xc2, 0x5b, 0x6b, 0x51, 0xb4, 0x71,
8108c2ecf20Sopenharmony_ci	0xdd, 0xf7, 0x2a, 0xe4, 0xf4, 0x72, 0x76, 0xad,
8118c2ecf20Sopenharmony_ci	0xc2, 0xdd, 0x64, 0x5d, 0x79, 0xb6, 0xf5, 0x7a,
8128c2ecf20Sopenharmony_ci	0x77, 0x20, 0x05, 0x3d, 0x30, 0x06, 0xd4, 0x4c,
8138c2ecf20Sopenharmony_ci	0x0a, 0x2c, 0x98, 0x5a, 0xb9, 0xd4, 0x98, 0xa9,
8148c2ecf20Sopenharmony_ci	0x3f, 0xc6, 0x12, 0xea, 0x3b, 0x4b, 0xc5, 0x79,
8158c2ecf20Sopenharmony_ci	0x64, 0x63, 0x6b, 0x09, 0x54, 0x3b, 0x14, 0x27,
8168c2ecf20Sopenharmony_ci	0xba, 0x99, 0x80, 0xc8, 0x72, 0xa8, 0x12, 0x90,
8178c2ecf20Sopenharmony_ci	0x29, 0xba, 0x40, 0x54, 0x97, 0x2b, 0x7b, 0xfe,
8188c2ecf20Sopenharmony_ci	0xeb, 0xcd, 0x01, 0x05, 0x44, 0x72, 0xdb, 0x99,
8198c2ecf20Sopenharmony_ci	0xe4, 0x61, 0xc9, 0x69, 0xd6, 0xb9, 0x28, 0xd1,
8208c2ecf20Sopenharmony_ci	0x05, 0x3e, 0xf9, 0x0b, 0x49, 0x0a, 0x49, 0xe9,
8218c2ecf20Sopenharmony_ci	0x8d, 0x0e, 0xa7, 0x4a, 0x0f, 0xaf, 0x32, 0xd0,
8228c2ecf20Sopenharmony_ci	0xe0, 0xb2, 0x3a, 0x55, 0x58, 0xfe, 0x5c, 0x28,
8238c2ecf20Sopenharmony_ci	0x70, 0x51, 0x23, 0xb0, 0x7b, 0x6a, 0x5f, 0x1e,
8248c2ecf20Sopenharmony_ci	0xb8, 0x17, 0xd7, 0x94, 0x15, 0x8f, 0xee, 0x20,
8258c2ecf20Sopenharmony_ci	0xc7, 0x42, 0x25, 0x3e, 0x9a, 0x14, 0xd7, 0x60,
8268c2ecf20Sopenharmony_ci	0x72, 0x39, 0x47, 0x48, 0xa9, 0xfe, 0xdd, 0x47,
8278c2ecf20Sopenharmony_ci	0x0a, 0xb1, 0xe6, 0x60, 0x28, 0x8c, 0x11, 0x68,
8288c2ecf20Sopenharmony_ci	0xe1, 0xff, 0xd7, 0xce, 0xc8, 0xbe, 0xb3, 0xfe,
8298c2ecf20Sopenharmony_ci	0x27, 0x30, 0x09, 0x70, 0xd7, 0xfa, 0x02, 0x33,
8308c2ecf20Sopenharmony_ci	0x3a, 0x61, 0x2e, 0xc7, 0xff, 0xa4, 0x2a, 0xa8,
8318c2ecf20Sopenharmony_ci	0x6e, 0xb4, 0x79, 0x35, 0x6d, 0x4c, 0x1e, 0x38,
8328c2ecf20Sopenharmony_ci	0xf8, 0xee, 0xd4, 0x84, 0x4e, 0x6e, 0x28, 0xa7,
8338c2ecf20Sopenharmony_ci	0xce, 0xc8, 0xc1, 0xcf, 0x80, 0x05, 0xf3, 0x04,
8348c2ecf20Sopenharmony_ci	0xef, 0xc8, 0x18, 0x28, 0x2e, 0x8d, 0x5e, 0x0c,
8358c2ecf20Sopenharmony_ci	0xdf, 0xb8, 0x5f, 0x96, 0xe8, 0xc6, 0x9c, 0x2f,
8368c2ecf20Sopenharmony_ci	0xe5, 0xa6, 0x44, 0xd7, 0xe7, 0x99, 0x44, 0x0c,
8378c2ecf20Sopenharmony_ci	0xec, 0xd7, 0x05, 0x60, 0x97, 0xbb, 0x74, 0x77,
8388c2ecf20Sopenharmony_ci	0x58, 0xd5, 0xbb, 0x48, 0xde, 0x5a, 0xb2, 0x54,
8398c2ecf20Sopenharmony_ci	0x7f, 0x0e, 0x46, 0x70, 0x6a, 0x6f, 0x78, 0xa5,
8408c2ecf20Sopenharmony_ci	0x08, 0x89, 0x05, 0x4e, 0x7e, 0xa0, 0x69, 0xb4,
8418c2ecf20Sopenharmony_ci	0x40, 0x60, 0x55, 0x77, 0x75, 0x9b, 0x19, 0xf2,
8428c2ecf20Sopenharmony_ci	0xd5, 0x13, 0x80, 0x77, 0xf9, 0x4b, 0x3f, 0x1e,
8438c2ecf20Sopenharmony_ci	0xee, 0xe6, 0x76, 0x84, 0x7b, 0x8c, 0xe5, 0x27,
8448c2ecf20Sopenharmony_ci	0xa8, 0x0a, 0x91, 0x01, 0x68, 0x71, 0x8a, 0x3f,
8458c2ecf20Sopenharmony_ci	0x06, 0xab, 0xf6, 0xa9, 0xa5, 0xe6, 0x72, 0x92,
8468c2ecf20Sopenharmony_ci	0xe4, 0x67, 0xe2, 0xa2, 0x46, 0x35, 0x84, 0x55,
8478c2ecf20Sopenharmony_ci	0x7d, 0xca, 0xa8, 0x85, 0xd0, 0xf1, 0x3f, 0xbe,
8488c2ecf20Sopenharmony_ci	0xd7, 0x34, 0x64, 0xfc, 0xae, 0xe3, 0xe4, 0x04,
8498c2ecf20Sopenharmony_ci	0x9f, 0x66, 0x02, 0xb9, 0x88, 0x10, 0xd9, 0xc4,
8508c2ecf20Sopenharmony_ci	0x4c, 0x31, 0x43, 0x7a, 0x93, 0xe2, 0x9b, 0x56,
8518c2ecf20Sopenharmony_ci	0x43, 0x84, 0xdc, 0xdc, 0xde, 0x1d, 0xa4, 0x02,
8528c2ecf20Sopenharmony_ci	0x0e, 0xc2, 0xef, 0xc3, 0xf8, 0x78, 0xd1, 0xb2,
8538c2ecf20Sopenharmony_ci	0x6b, 0x63, 0x18, 0xc9, 0xa9, 0xe5, 0x72, 0xd8,
8548c2ecf20Sopenharmony_ci	0xf3, 0xb9, 0xd1, 0x8a, 0xc7, 0x1a, 0x02, 0x27,
8558c2ecf20Sopenharmony_ci	0x20, 0x77, 0x10, 0xe5, 0xc8, 0xd4, 0x4a, 0x47,
8568c2ecf20Sopenharmony_ci	0xe5, 0xdf, 0x5f, 0x01, 0xaa, 0xb0, 0xd4, 0x10,
8578c2ecf20Sopenharmony_ci	0xbb, 0x69, 0xe3, 0x36, 0xc8, 0xe1, 0x3d, 0x43,
8588c2ecf20Sopenharmony_ci	0xfb, 0x86, 0xcd, 0xcc, 0xbf, 0xf4, 0x88, 0xe0,
8598c2ecf20Sopenharmony_ci	0x20, 0xca, 0xb7, 0x1b, 0xf1, 0x2f, 0x5c, 0xee,
8608c2ecf20Sopenharmony_ci	0xd4, 0xd3, 0xa3, 0xcc, 0xa4, 0x1e, 0x1c, 0x47,
8618c2ecf20Sopenharmony_ci	0xfb, 0xbf, 0xfc, 0xa2, 0x41, 0x55, 0x9d, 0xf6,
8628c2ecf20Sopenharmony_ci	0x5a, 0x5e, 0x65, 0x32, 0x34, 0x7b, 0x52, 0x8d,
8638c2ecf20Sopenharmony_ci	0xd5, 0xd0, 0x20, 0x60, 0x03, 0xab, 0x3f, 0x8c,
8648c2ecf20Sopenharmony_ci	0xd4, 0x21, 0xea, 0x2a, 0xd9, 0xc4, 0xd0, 0xd3,
8658c2ecf20Sopenharmony_ci	0x65, 0xd8, 0x7a, 0x13, 0x28, 0x62, 0x32, 0x4b,
8668c2ecf20Sopenharmony_ci	0x2c, 0x87, 0x93, 0xa8, 0xb4, 0x52, 0x45, 0x09,
8678c2ecf20Sopenharmony_ci	0x44, 0xec, 0xec, 0xc3, 0x17, 0xdb, 0x9a, 0x4d,
8688c2ecf20Sopenharmony_ci	0x5c, 0xa9, 0x11, 0xd4, 0x7d, 0xaf, 0x9e, 0xf1,
8698c2ecf20Sopenharmony_ci	0x2d, 0xb2, 0x66, 0xc5, 0x1d, 0xed, 0xb7, 0xcd,
8708c2ecf20Sopenharmony_ci	0x0b, 0x25, 0x5e, 0x30, 0x47, 0x3f, 0x40, 0xf4,
8718c2ecf20Sopenharmony_ci	0xa1, 0xa0, 0x00, 0x94, 0x10, 0xc5, 0x6a, 0x63,
8728c2ecf20Sopenharmony_ci	0x1a, 0xd5, 0x88, 0x92, 0x8e, 0x82, 0x39, 0x87,
8738c2ecf20Sopenharmony_ci	0x3c, 0x78, 0x65, 0x58, 0x42, 0x75, 0x5b, 0xdd,
8748c2ecf20Sopenharmony_ci	0x77, 0x3e, 0x09, 0x4e, 0x76, 0x5b, 0xe6, 0x0e,
8758c2ecf20Sopenharmony_ci	0x4d, 0x38, 0xb2, 0xc0, 0xb8, 0x95, 0x01, 0x7a,
8768c2ecf20Sopenharmony_ci	0x10, 0xe0, 0xfb, 0x07, 0xf2, 0xab, 0x2d, 0x8c,
8778c2ecf20Sopenharmony_ci	0x32, 0xed, 0x2b, 0xc0, 0x46, 0xc2, 0xf5, 0x38,
8788c2ecf20Sopenharmony_ci	0x83, 0xf0, 0x17, 0xec, 0xc1, 0x20, 0x6a, 0x9a,
8798c2ecf20Sopenharmony_ci	0x0b, 0x00, 0xa0, 0x98, 0x22, 0x50, 0x23, 0xd5,
8808c2ecf20Sopenharmony_ci	0x80, 0x6b, 0xf6, 0x1f, 0xc3, 0xcc, 0x97, 0xc9,
8818c2ecf20Sopenharmony_ci	0x24, 0x9f, 0xf3, 0xaf, 0x43, 0x14, 0xd5, 0xa0
8828c2ecf20Sopenharmony_ci};
8838c2ecf20Sopenharmony_cistatic const u8 enc_assoc010[] __initconst = {
8848c2ecf20Sopenharmony_ci	0xd2, 0xa1, 0x70, 0xdb, 0x7a, 0xf8, 0xfa, 0x27,
8858c2ecf20Sopenharmony_ci	0xba, 0x73, 0x0f, 0xbf, 0x3d, 0x1e, 0x82, 0xb2
8868c2ecf20Sopenharmony_ci};
8878c2ecf20Sopenharmony_cistatic const u8 enc_nonce010[] __initconst = {
8888c2ecf20Sopenharmony_ci	0xdb, 0x92, 0x0f, 0x7f, 0x17, 0x54, 0x0c, 0x30
8898c2ecf20Sopenharmony_ci};
8908c2ecf20Sopenharmony_cistatic const u8 enc_key010[] __initconst = {
8918c2ecf20Sopenharmony_ci	0x47, 0x11, 0xeb, 0x86, 0x2b, 0x2c, 0xab, 0x44,
8928c2ecf20Sopenharmony_ci	0x34, 0xda, 0x7f, 0x57, 0x03, 0x39, 0x0c, 0xaf,
8938c2ecf20Sopenharmony_ci	0x2c, 0x14, 0xfd, 0x65, 0x23, 0xe9, 0x8e, 0x74,
8948c2ecf20Sopenharmony_ci	0xd5, 0x08, 0x68, 0x08, 0xe7, 0xb4, 0x72, 0xd7
8958c2ecf20Sopenharmony_ci};
8968c2ecf20Sopenharmony_ci
8978c2ecf20Sopenharmony_cistatic const u8 enc_input011[] __initconst = {
8988c2ecf20Sopenharmony_ci	0x7a, 0x57, 0xf2, 0xc7, 0x06, 0x3f, 0x50, 0x7b,
8998c2ecf20Sopenharmony_ci	0x36, 0x1a, 0x66, 0x5c, 0xb9, 0x0e, 0x5e, 0x3b,
9008c2ecf20Sopenharmony_ci	0x45, 0x60, 0xbe, 0x9a, 0x31, 0x9f, 0xff, 0x5d,
9018c2ecf20Sopenharmony_ci	0x66, 0x34, 0xb4, 0xdc, 0xfb, 0x9d, 0x8e, 0xee,
9028c2ecf20Sopenharmony_ci	0x6a, 0x33, 0xa4, 0x07, 0x3c, 0xf9, 0x4c, 0x30,
9038c2ecf20Sopenharmony_ci	0xa1, 0x24, 0x52, 0xf9, 0x50, 0x46, 0x88, 0x20,
9048c2ecf20Sopenharmony_ci	0x02, 0x32, 0x3a, 0x0e, 0x99, 0x63, 0xaf, 0x1f,
9058c2ecf20Sopenharmony_ci	0x15, 0x28, 0x2a, 0x05, 0xff, 0x57, 0x59, 0x5e,
9068c2ecf20Sopenharmony_ci	0x18, 0xa1, 0x1f, 0xd0, 0x92, 0x5c, 0x88, 0x66,
9078c2ecf20Sopenharmony_ci	0x1b, 0x00, 0x64, 0xa5, 0x93, 0x8d, 0x06, 0x46,
9088c2ecf20Sopenharmony_ci	0xb0, 0x64, 0x8b, 0x8b, 0xef, 0x99, 0x05, 0x35,
9098c2ecf20Sopenharmony_ci	0x85, 0xb3, 0xf3, 0x33, 0xbb, 0xec, 0x66, 0xb6,
9108c2ecf20Sopenharmony_ci	0x3d, 0x57, 0x42, 0xe3, 0xb4, 0xc6, 0xaa, 0xb0,
9118c2ecf20Sopenharmony_ci	0x41, 0x2a, 0xb9, 0x59, 0xa9, 0xf6, 0x3e, 0x15,
9128c2ecf20Sopenharmony_ci	0x26, 0x12, 0x03, 0x21, 0x4c, 0x74, 0x43, 0x13,
9138c2ecf20Sopenharmony_ci	0x2a, 0x03, 0x27, 0x09, 0xb4, 0xfb, 0xe7, 0xb7,
9148c2ecf20Sopenharmony_ci	0x40, 0xff, 0x5e, 0xce, 0x48, 0x9a, 0x60, 0xe3,
9158c2ecf20Sopenharmony_ci	0x8b, 0x80, 0x8c, 0x38, 0x2d, 0xcb, 0x93, 0x37,
9168c2ecf20Sopenharmony_ci	0x74, 0x05, 0x52, 0x6f, 0x73, 0x3e, 0xc3, 0xbc,
9178c2ecf20Sopenharmony_ci	0xca, 0x72, 0x0a, 0xeb, 0xf1, 0x3b, 0xa0, 0x95,
9188c2ecf20Sopenharmony_ci	0xdc, 0x8a, 0xc4, 0xa9, 0xdc, 0xca, 0x44, 0xd8,
9198c2ecf20Sopenharmony_ci	0x08, 0x63, 0x6a, 0x36, 0xd3, 0x3c, 0xb8, 0xac,
9208c2ecf20Sopenharmony_ci	0x46, 0x7d, 0xfd, 0xaa, 0xeb, 0x3e, 0x0f, 0x45,
9218c2ecf20Sopenharmony_ci	0x8f, 0x49, 0xda, 0x2b, 0xf2, 0x12, 0xbd, 0xaf,
9228c2ecf20Sopenharmony_ci	0x67, 0x8a, 0x63, 0x48, 0x4b, 0x55, 0x5f, 0x6d,
9238c2ecf20Sopenharmony_ci	0x8c, 0xb9, 0x76, 0x34, 0x84, 0xae, 0xc2, 0xfc,
9248c2ecf20Sopenharmony_ci	0x52, 0x64, 0x82, 0xf7, 0xb0, 0x06, 0xf0, 0x45,
9258c2ecf20Sopenharmony_ci	0x73, 0x12, 0x50, 0x30, 0x72, 0xea, 0x78, 0x9a,
9268c2ecf20Sopenharmony_ci	0xa8, 0xaf, 0xb5, 0xe3, 0xbb, 0x77, 0x52, 0xec,
9278c2ecf20Sopenharmony_ci	0x59, 0x84, 0xbf, 0x6b, 0x8f, 0xce, 0x86, 0x5e,
9288c2ecf20Sopenharmony_ci	0x1f, 0x23, 0xe9, 0xfb, 0x08, 0x86, 0xf7, 0x10,
9298c2ecf20Sopenharmony_ci	0xb9, 0xf2, 0x44, 0x96, 0x44, 0x63, 0xa9, 0xa8,
9308c2ecf20Sopenharmony_ci	0x78, 0x00, 0x23, 0xd6, 0xc7, 0xe7, 0x6e, 0x66,
9318c2ecf20Sopenharmony_ci	0x4f, 0xcc, 0xee, 0x15, 0xb3, 0xbd, 0x1d, 0xa0,
9328c2ecf20Sopenharmony_ci	0xe5, 0x9c, 0x1b, 0x24, 0x2c, 0x4d, 0x3c, 0x62,
9338c2ecf20Sopenharmony_ci	0x35, 0x9c, 0x88, 0x59, 0x09, 0xdd, 0x82, 0x1b,
9348c2ecf20Sopenharmony_ci	0xcf, 0x0a, 0x83, 0x6b, 0x3f, 0xae, 0x03, 0xc4,
9358c2ecf20Sopenharmony_ci	0xb4, 0xdd, 0x7e, 0x5b, 0x28, 0x76, 0x25, 0x96,
9368c2ecf20Sopenharmony_ci	0xd9, 0xc9, 0x9d, 0x5f, 0x86, 0xfa, 0xf6, 0xd7,
9378c2ecf20Sopenharmony_ci	0xd2, 0xe6, 0x76, 0x1d, 0x0f, 0xa1, 0xdc, 0x74,
9388c2ecf20Sopenharmony_ci	0x05, 0x1b, 0x1d, 0xe0, 0xcd, 0x16, 0xb0, 0xa8,
9398c2ecf20Sopenharmony_ci	0x8a, 0x34, 0x7b, 0x15, 0x11, 0x77, 0xe5, 0x7b,
9408c2ecf20Sopenharmony_ci	0x7e, 0x20, 0xf7, 0xda, 0x38, 0xda, 0xce, 0x70,
9418c2ecf20Sopenharmony_ci	0xe9, 0xf5, 0x6c, 0xd9, 0xbe, 0x0c, 0x4c, 0x95,
9428c2ecf20Sopenharmony_ci	0x4c, 0xc2, 0x9b, 0x34, 0x55, 0x55, 0xe1, 0xf3,
9438c2ecf20Sopenharmony_ci	0x46, 0x8e, 0x48, 0x74, 0x14, 0x4f, 0x9d, 0xc9,
9448c2ecf20Sopenharmony_ci	0xf5, 0xe8, 0x1a, 0xf0, 0x11, 0x4a, 0xc1, 0x8d,
9458c2ecf20Sopenharmony_ci	0xe0, 0x93, 0xa0, 0xbe, 0x09, 0x1c, 0x2b, 0x4e,
9468c2ecf20Sopenharmony_ci	0x0f, 0xb2, 0x87, 0x8b, 0x84, 0xfe, 0x92, 0x32,
9478c2ecf20Sopenharmony_ci	0x14, 0xd7, 0x93, 0xdf, 0xe7, 0x44, 0xbc, 0xc5,
9488c2ecf20Sopenharmony_ci	0xae, 0x53, 0x69, 0xd8, 0xb3, 0x79, 0x37, 0x80,
9498c2ecf20Sopenharmony_ci	0xe3, 0x17, 0x5c, 0xec, 0x53, 0x00, 0x9a, 0xe3,
9508c2ecf20Sopenharmony_ci	0x8e, 0xdc, 0x38, 0xb8, 0x66, 0xf0, 0xd3, 0xad,
9518c2ecf20Sopenharmony_ci	0x1d, 0x02, 0x96, 0x86, 0x3e, 0x9d, 0x3b, 0x5d,
9528c2ecf20Sopenharmony_ci	0xa5, 0x7f, 0x21, 0x10, 0xf1, 0x1f, 0x13, 0x20,
9538c2ecf20Sopenharmony_ci	0xf9, 0x57, 0x87, 0x20, 0xf5, 0x5f, 0xf1, 0x17,
9548c2ecf20Sopenharmony_ci	0x48, 0x0a, 0x51, 0x5a, 0xcd, 0x19, 0x03, 0xa6,
9558c2ecf20Sopenharmony_ci	0x5a, 0xd1, 0x12, 0x97, 0xe9, 0x48, 0xe2, 0x1d,
9568c2ecf20Sopenharmony_ci	0x83, 0x75, 0x50, 0xd9, 0x75, 0x7d, 0x6a, 0x82,
9578c2ecf20Sopenharmony_ci	0xa1, 0xf9, 0x4e, 0x54, 0x87, 0x89, 0xc9, 0x0c,
9588c2ecf20Sopenharmony_ci	0xb7, 0x5b, 0x6a, 0x91, 0xc1, 0x9c, 0xb2, 0xa9,
9598c2ecf20Sopenharmony_ci	0xdc, 0x9a, 0xa4, 0x49, 0x0a, 0x6d, 0x0d, 0xbb,
9608c2ecf20Sopenharmony_ci	0xde, 0x86, 0x44, 0xdd, 0x5d, 0x89, 0x2b, 0x96,
9618c2ecf20Sopenharmony_ci	0x0f, 0x23, 0x95, 0xad, 0xcc, 0xa2, 0xb3, 0xb9,
9628c2ecf20Sopenharmony_ci	0x7e, 0x74, 0x38, 0xba, 0x9f, 0x73, 0xae, 0x5f,
9638c2ecf20Sopenharmony_ci	0xf8, 0x68, 0xa2, 0xe0, 0xa9, 0xce, 0xbd, 0x40,
9648c2ecf20Sopenharmony_ci	0xd4, 0x4c, 0x6b, 0xd2, 0x56, 0x62, 0xb0, 0xcc,
9658c2ecf20Sopenharmony_ci	0x63, 0x7e, 0x5b, 0xd3, 0xae, 0xd1, 0x75, 0xce,
9668c2ecf20Sopenharmony_ci	0xbb, 0xb4, 0x5b, 0xa8, 0xf8, 0xb4, 0xac, 0x71,
9678c2ecf20Sopenharmony_ci	0x75, 0xaa, 0xc9, 0x9f, 0xbb, 0x6c, 0xad, 0x0f,
9688c2ecf20Sopenharmony_ci	0x55, 0x5d, 0xe8, 0x85, 0x7d, 0xf9, 0x21, 0x35,
9698c2ecf20Sopenharmony_ci	0xea, 0x92, 0x85, 0x2b, 0x00, 0xec, 0x84, 0x90,
9708c2ecf20Sopenharmony_ci	0x0a, 0x63, 0x96, 0xe4, 0x6b, 0xa9, 0x77, 0xb8,
9718c2ecf20Sopenharmony_ci	0x91, 0xf8, 0x46, 0x15, 0x72, 0x63, 0x70, 0x01,
9728c2ecf20Sopenharmony_ci	0x40, 0xa3, 0xa5, 0x76, 0x62, 0x2b, 0xbf, 0xf1,
9738c2ecf20Sopenharmony_ci	0xe5, 0x8d, 0x9f, 0xa3, 0xfa, 0x9b, 0x03, 0xbe,
9748c2ecf20Sopenharmony_ci	0xfe, 0x65, 0x6f, 0xa2, 0x29, 0x0d, 0x54, 0xb4,
9758c2ecf20Sopenharmony_ci	0x71, 0xce, 0xa9, 0xd6, 0x3d, 0x88, 0xf9, 0xaf,
9768c2ecf20Sopenharmony_ci	0x6b, 0xa8, 0x9e, 0xf4, 0x16, 0x96, 0x36, 0xb9,
9778c2ecf20Sopenharmony_ci	0x00, 0xdc, 0x10, 0xab, 0xb5, 0x08, 0x31, 0x1f,
9788c2ecf20Sopenharmony_ci	0x00, 0xb1, 0x3c, 0xd9, 0x38, 0x3e, 0xc6, 0x04,
9798c2ecf20Sopenharmony_ci	0xa7, 0x4e, 0xe8, 0xae, 0xed, 0x98, 0xc2, 0xf7,
9808c2ecf20Sopenharmony_ci	0xb9, 0x00, 0x5f, 0x8c, 0x60, 0xd1, 0xe5, 0x15,
9818c2ecf20Sopenharmony_ci	0xf7, 0xae, 0x1e, 0x84, 0x88, 0xd1, 0xf6, 0xbc,
9828c2ecf20Sopenharmony_ci	0x3a, 0x89, 0x35, 0x22, 0x83, 0x7c, 0xca, 0xf0,
9838c2ecf20Sopenharmony_ci	0x33, 0x82, 0x4c, 0x79, 0x3c, 0xfd, 0xb1, 0xae,
9848c2ecf20Sopenharmony_ci	0x52, 0x62, 0x55, 0xd2, 0x41, 0x60, 0xc6, 0xbb,
9858c2ecf20Sopenharmony_ci	0xfa, 0x0e, 0x59, 0xd6, 0xa8, 0xfe, 0x5d, 0xed,
9868c2ecf20Sopenharmony_ci	0x47, 0x3d, 0xe0, 0xea, 0x1f, 0x6e, 0x43, 0x51,
9878c2ecf20Sopenharmony_ci	0xec, 0x10, 0x52, 0x56, 0x77, 0x42, 0x6b, 0x52,
9888c2ecf20Sopenharmony_ci	0x87, 0xd8, 0xec, 0xe0, 0xaa, 0x76, 0xa5, 0x84,
9898c2ecf20Sopenharmony_ci	0x2a, 0x22, 0x24, 0xfd, 0x92, 0x40, 0x88, 0xd5,
9908c2ecf20Sopenharmony_ci	0x85, 0x1c, 0x1f, 0x6b, 0x47, 0xa0, 0xc4, 0xe4,
9918c2ecf20Sopenharmony_ci	0xef, 0xf4, 0xea, 0xd7, 0x59, 0xac, 0x2a, 0x9e,
9928c2ecf20Sopenharmony_ci	0x8c, 0xfa, 0x1f, 0x42, 0x08, 0xfe, 0x4f, 0x74,
9938c2ecf20Sopenharmony_ci	0xa0, 0x26, 0xf5, 0xb3, 0x84, 0xf6, 0x58, 0x5f,
9948c2ecf20Sopenharmony_ci	0x26, 0x66, 0x3e, 0xd7, 0xe4, 0x22, 0x91, 0x13,
9958c2ecf20Sopenharmony_ci	0xc8, 0xac, 0x25, 0x96, 0x23, 0xd8, 0x09, 0xea,
9968c2ecf20Sopenharmony_ci	0x45, 0x75, 0x23, 0xb8, 0x5f, 0xc2, 0x90, 0x8b,
9978c2ecf20Sopenharmony_ci	0x09, 0xc4, 0xfc, 0x47, 0x6c, 0x6d, 0x0a, 0xef,
9988c2ecf20Sopenharmony_ci	0x69, 0xa4, 0x38, 0x19, 0xcf, 0x7d, 0xf9, 0x09,
9998c2ecf20Sopenharmony_ci	0x73, 0x9b, 0x60, 0x5a, 0xf7, 0x37, 0xb5, 0xfe,
10008c2ecf20Sopenharmony_ci	0x9f, 0xe3, 0x2b, 0x4c, 0x0d, 0x6e, 0x19, 0xf1,
10018c2ecf20Sopenharmony_ci	0xd6, 0xc0, 0x70, 0xf3, 0x9d, 0x22, 0x3c, 0xf9,
10028c2ecf20Sopenharmony_ci	0x49, 0xce, 0x30, 0x8e, 0x44, 0xb5, 0x76, 0x15,
10038c2ecf20Sopenharmony_ci	0x8f, 0x52, 0xfd, 0xa5, 0x04, 0xb8, 0x55, 0x6a,
10048c2ecf20Sopenharmony_ci	0x36, 0x59, 0x7c, 0xc4, 0x48, 0xb8, 0xd7, 0xab,
10058c2ecf20Sopenharmony_ci	0x05, 0x66, 0xe9, 0x5e, 0x21, 0x6f, 0x6b, 0x36,
10068c2ecf20Sopenharmony_ci	0x29, 0xbb, 0xe9, 0xe3, 0xa2, 0x9a, 0xa8, 0xcd,
10078c2ecf20Sopenharmony_ci	0x55, 0x25, 0x11, 0xba, 0x5a, 0x58, 0xa0, 0xde,
10088c2ecf20Sopenharmony_ci	0xae, 0x19, 0x2a, 0x48, 0x5a, 0xff, 0x36, 0xcd,
10098c2ecf20Sopenharmony_ci	0x6d, 0x16, 0x7a, 0x73, 0x38, 0x46, 0xe5, 0x47,
10108c2ecf20Sopenharmony_ci	0x59, 0xc8, 0xa2, 0xf6, 0xe2, 0x6c, 0x83, 0xc5,
10118c2ecf20Sopenharmony_ci	0x36, 0x2c, 0x83, 0x7d, 0xb4, 0x01, 0x05, 0x69,
10128c2ecf20Sopenharmony_ci	0xe7, 0xaf, 0x5c, 0xc4, 0x64, 0x82, 0x12, 0x21,
10138c2ecf20Sopenharmony_ci	0xef, 0xf7, 0xd1, 0x7d, 0xb8, 0x8d, 0x8c, 0x98,
10148c2ecf20Sopenharmony_ci	0x7c, 0x5f, 0x7d, 0x92, 0x88, 0xb9, 0x94, 0x07,
10158c2ecf20Sopenharmony_ci	0x9c, 0xd8, 0xe9, 0x9c, 0x17, 0x38, 0xe3, 0x57,
10168c2ecf20Sopenharmony_ci	0x6c, 0xe0, 0xdc, 0xa5, 0x92, 0x42, 0xb3, 0xbd,
10178c2ecf20Sopenharmony_ci	0x50, 0xa2, 0x7e, 0xb5, 0xb1, 0x52, 0x72, 0x03,
10188c2ecf20Sopenharmony_ci	0x97, 0xd8, 0xaa, 0x9a, 0x1e, 0x75, 0x41, 0x11,
10198c2ecf20Sopenharmony_ci	0xa3, 0x4f, 0xcc, 0xd4, 0xe3, 0x73, 0xad, 0x96,
10208c2ecf20Sopenharmony_ci	0xdc, 0x47, 0x41, 0x9f, 0xb0, 0xbe, 0x79, 0x91,
10218c2ecf20Sopenharmony_ci	0xf5, 0xb6, 0x18, 0xfe, 0xc2, 0x83, 0x18, 0x7d,
10228c2ecf20Sopenharmony_ci	0x73, 0xd9, 0x4f, 0x83, 0x84, 0x03, 0xb3, 0xf0,
10238c2ecf20Sopenharmony_ci	0x77, 0x66, 0x3d, 0x83, 0x63, 0x2e, 0x2c, 0xf9,
10248c2ecf20Sopenharmony_ci	0xdd, 0xa6, 0x1f, 0x89, 0x82, 0xb8, 0x23, 0x42,
10258c2ecf20Sopenharmony_ci	0xeb, 0xe2, 0xca, 0x70, 0x82, 0x61, 0x41, 0x0a,
10268c2ecf20Sopenharmony_ci	0x6d, 0x5f, 0x75, 0xc5, 0xe2, 0xc4, 0x91, 0x18,
10278c2ecf20Sopenharmony_ci	0x44, 0x22, 0xfa, 0x34, 0x10, 0xf5, 0x20, 0xdc,
10288c2ecf20Sopenharmony_ci	0xb7, 0xdd, 0x2a, 0x20, 0x77, 0xf5, 0xf9, 0xce,
10298c2ecf20Sopenharmony_ci	0xdb, 0xa0, 0x0a, 0x52, 0x2a, 0x4e, 0xdd, 0xcc,
10308c2ecf20Sopenharmony_ci	0x97, 0xdf, 0x05, 0xe4, 0x5e, 0xb7, 0xaa, 0xf0,
10318c2ecf20Sopenharmony_ci	0xe2, 0x80, 0xff, 0xba, 0x1a, 0x0f, 0xac, 0xdf,
10328c2ecf20Sopenharmony_ci	0x02, 0x32, 0xe6, 0xf7, 0xc7, 0x17, 0x13, 0xb7,
10338c2ecf20Sopenharmony_ci	0xfc, 0x98, 0x48, 0x8c, 0x0d, 0x82, 0xc9, 0x80,
10348c2ecf20Sopenharmony_ci	0x7a, 0xe2, 0x0a, 0xc5, 0xb4, 0xde, 0x7c, 0x3c,
10358c2ecf20Sopenharmony_ci	0x79, 0x81, 0x0e, 0x28, 0x65, 0x79, 0x67, 0x82,
10368c2ecf20Sopenharmony_ci	0x69, 0x44, 0x66, 0x09, 0xf7, 0x16, 0x1a, 0xf9,
10378c2ecf20Sopenharmony_ci	0x7d, 0x80, 0xa1, 0x79, 0x14, 0xa9, 0xc8, 0x20,
10388c2ecf20Sopenharmony_ci	0xfb, 0xa2, 0x46, 0xbe, 0x08, 0x35, 0x17, 0x58,
10398c2ecf20Sopenharmony_ci	0xc1, 0x1a, 0xda, 0x2a, 0x6b, 0x2e, 0x1e, 0xe6,
10408c2ecf20Sopenharmony_ci	0x27, 0x55, 0x7b, 0x19, 0xe2, 0xfb, 0x64, 0xfc,
10418c2ecf20Sopenharmony_ci	0x5e, 0x15, 0x54, 0x3c, 0xe7, 0xc2, 0x11, 0x50,
10428c2ecf20Sopenharmony_ci	0x30, 0xb8, 0x72, 0x03, 0x0b, 0x1a, 0x9f, 0x86,
10438c2ecf20Sopenharmony_ci	0x27, 0x11, 0x5c, 0x06, 0x2b, 0xbd, 0x75, 0x1a,
10448c2ecf20Sopenharmony_ci	0x0a, 0xda, 0x01, 0xfa, 0x5c, 0x4a, 0xc1, 0x80,
10458c2ecf20Sopenharmony_ci	0x3a, 0x6e, 0x30, 0xc8, 0x2c, 0xeb, 0x56, 0xec,
10468c2ecf20Sopenharmony_ci	0x89, 0xfa, 0x35, 0x7b, 0xb2, 0xf0, 0x97, 0x08,
10478c2ecf20Sopenharmony_ci	0x86, 0x53, 0xbe, 0xbd, 0x40, 0x41, 0x38, 0x1c,
10488c2ecf20Sopenharmony_ci	0xb4, 0x8b, 0x79, 0x2e, 0x18, 0x96, 0x94, 0xde,
10498c2ecf20Sopenharmony_ci	0xe8, 0xca, 0xe5, 0x9f, 0x92, 0x9f, 0x15, 0x5d,
10508c2ecf20Sopenharmony_ci	0x56, 0x60, 0x5c, 0x09, 0xf9, 0x16, 0xf4, 0x17,
10518c2ecf20Sopenharmony_ci	0x0f, 0xf6, 0x4c, 0xda, 0xe6, 0x67, 0x89, 0x9f,
10528c2ecf20Sopenharmony_ci	0xca, 0x6c, 0xe7, 0x9b, 0x04, 0x62, 0x0e, 0x26,
10538c2ecf20Sopenharmony_ci	0xa6, 0x52, 0xbd, 0x29, 0xff, 0xc7, 0xa4, 0x96,
10548c2ecf20Sopenharmony_ci	0xe6, 0x6a, 0x02, 0xa5, 0x2e, 0x7b, 0xfe, 0x97,
10558c2ecf20Sopenharmony_ci	0x68, 0x3e, 0x2e, 0x5f, 0x3b, 0x0f, 0x36, 0xd6,
10568c2ecf20Sopenharmony_ci	0x98, 0x19, 0x59, 0x48, 0xd2, 0xc6, 0xe1, 0x55,
10578c2ecf20Sopenharmony_ci	0x1a, 0x6e, 0xd6, 0xed, 0x2c, 0xba, 0xc3, 0x9e,
10588c2ecf20Sopenharmony_ci	0x64, 0xc9, 0x95, 0x86, 0x35, 0x5e, 0x3e, 0x88,
10598c2ecf20Sopenharmony_ci	0x69, 0x99, 0x4b, 0xee, 0xbe, 0x9a, 0x99, 0xb5,
10608c2ecf20Sopenharmony_ci	0x6e, 0x58, 0xae, 0xdd, 0x22, 0xdb, 0xdd, 0x6b,
10618c2ecf20Sopenharmony_ci	0xfc, 0xaf, 0x90, 0xa3, 0x3d, 0xa4, 0xc1, 0x15,
10628c2ecf20Sopenharmony_ci	0x92, 0x18, 0x8d, 0xd2, 0x4b, 0x7b, 0x06, 0xd1,
10638c2ecf20Sopenharmony_ci	0x37, 0xb5, 0xe2, 0x7c, 0x2c, 0xf0, 0x25, 0xe4,
10648c2ecf20Sopenharmony_ci	0x94, 0x2a, 0xbd, 0xe3, 0x82, 0x70, 0x78, 0xa3,
10658c2ecf20Sopenharmony_ci	0x82, 0x10, 0x5a, 0x90, 0xd7, 0xa4, 0xfa, 0xaf,
10668c2ecf20Sopenharmony_ci	0x1a, 0x88, 0x59, 0xdc, 0x74, 0x12, 0xb4, 0x8e,
10678c2ecf20Sopenharmony_ci	0xd7, 0x19, 0x46, 0xf4, 0x84, 0x69, 0x9f, 0xbb,
10688c2ecf20Sopenharmony_ci	0x70, 0xa8, 0x4c, 0x52, 0x81, 0xa9, 0xff, 0x76,
10698c2ecf20Sopenharmony_ci	0x1c, 0xae, 0xd8, 0x11, 0x3d, 0x7f, 0x7d, 0xc5,
10708c2ecf20Sopenharmony_ci	0x12, 0x59, 0x28, 0x18, 0xc2, 0xa2, 0xb7, 0x1c,
10718c2ecf20Sopenharmony_ci	0x88, 0xf8, 0xd6, 0x1b, 0xa6, 0x7d, 0x9e, 0xde,
10728c2ecf20Sopenharmony_ci	0x29, 0xf8, 0xed, 0xff, 0xeb, 0x92, 0x24, 0x4f,
10738c2ecf20Sopenharmony_ci	0x05, 0xaa, 0xd9, 0x49, 0xba, 0x87, 0x59, 0x51,
10748c2ecf20Sopenharmony_ci	0xc9, 0x20, 0x5c, 0x9b, 0x74, 0xcf, 0x03, 0xd9,
10758c2ecf20Sopenharmony_ci	0x2d, 0x34, 0xc7, 0x5b, 0xa5, 0x40, 0xb2, 0x99,
10768c2ecf20Sopenharmony_ci	0xf5, 0xcb, 0xb4, 0xf6, 0xb7, 0x72, 0x4a, 0xd6,
10778c2ecf20Sopenharmony_ci	0xbd, 0xb0, 0xf3, 0x93, 0xe0, 0x1b, 0xa8, 0x04,
10788c2ecf20Sopenharmony_ci	0x1e, 0x35, 0xd4, 0x80, 0x20, 0xf4, 0x9c, 0x31,
10798c2ecf20Sopenharmony_ci	0x6b, 0x45, 0xb9, 0x15, 0xb0, 0x5e, 0xdd, 0x0a,
10808c2ecf20Sopenharmony_ci	0x33, 0x9c, 0x83, 0xcd, 0x58, 0x89, 0x50, 0x56,
10818c2ecf20Sopenharmony_ci	0xbb, 0x81, 0x00, 0x91, 0x32, 0xf3, 0x1b, 0x3e,
10828c2ecf20Sopenharmony_ci	0xcf, 0x45, 0xe1, 0xf9, 0xe1, 0x2c, 0x26, 0x78,
10838c2ecf20Sopenharmony_ci	0x93, 0x9a, 0x60, 0x46, 0xc9, 0xb5, 0x5e, 0x6a,
10848c2ecf20Sopenharmony_ci	0x28, 0x92, 0x87, 0x3f, 0x63, 0x7b, 0xdb, 0xf7,
10858c2ecf20Sopenharmony_ci	0xd0, 0x13, 0x9d, 0x32, 0x40, 0x5e, 0xcf, 0xfb,
10868c2ecf20Sopenharmony_ci	0x79, 0x68, 0x47, 0x4c, 0xfd, 0x01, 0x17, 0xe6,
10878c2ecf20Sopenharmony_ci	0x97, 0x93, 0x78, 0xbb, 0xa6, 0x27, 0xa3, 0xe8,
10888c2ecf20Sopenharmony_ci	0x1a, 0xe8, 0x94, 0x55, 0x7d, 0x08, 0xe5, 0xdc,
10898c2ecf20Sopenharmony_ci	0x66, 0xa3, 0x69, 0xc8, 0xca, 0xc5, 0xa1, 0x84,
10908c2ecf20Sopenharmony_ci	0x55, 0xde, 0x08, 0x91, 0x16, 0x3a, 0x0c, 0x86,
10918c2ecf20Sopenharmony_ci	0xab, 0x27, 0x2b, 0x64, 0x34, 0x02, 0x6c, 0x76,
10928c2ecf20Sopenharmony_ci	0x8b, 0xc6, 0xaf, 0xcc, 0xe1, 0xd6, 0x8c, 0x2a,
10938c2ecf20Sopenharmony_ci	0x18, 0x3d, 0xa6, 0x1b, 0x37, 0x75, 0x45, 0x73,
10948c2ecf20Sopenharmony_ci	0xc2, 0x75, 0xd7, 0x53, 0x78, 0x3a, 0xd6, 0xe8,
10958c2ecf20Sopenharmony_ci	0x29, 0xd2, 0x4a, 0xa8, 0x1e, 0x82, 0xf6, 0xb6,
10968c2ecf20Sopenharmony_ci	0x81, 0xde, 0x21, 0xed, 0x2b, 0x56, 0xbb, 0xf2,
10978c2ecf20Sopenharmony_ci	0xd0, 0x57, 0xc1, 0x7c, 0xd2, 0x6a, 0xd2, 0x56,
10988c2ecf20Sopenharmony_ci	0xf5, 0x13, 0x5f, 0x1c, 0x6a, 0x0b, 0x74, 0xfb,
10998c2ecf20Sopenharmony_ci	0xe9, 0xfe, 0x9e, 0xea, 0x95, 0xb2, 0x46, 0xab,
11008c2ecf20Sopenharmony_ci	0x0a, 0xfc, 0xfd, 0xf3, 0xbb, 0x04, 0x2b, 0x76,
11018c2ecf20Sopenharmony_ci	0x1b, 0xa4, 0x74, 0xb0, 0xc1, 0x78, 0xc3, 0x69,
11028c2ecf20Sopenharmony_ci	0xe2, 0xb0, 0x01, 0xe1, 0xde, 0x32, 0x4c, 0x8d,
11038c2ecf20Sopenharmony_ci	0x1a, 0xb3, 0x38, 0x08, 0xd5, 0xfc, 0x1f, 0xdc,
11048c2ecf20Sopenharmony_ci	0x0e, 0x2c, 0x9c, 0xb1, 0xa1, 0x63, 0x17, 0x22,
11058c2ecf20Sopenharmony_ci	0xf5, 0x6c, 0x93, 0x70, 0x74, 0x00, 0xf8, 0x39,
11068c2ecf20Sopenharmony_ci	0x01, 0x94, 0xd1, 0x32, 0x23, 0x56, 0x5d, 0xa6,
11078c2ecf20Sopenharmony_ci	0x02, 0x76, 0x76, 0x93, 0xce, 0x2f, 0x19, 0xe9,
11088c2ecf20Sopenharmony_ci	0x17, 0x52, 0xae, 0x6e, 0x2c, 0x6d, 0x61, 0x7f,
11098c2ecf20Sopenharmony_ci	0x3b, 0xaa, 0xe0, 0x52, 0x85, 0xc5, 0x65, 0xc1,
11108c2ecf20Sopenharmony_ci	0xbb, 0x8e, 0x5b, 0x21, 0xd5, 0xc9, 0x78, 0x83,
11118c2ecf20Sopenharmony_ci	0x07, 0x97, 0x4c, 0x62, 0x61, 0x41, 0xd4, 0xfc,
11128c2ecf20Sopenharmony_ci	0xc9, 0x39, 0xe3, 0x9b, 0xd0, 0xcc, 0x75, 0xc4,
11138c2ecf20Sopenharmony_ci	0x97, 0xe6, 0xdd, 0x2a, 0x5f, 0xa6, 0xe8, 0x59,
11148c2ecf20Sopenharmony_ci	0x6c, 0x98, 0xb9, 0x02, 0xe2, 0xa2, 0xd6, 0x68,
11158c2ecf20Sopenharmony_ci	0xee, 0x3b, 0x1d, 0xe3, 0x4d, 0x5b, 0x30, 0xef,
11168c2ecf20Sopenharmony_ci	0x03, 0xf2, 0xeb, 0x18, 0x57, 0x36, 0xe8, 0xa1,
11178c2ecf20Sopenharmony_ci	0xf4, 0x47, 0xfb, 0xcb, 0x8f, 0xcb, 0xc8, 0xf3,
11188c2ecf20Sopenharmony_ci	0x4f, 0x74, 0x9d, 0x9d, 0xb1, 0x8d, 0x14, 0x44,
11198c2ecf20Sopenharmony_ci	0xd9, 0x19, 0xb4, 0x54, 0x4f, 0x75, 0x19, 0x09,
11208c2ecf20Sopenharmony_ci	0xa0, 0x75, 0xbc, 0x3b, 0x82, 0xc6, 0x3f, 0xb8,
11218c2ecf20Sopenharmony_ci	0x83, 0x19, 0x6e, 0xd6, 0x37, 0xfe, 0x6e, 0x8a,
11228c2ecf20Sopenharmony_ci	0x4e, 0xe0, 0x4a, 0xab, 0x7b, 0xc8, 0xb4, 0x1d,
11238c2ecf20Sopenharmony_ci	0xf4, 0xed, 0x27, 0x03, 0x65, 0xa2, 0xa1, 0xae,
11248c2ecf20Sopenharmony_ci	0x11, 0xe7, 0x98, 0x78, 0x48, 0x91, 0xd2, 0xd2,
11258c2ecf20Sopenharmony_ci	0xd4, 0x23, 0x78, 0x50, 0xb1, 0x5b, 0x85, 0x10,
11268c2ecf20Sopenharmony_ci	0x8d, 0xca, 0x5f, 0x0f, 0x71, 0xae, 0x72, 0x9a,
11278c2ecf20Sopenharmony_ci	0xf6, 0x25, 0x19, 0x60, 0x06, 0xf7, 0x10, 0x34,
11288c2ecf20Sopenharmony_ci	0x18, 0x0d, 0xc9, 0x9f, 0x7b, 0x0c, 0x9b, 0x8f,
11298c2ecf20Sopenharmony_ci	0x91, 0x1b, 0x9f, 0xcd, 0x10, 0xee, 0x75, 0xf9,
11308c2ecf20Sopenharmony_ci	0x97, 0x66, 0xfc, 0x4d, 0x33, 0x6e, 0x28, 0x2b,
11318c2ecf20Sopenharmony_ci	0x92, 0x85, 0x4f, 0xab, 0x43, 0x8d, 0x8f, 0x7d,
11328c2ecf20Sopenharmony_ci	0x86, 0xa7, 0xc7, 0xd8, 0xd3, 0x0b, 0x8b, 0x57,
11338c2ecf20Sopenharmony_ci	0xb6, 0x1d, 0x95, 0x0d, 0xe9, 0xbc, 0xd9, 0x03,
11348c2ecf20Sopenharmony_ci	0xd9, 0x10, 0x19, 0xc3, 0x46, 0x63, 0x55, 0x87,
11358c2ecf20Sopenharmony_ci	0x61, 0x79, 0x6c, 0x95, 0x0e, 0x9c, 0xdd, 0xca,
11368c2ecf20Sopenharmony_ci	0xc3, 0xf3, 0x64, 0xf0, 0x7d, 0x76, 0xb7, 0x53,
11378c2ecf20Sopenharmony_ci	0x67, 0x2b, 0x1e, 0x44, 0x56, 0x81, 0xea, 0x8f,
11388c2ecf20Sopenharmony_ci	0x5c, 0x42, 0x16, 0xb8, 0x28, 0xeb, 0x1b, 0x61,
11398c2ecf20Sopenharmony_ci	0x10, 0x1e, 0xbf, 0xec, 0xa8
11408c2ecf20Sopenharmony_ci};
11418c2ecf20Sopenharmony_cistatic const u8 enc_output011[] __initconst = {
11428c2ecf20Sopenharmony_ci	0x6a, 0xfc, 0x4b, 0x25, 0xdf, 0xc0, 0xe4, 0xe8,
11438c2ecf20Sopenharmony_ci	0x17, 0x4d, 0x4c, 0xc9, 0x7e, 0xde, 0x3a, 0xcc,
11448c2ecf20Sopenharmony_ci	0x3c, 0xba, 0x6a, 0x77, 0x47, 0xdb, 0xe3, 0x74,
11458c2ecf20Sopenharmony_ci	0x7a, 0x4d, 0x5f, 0x8d, 0x37, 0x55, 0x80, 0x73,
11468c2ecf20Sopenharmony_ci	0x90, 0x66, 0x5d, 0x3a, 0x7d, 0x5d, 0x86, 0x5e,
11478c2ecf20Sopenharmony_ci	0x8d, 0xfd, 0x83, 0xff, 0x4e, 0x74, 0x6f, 0xf9,
11488c2ecf20Sopenharmony_ci	0xe6, 0x70, 0x17, 0x70, 0x3e, 0x96, 0xa7, 0x7e,
11498c2ecf20Sopenharmony_ci	0xcb, 0xab, 0x8f, 0x58, 0x24, 0x9b, 0x01, 0xfd,
11508c2ecf20Sopenharmony_ci	0xcb, 0xe6, 0x4d, 0x9b, 0xf0, 0x88, 0x94, 0x57,
11518c2ecf20Sopenharmony_ci	0x66, 0xef, 0x72, 0x4c, 0x42, 0x6e, 0x16, 0x19,
11528c2ecf20Sopenharmony_ci	0x15, 0xea, 0x70, 0x5b, 0xac, 0x13, 0xdb, 0x9f,
11538c2ecf20Sopenharmony_ci	0x18, 0xe2, 0x3c, 0x26, 0x97, 0xbc, 0xdc, 0x45,
11548c2ecf20Sopenharmony_ci	0x8c, 0x6c, 0x24, 0x69, 0x9c, 0xf7, 0x65, 0x1e,
11558c2ecf20Sopenharmony_ci	0x18, 0x59, 0x31, 0x7c, 0xe4, 0x73, 0xbc, 0x39,
11568c2ecf20Sopenharmony_ci	0x62, 0xc6, 0x5c, 0x9f, 0xbf, 0xfa, 0x90, 0x03,
11578c2ecf20Sopenharmony_ci	0xc9, 0x72, 0x26, 0xb6, 0x1b, 0xc2, 0xb7, 0x3f,
11588c2ecf20Sopenharmony_ci	0xf2, 0x13, 0x77, 0xf2, 0x8d, 0xb9, 0x47, 0xd0,
11598c2ecf20Sopenharmony_ci	0x53, 0xdd, 0xc8, 0x91, 0x83, 0x8b, 0xb1, 0xce,
11608c2ecf20Sopenharmony_ci	0xa3, 0xfe, 0xcd, 0xd9, 0xdd, 0x92, 0x7b, 0xdb,
11618c2ecf20Sopenharmony_ci	0xb8, 0xfb, 0xc9, 0x2d, 0x01, 0x59, 0x39, 0x52,
11628c2ecf20Sopenharmony_ci	0xad, 0x1b, 0xec, 0xcf, 0xd7, 0x70, 0x13, 0x21,
11638c2ecf20Sopenharmony_ci	0xf5, 0x47, 0xaa, 0x18, 0x21, 0x5c, 0xc9, 0x9a,
11648c2ecf20Sopenharmony_ci	0xd2, 0x6b, 0x05, 0x9c, 0x01, 0xa1, 0xda, 0x35,
11658c2ecf20Sopenharmony_ci	0x5d, 0xb3, 0x70, 0xe6, 0xa9, 0x80, 0x8b, 0x91,
11668c2ecf20Sopenharmony_ci	0xb7, 0xb3, 0x5f, 0x24, 0x9a, 0xb7, 0xd1, 0x6b,
11678c2ecf20Sopenharmony_ci	0xa1, 0x1c, 0x50, 0xba, 0x49, 0xe0, 0xee, 0x2e,
11688c2ecf20Sopenharmony_ci	0x75, 0xac, 0x69, 0xc0, 0xeb, 0x03, 0xdd, 0x19,
11698c2ecf20Sopenharmony_ci	0xe5, 0xf6, 0x06, 0xdd, 0xc3, 0xd7, 0x2b, 0x07,
11708c2ecf20Sopenharmony_ci	0x07, 0x30, 0xa7, 0x19, 0x0c, 0xbf, 0xe6, 0x18,
11718c2ecf20Sopenharmony_ci	0xcc, 0xb1, 0x01, 0x11, 0x85, 0x77, 0x1d, 0x96,
11728c2ecf20Sopenharmony_ci	0xa7, 0xa3, 0x00, 0x84, 0x02, 0xa2, 0x83, 0x68,
11738c2ecf20Sopenharmony_ci	0xda, 0x17, 0x27, 0xc8, 0x7f, 0x23, 0xb7, 0xf4,
11748c2ecf20Sopenharmony_ci	0x13, 0x85, 0xcf, 0xdd, 0x7a, 0x7d, 0x24, 0x57,
11758c2ecf20Sopenharmony_ci	0xfe, 0x05, 0x93, 0xf5, 0x74, 0xce, 0xed, 0x0c,
11768c2ecf20Sopenharmony_ci	0x20, 0x98, 0x8d, 0x92, 0x30, 0xa1, 0x29, 0x23,
11778c2ecf20Sopenharmony_ci	0x1a, 0xa0, 0x4f, 0x69, 0x56, 0x4c, 0xe1, 0xc8,
11788c2ecf20Sopenharmony_ci	0xce, 0xf6, 0x9a, 0x0c, 0xa4, 0xfa, 0x04, 0xf6,
11798c2ecf20Sopenharmony_ci	0x62, 0x95, 0xf2, 0xfa, 0xc7, 0x40, 0x68, 0x40,
11808c2ecf20Sopenharmony_ci	0x8f, 0x41, 0xda, 0xb4, 0x26, 0x6f, 0x70, 0xab,
11818c2ecf20Sopenharmony_ci	0x40, 0x61, 0xa4, 0x0e, 0x75, 0xfb, 0x86, 0xeb,
11828c2ecf20Sopenharmony_ci	0x9d, 0x9a, 0x1f, 0xec, 0x76, 0x99, 0xe7, 0xea,
11838c2ecf20Sopenharmony_ci	0xaa, 0x1e, 0x2d, 0xb5, 0xd4, 0xa6, 0x1a, 0xb8,
11848c2ecf20Sopenharmony_ci	0x61, 0x0a, 0x1d, 0x16, 0x5b, 0x98, 0xc2, 0x31,
11858c2ecf20Sopenharmony_ci	0x40, 0xe7, 0x23, 0x1d, 0x66, 0x99, 0xc8, 0xc0,
11868c2ecf20Sopenharmony_ci	0xd7, 0xce, 0xf3, 0x57, 0x40, 0x04, 0x3f, 0xfc,
11878c2ecf20Sopenharmony_ci	0xea, 0xb3, 0xfc, 0xd2, 0xd3, 0x99, 0xa4, 0x94,
11888c2ecf20Sopenharmony_ci	0x69, 0xa0, 0xef, 0xd1, 0x85, 0xb3, 0xa6, 0xb1,
11898c2ecf20Sopenharmony_ci	0x28, 0xbf, 0x94, 0x67, 0x22, 0xc3, 0x36, 0x46,
11908c2ecf20Sopenharmony_ci	0xf8, 0xd2, 0x0f, 0x5f, 0xf4, 0x59, 0x80, 0xe6,
11918c2ecf20Sopenharmony_ci	0x2d, 0x43, 0x08, 0x7d, 0x19, 0x09, 0x97, 0xa7,
11928c2ecf20Sopenharmony_ci	0x4c, 0x3d, 0x8d, 0xba, 0x65, 0x62, 0xa3, 0x71,
11938c2ecf20Sopenharmony_ci	0x33, 0x29, 0x62, 0xdb, 0xc1, 0x33, 0x34, 0x1a,
11948c2ecf20Sopenharmony_ci	0x63, 0x33, 0x16, 0xb6, 0x64, 0x7e, 0xab, 0x33,
11958c2ecf20Sopenharmony_ci	0xf0, 0xe6, 0x26, 0x68, 0xba, 0x1d, 0x2e, 0x38,
11968c2ecf20Sopenharmony_ci	0x08, 0xe6, 0x02, 0xd3, 0x25, 0x2c, 0x47, 0x23,
11978c2ecf20Sopenharmony_ci	0x58, 0x34, 0x0f, 0x9d, 0x63, 0x4f, 0x63, 0xbb,
11988c2ecf20Sopenharmony_ci	0x7f, 0x3b, 0x34, 0x38, 0xa7, 0xb5, 0x8d, 0x65,
11998c2ecf20Sopenharmony_ci	0xd9, 0x9f, 0x79, 0x55, 0x3e, 0x4d, 0xe7, 0x73,
12008c2ecf20Sopenharmony_ci	0xd8, 0xf6, 0x98, 0x97, 0x84, 0x60, 0x9c, 0xc8,
12018c2ecf20Sopenharmony_ci	0xa9, 0x3c, 0xf6, 0xdc, 0x12, 0x5c, 0xe1, 0xbb,
12028c2ecf20Sopenharmony_ci	0x0b, 0x8b, 0x98, 0x9c, 0x9d, 0x26, 0x7c, 0x4a,
12038c2ecf20Sopenharmony_ci	0xe6, 0x46, 0x36, 0x58, 0x21, 0x4a, 0xee, 0xca,
12048c2ecf20Sopenharmony_ci	0xd7, 0x3b, 0xc2, 0x6c, 0x49, 0x2f, 0xe5, 0xd5,
12058c2ecf20Sopenharmony_ci	0x03, 0x59, 0x84, 0x53, 0xcb, 0xfe, 0x92, 0x71,
12068c2ecf20Sopenharmony_ci	0x2e, 0x7c, 0x21, 0xcc, 0x99, 0x85, 0x7f, 0xb8,
12078c2ecf20Sopenharmony_ci	0x74, 0x90, 0x13, 0x42, 0x3f, 0xe0, 0x6b, 0x1d,
12088c2ecf20Sopenharmony_ci	0xf2, 0x4d, 0x54, 0xd4, 0xfc, 0x3a, 0x05, 0xe6,
12098c2ecf20Sopenharmony_ci	0x74, 0xaf, 0xa6, 0xa0, 0x2a, 0x20, 0x23, 0x5d,
12108c2ecf20Sopenharmony_ci	0x34, 0x5c, 0xd9, 0x3e, 0x4e, 0xfa, 0x93, 0xe7,
12118c2ecf20Sopenharmony_ci	0xaa, 0xe9, 0x6f, 0x08, 0x43, 0x67, 0x41, 0xc5,
12128c2ecf20Sopenharmony_ci	0xad, 0xfb, 0x31, 0x95, 0x82, 0x73, 0x32, 0xd8,
12138c2ecf20Sopenharmony_ci	0xa6, 0xa3, 0xed, 0x0e, 0x2d, 0xf6, 0x5f, 0xfd,
12148c2ecf20Sopenharmony_ci	0x80, 0xa6, 0x7a, 0xe0, 0xdf, 0x78, 0x15, 0x29,
12158c2ecf20Sopenharmony_ci	0x74, 0x33, 0xd0, 0x9e, 0x83, 0x86, 0x72, 0x22,
12168c2ecf20Sopenharmony_ci	0x57, 0x29, 0xb9, 0x9e, 0x5d, 0xd3, 0x1a, 0xb5,
12178c2ecf20Sopenharmony_ci	0x96, 0x72, 0x41, 0x3d, 0xf1, 0x64, 0x43, 0x67,
12188c2ecf20Sopenharmony_ci	0xee, 0xaa, 0x5c, 0xd3, 0x9a, 0x96, 0x13, 0x11,
12198c2ecf20Sopenharmony_ci	0x5d, 0xf3, 0x0c, 0x87, 0x82, 0x1e, 0x41, 0x9e,
12208c2ecf20Sopenharmony_ci	0xd0, 0x27, 0xd7, 0x54, 0x3b, 0x67, 0x73, 0x09,
12218c2ecf20Sopenharmony_ci	0x91, 0xe9, 0xd5, 0x36, 0xa7, 0xb5, 0x55, 0xe4,
12228c2ecf20Sopenharmony_ci	0xf3, 0x21, 0x51, 0x49, 0x22, 0x07, 0x55, 0x4f,
12238c2ecf20Sopenharmony_ci	0x44, 0x4b, 0xd2, 0x15, 0x93, 0x17, 0x2a, 0xfa,
12248c2ecf20Sopenharmony_ci	0x4d, 0x4a, 0x57, 0xdb, 0x4c, 0xa6, 0xeb, 0xec,
12258c2ecf20Sopenharmony_ci	0x53, 0x25, 0x6c, 0x21, 0xed, 0x00, 0x4c, 0x3b,
12268c2ecf20Sopenharmony_ci	0xca, 0x14, 0x57, 0xa9, 0xd6, 0x6a, 0xcd, 0x8d,
12278c2ecf20Sopenharmony_ci	0x5e, 0x74, 0xac, 0x72, 0xc1, 0x97, 0xe5, 0x1b,
12288c2ecf20Sopenharmony_ci	0x45, 0x4e, 0xda, 0xfc, 0xcc, 0x40, 0xe8, 0x48,
12298c2ecf20Sopenharmony_ci	0x88, 0x0b, 0xa3, 0xe3, 0x8d, 0x83, 0x42, 0xc3,
12308c2ecf20Sopenharmony_ci	0x23, 0xfd, 0x68, 0xb5, 0x8e, 0xf1, 0x9d, 0x63,
12318c2ecf20Sopenharmony_ci	0x77, 0xe9, 0xa3, 0x8e, 0x8c, 0x26, 0x6b, 0xbd,
12328c2ecf20Sopenharmony_ci	0x72, 0x73, 0x35, 0x0c, 0x03, 0xf8, 0x43, 0x78,
12338c2ecf20Sopenharmony_ci	0x52, 0x71, 0x15, 0x1f, 0x71, 0x5d, 0x6e, 0xed,
12348c2ecf20Sopenharmony_ci	0xb9, 0xcc, 0x86, 0x30, 0xdb, 0x2b, 0xd3, 0x82,
12358c2ecf20Sopenharmony_ci	0x88, 0x23, 0x71, 0x90, 0x53, 0x5c, 0xa9, 0x2f,
12368c2ecf20Sopenharmony_ci	0x76, 0x01, 0xb7, 0x9a, 0xfe, 0x43, 0x55, 0xa3,
12378c2ecf20Sopenharmony_ci	0x04, 0x9b, 0x0e, 0xe4, 0x59, 0xdf, 0xc9, 0xe9,
12388c2ecf20Sopenharmony_ci	0xb1, 0xea, 0x29, 0x28, 0x3c, 0x5c, 0xae, 0x72,
12398c2ecf20Sopenharmony_ci	0x84, 0xb6, 0xc6, 0xeb, 0x0c, 0x27, 0x07, 0x74,
12408c2ecf20Sopenharmony_ci	0x90, 0x0d, 0x31, 0xb0, 0x00, 0x77, 0xe9, 0x40,
12418c2ecf20Sopenharmony_ci	0x70, 0x6f, 0x68, 0xa7, 0xfd, 0x06, 0xec, 0x4b,
12428c2ecf20Sopenharmony_ci	0xc0, 0xb7, 0xac, 0xbc, 0x33, 0xb7, 0x6d, 0x0a,
12438c2ecf20Sopenharmony_ci	0xbd, 0x12, 0x1b, 0x59, 0xcb, 0xdd, 0x32, 0xf5,
12448c2ecf20Sopenharmony_ci	0x1d, 0x94, 0x57, 0x76, 0x9e, 0x0c, 0x18, 0x98,
12458c2ecf20Sopenharmony_ci	0x71, 0xd7, 0x2a, 0xdb, 0x0b, 0x7b, 0xa7, 0x71,
12468c2ecf20Sopenharmony_ci	0xb7, 0x67, 0x81, 0x23, 0x96, 0xae, 0xb9, 0x7e,
12478c2ecf20Sopenharmony_ci	0x32, 0x43, 0x92, 0x8a, 0x19, 0xa0, 0xc4, 0xd4,
12488c2ecf20Sopenharmony_ci	0x3b, 0x57, 0xf9, 0x4a, 0x2c, 0xfb, 0x51, 0x46,
12498c2ecf20Sopenharmony_ci	0xbb, 0xcb, 0x5d, 0xb3, 0xef, 0x13, 0x93, 0x6e,
12508c2ecf20Sopenharmony_ci	0x68, 0x42, 0x54, 0x57, 0xd3, 0x6a, 0x3a, 0x8f,
12518c2ecf20Sopenharmony_ci	0x9d, 0x66, 0xbf, 0xbd, 0x36, 0x23, 0xf5, 0x93,
12528c2ecf20Sopenharmony_ci	0x83, 0x7b, 0x9c, 0xc0, 0xdd, 0xc5, 0x49, 0xc0,
12538c2ecf20Sopenharmony_ci	0x64, 0xed, 0x07, 0x12, 0xb3, 0xe6, 0xe4, 0xe5,
12548c2ecf20Sopenharmony_ci	0x38, 0x95, 0x23, 0xb1, 0xa0, 0x3b, 0x1a, 0x61,
12558c2ecf20Sopenharmony_ci	0xda, 0x17, 0xac, 0xc3, 0x58, 0xdd, 0x74, 0x64,
12568c2ecf20Sopenharmony_ci	0x22, 0x11, 0xe8, 0x32, 0x1d, 0x16, 0x93, 0x85,
12578c2ecf20Sopenharmony_ci	0x99, 0xa5, 0x9c, 0x34, 0x55, 0xb1, 0xe9, 0x20,
12588c2ecf20Sopenharmony_ci	0x72, 0xc9, 0x28, 0x7b, 0x79, 0x00, 0xa1, 0xa6,
12598c2ecf20Sopenharmony_ci	0xa3, 0x27, 0x40, 0x18, 0x8a, 0x54, 0xe0, 0xcc,
12608c2ecf20Sopenharmony_ci	0xe8, 0x4e, 0x8e, 0x43, 0x96, 0xe7, 0x3f, 0xc8,
12618c2ecf20Sopenharmony_ci	0xe9, 0xb2, 0xf9, 0xc9, 0xda, 0x04, 0x71, 0x50,
12628c2ecf20Sopenharmony_ci	0x47, 0xe4, 0xaa, 0xce, 0xa2, 0x30, 0xc8, 0xe4,
12638c2ecf20Sopenharmony_ci	0xac, 0xc7, 0x0d, 0x06, 0x2e, 0xe6, 0xe8, 0x80,
12648c2ecf20Sopenharmony_ci	0x36, 0x29, 0x9e, 0x01, 0xb8, 0xc3, 0xf0, 0xa0,
12658c2ecf20Sopenharmony_ci	0x5d, 0x7a, 0xca, 0x4d, 0xa0, 0x57, 0xbd, 0x2a,
12668c2ecf20Sopenharmony_ci	0x45, 0xa7, 0x7f, 0x9c, 0x93, 0x07, 0x8f, 0x35,
12678c2ecf20Sopenharmony_ci	0x67, 0x92, 0xe3, 0xe9, 0x7f, 0xa8, 0x61, 0x43,
12688c2ecf20Sopenharmony_ci	0x9e, 0x25, 0x4f, 0x33, 0x76, 0x13, 0x6e, 0x12,
12698c2ecf20Sopenharmony_ci	0xb9, 0xdd, 0xa4, 0x7c, 0x08, 0x9f, 0x7c, 0xe7,
12708c2ecf20Sopenharmony_ci	0x0a, 0x8d, 0x84, 0x06, 0xa4, 0x33, 0x17, 0x34,
12718c2ecf20Sopenharmony_ci	0x5e, 0x10, 0x7c, 0xc0, 0xa8, 0x3d, 0x1f, 0x42,
12728c2ecf20Sopenharmony_ci	0x20, 0x51, 0x65, 0x5d, 0x09, 0xc3, 0xaa, 0xc0,
12738c2ecf20Sopenharmony_ci	0xc8, 0x0d, 0xf0, 0x79, 0xbc, 0x20, 0x1b, 0x95,
12748c2ecf20Sopenharmony_ci	0xe7, 0x06, 0x7d, 0x47, 0x20, 0x03, 0x1a, 0x74,
12758c2ecf20Sopenharmony_ci	0xdd, 0xe2, 0xd4, 0xae, 0x38, 0x71, 0x9b, 0xf5,
12768c2ecf20Sopenharmony_ci	0x80, 0xec, 0x08, 0x4e, 0x56, 0xba, 0x76, 0x12,
12778c2ecf20Sopenharmony_ci	0x1a, 0xdf, 0x48, 0xf3, 0xae, 0xb3, 0xe6, 0xe6,
12788c2ecf20Sopenharmony_ci	0xbe, 0xc0, 0x91, 0x2e, 0x01, 0xb3, 0x01, 0x86,
12798c2ecf20Sopenharmony_ci	0xa2, 0xb9, 0x52, 0xd1, 0x21, 0xae, 0xd4, 0x97,
12808c2ecf20Sopenharmony_ci	0x1d, 0xef, 0x41, 0x12, 0x95, 0x3d, 0x48, 0x45,
12818c2ecf20Sopenharmony_ci	0x1c, 0x56, 0x32, 0x8f, 0xb8, 0x43, 0xbb, 0x19,
12828c2ecf20Sopenharmony_ci	0xf3, 0xca, 0xe9, 0xeb, 0x6d, 0x84, 0xbe, 0x86,
12838c2ecf20Sopenharmony_ci	0x06, 0xe2, 0x36, 0xb2, 0x62, 0x9d, 0xd3, 0x4c,
12848c2ecf20Sopenharmony_ci	0x48, 0x18, 0x54, 0x13, 0x4e, 0xcf, 0xfd, 0xba,
12858c2ecf20Sopenharmony_ci	0x84, 0xb9, 0x30, 0x53, 0xcf, 0xfb, 0xb9, 0x29,
12868c2ecf20Sopenharmony_ci	0x8f, 0xdc, 0x9f, 0xef, 0x60, 0x0b, 0x64, 0xf6,
12878c2ecf20Sopenharmony_ci	0x8b, 0xee, 0xa6, 0x91, 0xc2, 0x41, 0x6c, 0xf6,
12888c2ecf20Sopenharmony_ci	0xfa, 0x79, 0x67, 0x4b, 0xc1, 0x3f, 0xaf, 0x09,
12898c2ecf20Sopenharmony_ci	0x81, 0xd4, 0x5d, 0xcb, 0x09, 0xdf, 0x36, 0x31,
12908c2ecf20Sopenharmony_ci	0xc0, 0x14, 0x3c, 0x7c, 0x0e, 0x65, 0x95, 0x99,
12918c2ecf20Sopenharmony_ci	0x6d, 0xa3, 0xf4, 0xd7, 0x38, 0xee, 0x1a, 0x2b,
12928c2ecf20Sopenharmony_ci	0x37, 0xe2, 0xa4, 0x3b, 0x4b, 0xd0, 0x65, 0xca,
12938c2ecf20Sopenharmony_ci	0xf8, 0xc3, 0xe8, 0x15, 0x20, 0xef, 0xf2, 0x00,
12948c2ecf20Sopenharmony_ci	0xfd, 0x01, 0x09, 0xc5, 0xc8, 0x17, 0x04, 0x93,
12958c2ecf20Sopenharmony_ci	0xd0, 0x93, 0x03, 0x55, 0xc5, 0xfe, 0x32, 0xa3,
12968c2ecf20Sopenharmony_ci	0x3e, 0x28, 0x2d, 0x3b, 0x93, 0x8a, 0xcc, 0x07,
12978c2ecf20Sopenharmony_ci	0x72, 0x80, 0x8b, 0x74, 0x16, 0x24, 0xbb, 0xda,
12988c2ecf20Sopenharmony_ci	0x94, 0x39, 0x30, 0x8f, 0xb1, 0xcd, 0x4a, 0x90,
12998c2ecf20Sopenharmony_ci	0x92, 0x7c, 0x14, 0x8f, 0x95, 0x4e, 0xac, 0x9b,
13008c2ecf20Sopenharmony_ci	0xd8, 0x8f, 0x1a, 0x87, 0xa4, 0x32, 0x27, 0x8a,
13018c2ecf20Sopenharmony_ci	0xba, 0xf7, 0x41, 0xcf, 0x84, 0x37, 0x19, 0xe6,
13028c2ecf20Sopenharmony_ci	0x06, 0xf5, 0x0e, 0xcf, 0x36, 0xf5, 0x9e, 0x6c,
13038c2ecf20Sopenharmony_ci	0xde, 0xbc, 0xff, 0x64, 0x7e, 0x4e, 0x59, 0x57,
13048c2ecf20Sopenharmony_ci	0x48, 0xfe, 0x14, 0xf7, 0x9c, 0x93, 0x5d, 0x15,
13058c2ecf20Sopenharmony_ci	0xad, 0xcc, 0x11, 0xb1, 0x17, 0x18, 0xb2, 0x7e,
13068c2ecf20Sopenharmony_ci	0xcc, 0xab, 0xe9, 0xce, 0x7d, 0x77, 0x5b, 0x51,
13078c2ecf20Sopenharmony_ci	0x1b, 0x1e, 0x20, 0xa8, 0x32, 0x06, 0x0e, 0x75,
13088c2ecf20Sopenharmony_ci	0x93, 0xac, 0xdb, 0x35, 0x37, 0x1f, 0xe9, 0x19,
13098c2ecf20Sopenharmony_ci	0x1d, 0xb4, 0x71, 0x97, 0xd6, 0x4e, 0x2c, 0x08,
13108c2ecf20Sopenharmony_ci	0xa5, 0x13, 0xf9, 0x0e, 0x7e, 0x78, 0x6e, 0x14,
13118c2ecf20Sopenharmony_ci	0xe0, 0xa9, 0xb9, 0x96, 0x4c, 0x80, 0x82, 0xba,
13128c2ecf20Sopenharmony_ci	0x17, 0xb3, 0x9d, 0x69, 0xb0, 0x84, 0x46, 0xff,
13138c2ecf20Sopenharmony_ci	0xf9, 0x52, 0x79, 0x94, 0x58, 0x3a, 0x62, 0x90,
13148c2ecf20Sopenharmony_ci	0x15, 0x35, 0x71, 0x10, 0x37, 0xed, 0xa1, 0x8e,
13158c2ecf20Sopenharmony_ci	0x53, 0x6e, 0xf4, 0x26, 0x57, 0x93, 0x15, 0x93,
13168c2ecf20Sopenharmony_ci	0xf6, 0x81, 0x2c, 0x5a, 0x10, 0xda, 0x92, 0xad,
13178c2ecf20Sopenharmony_ci	0x2f, 0xdb, 0x28, 0x31, 0x2d, 0x55, 0x04, 0xd2,
13188c2ecf20Sopenharmony_ci	0x06, 0x28, 0x8c, 0x1e, 0xdc, 0xea, 0x54, 0xac,
13198c2ecf20Sopenharmony_ci	0xff, 0xb7, 0x6c, 0x30, 0x15, 0xd4, 0xb4, 0x0d,
13208c2ecf20Sopenharmony_ci	0x00, 0x93, 0x57, 0xdd, 0xd2, 0x07, 0x07, 0x06,
13218c2ecf20Sopenharmony_ci	0xd9, 0x43, 0x9b, 0xcd, 0x3a, 0xf4, 0x7d, 0x4c,
13228c2ecf20Sopenharmony_ci	0x36, 0x5d, 0x23, 0xa2, 0xcc, 0x57, 0x40, 0x91,
13238c2ecf20Sopenharmony_ci	0xe9, 0x2c, 0x2f, 0x2c, 0xd5, 0x30, 0x9b, 0x17,
13248c2ecf20Sopenharmony_ci	0xb0, 0xc9, 0xf7, 0xa7, 0x2f, 0xd1, 0x93, 0x20,
13258c2ecf20Sopenharmony_ci	0x6b, 0xc6, 0xc1, 0xe4, 0x6f, 0xcb, 0xd1, 0xe7,
13268c2ecf20Sopenharmony_ci	0x09, 0x0f, 0x9e, 0xdc, 0xaa, 0x9f, 0x2f, 0xdf,
13278c2ecf20Sopenharmony_ci	0x56, 0x9f, 0xd4, 0x33, 0x04, 0xaf, 0xd3, 0x6c,
13288c2ecf20Sopenharmony_ci	0x58, 0x61, 0xf0, 0x30, 0xec, 0xf2, 0x7f, 0xf2,
13298c2ecf20Sopenharmony_ci	0x9c, 0xdf, 0x39, 0xbb, 0x6f, 0xa2, 0x8c, 0x7e,
13308c2ecf20Sopenharmony_ci	0xc4, 0x22, 0x51, 0x71, 0xc0, 0x4d, 0x14, 0x1a,
13318c2ecf20Sopenharmony_ci	0xc4, 0xcd, 0x04, 0xd9, 0x87, 0x08, 0x50, 0x05,
13328c2ecf20Sopenharmony_ci	0xcc, 0xaf, 0xf6, 0xf0, 0x8f, 0x92, 0x54, 0x58,
13338c2ecf20Sopenharmony_ci	0xc2, 0xc7, 0x09, 0x7a, 0x59, 0x02, 0x05, 0xe8,
13348c2ecf20Sopenharmony_ci	0xb0, 0x86, 0xd9, 0xbf, 0x7b, 0x35, 0x51, 0x4d,
13358c2ecf20Sopenharmony_ci	0xaf, 0x08, 0x97, 0x2c, 0x65, 0xda, 0x2a, 0x71,
13368c2ecf20Sopenharmony_ci	0x3a, 0xa8, 0x51, 0xcc, 0xf2, 0x73, 0x27, 0xc3,
13378c2ecf20Sopenharmony_ci	0xfd, 0x62, 0xcf, 0xe3, 0xb2, 0xca, 0xcb, 0xbe,
13388c2ecf20Sopenharmony_ci	0x1a, 0x0a, 0xa1, 0x34, 0x7b, 0x77, 0xc4, 0x62,
13398c2ecf20Sopenharmony_ci	0x68, 0x78, 0x5f, 0x94, 0x07, 0x04, 0x65, 0x16,
13408c2ecf20Sopenharmony_ci	0x4b, 0x61, 0xcb, 0xff, 0x75, 0x26, 0x50, 0x66,
13418c2ecf20Sopenharmony_ci	0x1f, 0x6e, 0x93, 0xf8, 0xc5, 0x51, 0xeb, 0xa4,
13428c2ecf20Sopenharmony_ci	0x4a, 0x48, 0x68, 0x6b, 0xe2, 0x5e, 0x44, 0xb2,
13438c2ecf20Sopenharmony_ci	0x50, 0x2c, 0x6c, 0xae, 0x79, 0x4e, 0x66, 0x35,
13448c2ecf20Sopenharmony_ci	0x81, 0x50, 0xac, 0xbc, 0x3f, 0xb1, 0x0c, 0xf3,
13458c2ecf20Sopenharmony_ci	0x05, 0x3c, 0x4a, 0xa3, 0x6c, 0x2a, 0x79, 0xb4,
13468c2ecf20Sopenharmony_ci	0xb7, 0xab, 0xca, 0xc7, 0x9b, 0x8e, 0xcd, 0x5f,
13478c2ecf20Sopenharmony_ci	0x11, 0x03, 0xcb, 0x30, 0xa3, 0xab, 0xda, 0xfe,
13488c2ecf20Sopenharmony_ci	0x64, 0xb9, 0xbb, 0xd8, 0x5e, 0x3a, 0x1a, 0x56,
13498c2ecf20Sopenharmony_ci	0xe5, 0x05, 0x48, 0x90, 0x1e, 0x61, 0x69, 0x1b,
13508c2ecf20Sopenharmony_ci	0x22, 0xe6, 0x1a, 0x3c, 0x75, 0xad, 0x1f, 0x37,
13518c2ecf20Sopenharmony_ci	0x28, 0xdc, 0xe4, 0x6d, 0xbd, 0x42, 0xdc, 0xd3,
13528c2ecf20Sopenharmony_ci	0xc8, 0xb6, 0x1c, 0x48, 0xfe, 0x94, 0x77, 0x7f,
13538c2ecf20Sopenharmony_ci	0xbd, 0x62, 0xac, 0xa3, 0x47, 0x27, 0xcf, 0x5f,
13548c2ecf20Sopenharmony_ci	0xd9, 0xdb, 0xaf, 0xec, 0xf7, 0x5e, 0xc1, 0xb0,
13558c2ecf20Sopenharmony_ci	0x9d, 0x01, 0x26, 0x99, 0x7e, 0x8f, 0x03, 0x70,
13568c2ecf20Sopenharmony_ci	0xb5, 0x42, 0xbe, 0x67, 0x28, 0x1b, 0x7c, 0xbd,
13578c2ecf20Sopenharmony_ci	0x61, 0x21, 0x97, 0xcc, 0x5c, 0xe1, 0x97, 0x8f,
13588c2ecf20Sopenharmony_ci	0x8d, 0xde, 0x2b, 0xaa, 0xa7, 0x71, 0x1d, 0x1e,
13598c2ecf20Sopenharmony_ci	0x02, 0x73, 0x70, 0x58, 0x32, 0x5b, 0x1d, 0x67,
13608c2ecf20Sopenharmony_ci	0x3d, 0xe0, 0x74, 0x4f, 0x03, 0xf2, 0x70, 0x51,
13618c2ecf20Sopenharmony_ci	0x79, 0xf1, 0x61, 0x70, 0x15, 0x74, 0x9d, 0x23,
13628c2ecf20Sopenharmony_ci	0x89, 0xde, 0xac, 0xfd, 0xde, 0xd0, 0x1f, 0xc3,
13638c2ecf20Sopenharmony_ci	0x87, 0x44, 0x35, 0x4b, 0xe5, 0xb0, 0x60, 0xc5,
13648c2ecf20Sopenharmony_ci	0x22, 0xe4, 0x9e, 0xca, 0xeb, 0xd5, 0x3a, 0x09,
13658c2ecf20Sopenharmony_ci	0x45, 0xa4, 0xdb, 0xfa, 0x3f, 0xeb, 0x1b, 0xc7,
13668c2ecf20Sopenharmony_ci	0xc8, 0x14, 0x99, 0x51, 0x92, 0x10, 0xed, 0xed,
13678c2ecf20Sopenharmony_ci	0x28, 0xe0, 0xa1, 0xf8, 0x26, 0xcf, 0xcd, 0xcb,
13688c2ecf20Sopenharmony_ci	0x63, 0xa1, 0x3b, 0xe3, 0xdf, 0x7e, 0xfe, 0xa6,
13698c2ecf20Sopenharmony_ci	0xf0, 0x81, 0x9a, 0xbf, 0x55, 0xde, 0x54, 0xd5,
13708c2ecf20Sopenharmony_ci	0x56, 0x60, 0x98, 0x10, 0x68, 0xf4, 0x38, 0x96,
13718c2ecf20Sopenharmony_ci	0x8e, 0x6f, 0x1d, 0x44, 0x7f, 0xd6, 0x2f, 0xfe,
13728c2ecf20Sopenharmony_ci	0x55, 0xfb, 0x0c, 0x7e, 0x67, 0xe2, 0x61, 0x44,
13738c2ecf20Sopenharmony_ci	0xed, 0xf2, 0x35, 0x30, 0x5d, 0xe9, 0xc7, 0xd6,
13748c2ecf20Sopenharmony_ci	0x6d, 0xe0, 0xa0, 0xed, 0xf3, 0xfc, 0xd8, 0x3e,
13758c2ecf20Sopenharmony_ci	0x0a, 0x7b, 0xcd, 0xaf, 0x65, 0x68, 0x18, 0xc0,
13768c2ecf20Sopenharmony_ci	0xec, 0x04, 0x1c, 0x74, 0x6d, 0xe2, 0x6e, 0x79,
13778c2ecf20Sopenharmony_ci	0xd4, 0x11, 0x2b, 0x62, 0xd5, 0x27, 0xad, 0x4f,
13788c2ecf20Sopenharmony_ci	0x01, 0x59, 0x73, 0xcc, 0x6a, 0x53, 0xfb, 0x2d,
13798c2ecf20Sopenharmony_ci	0xd5, 0x4e, 0x99, 0x21, 0x65, 0x4d, 0xf5, 0x82,
13808c2ecf20Sopenharmony_ci	0xf7, 0xd8, 0x42, 0xce, 0x6f, 0x3d, 0x36, 0x47,
13818c2ecf20Sopenharmony_ci	0xf1, 0x05, 0x16, 0xe8, 0x1b, 0x6a, 0x8f, 0x93,
13828c2ecf20Sopenharmony_ci	0xf2, 0x8f, 0x37, 0x40, 0x12, 0x28, 0xa3, 0xe6,
13838c2ecf20Sopenharmony_ci	0xb9, 0x17, 0x4a, 0x1f, 0xb1, 0xd1, 0x66, 0x69,
13848c2ecf20Sopenharmony_ci	0x86, 0xc4, 0xfc, 0x97, 0xae, 0x3f, 0x8f, 0x1e,
13858c2ecf20Sopenharmony_ci	0x2b, 0xdf, 0xcd, 0xf9, 0x3c
13868c2ecf20Sopenharmony_ci};
13878c2ecf20Sopenharmony_cistatic const u8 enc_assoc011[] __initconst = {
13888c2ecf20Sopenharmony_ci	0xd6, 0x31, 0xda, 0x5d, 0x42, 0x5e, 0xd7
13898c2ecf20Sopenharmony_ci};
13908c2ecf20Sopenharmony_cistatic const u8 enc_nonce011[] __initconst = {
13918c2ecf20Sopenharmony_ci	0xfd, 0x87, 0xd4, 0xd8, 0x62, 0xfd, 0xec, 0xaa
13928c2ecf20Sopenharmony_ci};
13938c2ecf20Sopenharmony_cistatic const u8 enc_key011[] __initconst = {
13948c2ecf20Sopenharmony_ci	0x35, 0x4e, 0xb5, 0x70, 0x50, 0x42, 0x8a, 0x85,
13958c2ecf20Sopenharmony_ci	0xf2, 0xfb, 0xed, 0x7b, 0xd0, 0x9e, 0x97, 0xca,
13968c2ecf20Sopenharmony_ci	0xfa, 0x98, 0x66, 0x63, 0xee, 0x37, 0xcc, 0x52,
13978c2ecf20Sopenharmony_ci	0xfe, 0xd1, 0xdf, 0x95, 0x15, 0x34, 0x29, 0x38
13988c2ecf20Sopenharmony_ci};
13998c2ecf20Sopenharmony_ci
14008c2ecf20Sopenharmony_cistatic const u8 enc_input012[] __initconst = {
14018c2ecf20Sopenharmony_ci	0x74, 0xa6, 0x3e, 0xe4, 0xb1, 0xcb, 0xaf, 0xb0,
14028c2ecf20Sopenharmony_ci	0x40, 0xe5, 0x0f, 0x9e, 0xf1, 0xf2, 0x89, 0xb5,
14038c2ecf20Sopenharmony_ci	0x42, 0x34, 0x8a, 0xa1, 0x03, 0xb7, 0xe9, 0x57,
14048c2ecf20Sopenharmony_ci	0x46, 0xbe, 0x20, 0xe4, 0x6e, 0xb0, 0xeb, 0xff,
14058c2ecf20Sopenharmony_ci	0xea, 0x07, 0x7e, 0xef, 0xe2, 0x55, 0x9f, 0xe5,
14068c2ecf20Sopenharmony_ci	0x78, 0x3a, 0xb7, 0x83, 0xc2, 0x18, 0x40, 0x7b,
14078c2ecf20Sopenharmony_ci	0xeb, 0xcd, 0x81, 0xfb, 0x90, 0x12, 0x9e, 0x46,
14088c2ecf20Sopenharmony_ci	0xa9, 0xd6, 0x4a, 0xba, 0xb0, 0x62, 0xdb, 0x6b,
14098c2ecf20Sopenharmony_ci	0x99, 0xc4, 0xdb, 0x54, 0x4b, 0xb8, 0xa5, 0x71,
14108c2ecf20Sopenharmony_ci	0xcb, 0xcd, 0x63, 0x32, 0x55, 0xfb, 0x31, 0xf0,
14118c2ecf20Sopenharmony_ci	0x38, 0xf5, 0xbe, 0x78, 0xe4, 0x45, 0xce, 0x1b,
14128c2ecf20Sopenharmony_ci	0x6a, 0x5b, 0x0e, 0xf4, 0x16, 0xe4, 0xb1, 0x3d,
14138c2ecf20Sopenharmony_ci	0xf6, 0x63, 0x7b, 0xa7, 0x0c, 0xde, 0x6f, 0x8f,
14148c2ecf20Sopenharmony_ci	0x74, 0xdf, 0xe0, 0x1e, 0x9d, 0xce, 0x8f, 0x24,
14158c2ecf20Sopenharmony_ci	0xef, 0x23, 0x35, 0x33, 0x7b, 0x83, 0x34, 0x23,
14168c2ecf20Sopenharmony_ci	0x58, 0x74, 0x14, 0x77, 0x1f, 0xc2, 0x4f, 0x4e,
14178c2ecf20Sopenharmony_ci	0xc6, 0x89, 0xf9, 0x52, 0x09, 0x37, 0x64, 0x14,
14188c2ecf20Sopenharmony_ci	0xc4, 0x01, 0x6b, 0x9d, 0x77, 0xe8, 0x90, 0x5d,
14198c2ecf20Sopenharmony_ci	0xa8, 0x4a, 0x2a, 0xef, 0x5c, 0x7f, 0xeb, 0xbb,
14208c2ecf20Sopenharmony_ci	0xb2, 0xc6, 0x93, 0x99, 0x66, 0xdc, 0x7f, 0xd4,
14218c2ecf20Sopenharmony_ci	0x9e, 0x2a, 0xca, 0x8d, 0xdb, 0xe7, 0x20, 0xcf,
14228c2ecf20Sopenharmony_ci	0xe4, 0x73, 0xae, 0x49, 0x7d, 0x64, 0x0f, 0x0e,
14238c2ecf20Sopenharmony_ci	0x28, 0x46, 0xa9, 0xa8, 0x32, 0xe4, 0x0e, 0xf6,
14248c2ecf20Sopenharmony_ci	0x51, 0x53, 0xb8, 0x3c, 0xb1, 0xff, 0xa3, 0x33,
14258c2ecf20Sopenharmony_ci	0x41, 0x75, 0xff, 0xf1, 0x6f, 0xf1, 0xfb, 0xbb,
14268c2ecf20Sopenharmony_ci	0x83, 0x7f, 0x06, 0x9b, 0xe7, 0x1b, 0x0a, 0xe0,
14278c2ecf20Sopenharmony_ci	0x5c, 0x33, 0x60, 0x5b, 0xdb, 0x5b, 0xed, 0xfe,
14288c2ecf20Sopenharmony_ci	0xa5, 0x16, 0x19, 0x72, 0xa3, 0x64, 0x23, 0x00,
14298c2ecf20Sopenharmony_ci	0x02, 0xc7, 0xf3, 0x6a, 0x81, 0x3e, 0x44, 0x1d,
14308c2ecf20Sopenharmony_ci	0x79, 0x15, 0x5f, 0x9a, 0xde, 0xe2, 0xfd, 0x1b,
14318c2ecf20Sopenharmony_ci	0x73, 0xc1, 0xbc, 0x23, 0xba, 0x31, 0xd2, 0x50,
14328c2ecf20Sopenharmony_ci	0xd5, 0xad, 0x7f, 0x74, 0xa7, 0xc9, 0xf8, 0x3e,
14338c2ecf20Sopenharmony_ci	0x2b, 0x26, 0x10, 0xf6, 0x03, 0x36, 0x74, 0xe4,
14348c2ecf20Sopenharmony_ci	0x0e, 0x6a, 0x72, 0xb7, 0x73, 0x0a, 0x42, 0x28,
14358c2ecf20Sopenharmony_ci	0xc2, 0xad, 0x5e, 0x03, 0xbe, 0xb8, 0x0b, 0xa8,
14368c2ecf20Sopenharmony_ci	0x5b, 0xd4, 0xb8, 0xba, 0x52, 0x89, 0xb1, 0x9b,
14378c2ecf20Sopenharmony_ci	0xc1, 0xc3, 0x65, 0x87, 0xed, 0xa5, 0xf4, 0x86,
14388c2ecf20Sopenharmony_ci	0xfd, 0x41, 0x80, 0x91, 0x27, 0x59, 0x53, 0x67,
14398c2ecf20Sopenharmony_ci	0x15, 0x78, 0x54, 0x8b, 0x2d, 0x3d, 0xc7, 0xff,
14408c2ecf20Sopenharmony_ci	0x02, 0x92, 0x07, 0x5f, 0x7a, 0x4b, 0x60, 0x59,
14418c2ecf20Sopenharmony_ci	0x3c, 0x6f, 0x5c, 0xd8, 0xec, 0x95, 0xd2, 0xfe,
14428c2ecf20Sopenharmony_ci	0xa0, 0x3b, 0xd8, 0x3f, 0xd1, 0x69, 0xa6, 0xd6,
14438c2ecf20Sopenharmony_ci	0x41, 0xb2, 0xf4, 0x4d, 0x12, 0xf4, 0x58, 0x3e,
14448c2ecf20Sopenharmony_ci	0x66, 0x64, 0x80, 0x31, 0x9b, 0xa8, 0x4c, 0x8b,
14458c2ecf20Sopenharmony_ci	0x07, 0xb2, 0xec, 0x66, 0x94, 0x66, 0x47, 0x50,
14468c2ecf20Sopenharmony_ci	0x50, 0x5f, 0x18, 0x0b, 0x0e, 0xd6, 0xc0, 0x39,
14478c2ecf20Sopenharmony_ci	0x21, 0x13, 0x9e, 0x33, 0xbc, 0x79, 0x36, 0x02,
14488c2ecf20Sopenharmony_ci	0x96, 0x70, 0xf0, 0x48, 0x67, 0x2f, 0x26, 0xe9,
14498c2ecf20Sopenharmony_ci	0x6d, 0x10, 0xbb, 0xd6, 0x3f, 0xd1, 0x64, 0x7a,
14508c2ecf20Sopenharmony_ci	0x2e, 0xbe, 0x0c, 0x61, 0xf0, 0x75, 0x42, 0x38,
14518c2ecf20Sopenharmony_ci	0x23, 0xb1, 0x9e, 0x9f, 0x7c, 0x67, 0x66, 0xd9,
14528c2ecf20Sopenharmony_ci	0x58, 0x9a, 0xf1, 0xbb, 0x41, 0x2a, 0x8d, 0x65,
14538c2ecf20Sopenharmony_ci	0x84, 0x94, 0xfc, 0xdc, 0x6a, 0x50, 0x64, 0xdb,
14548c2ecf20Sopenharmony_ci	0x56, 0x33, 0x76, 0x00, 0x10, 0xed, 0xbe, 0xd2,
14558c2ecf20Sopenharmony_ci	0x12, 0xf6, 0xf6, 0x1b, 0xa2, 0x16, 0xde, 0xae,
14568c2ecf20Sopenharmony_ci	0x31, 0x95, 0xdd, 0xb1, 0x08, 0x7e, 0x4e, 0xee,
14578c2ecf20Sopenharmony_ci	0xe7, 0xf9, 0xa5, 0xfb, 0x5b, 0x61, 0x43, 0x00,
14588c2ecf20Sopenharmony_ci	0x40, 0xf6, 0x7e, 0x02, 0x04, 0x32, 0x4e, 0x0c,
14598c2ecf20Sopenharmony_ci	0xe2, 0x66, 0x0d, 0xd7, 0x07, 0x98, 0x0e, 0xf8,
14608c2ecf20Sopenharmony_ci	0x72, 0x34, 0x6d, 0x95, 0x86, 0xd7, 0xcb, 0x31,
14618c2ecf20Sopenharmony_ci	0x54, 0x47, 0xd0, 0x38, 0x29, 0x9c, 0x5a, 0x68,
14628c2ecf20Sopenharmony_ci	0xd4, 0x87, 0x76, 0xc9, 0xe7, 0x7e, 0xe3, 0xf4,
14638c2ecf20Sopenharmony_ci	0x81, 0x6d, 0x18, 0xcb, 0xc9, 0x05, 0xaf, 0xa0,
14648c2ecf20Sopenharmony_ci	0xfb, 0x66, 0xf7, 0xf1, 0x1c, 0xc6, 0x14, 0x11,
14658c2ecf20Sopenharmony_ci	0x4f, 0x2b, 0x79, 0x42, 0x8b, 0xbc, 0xac, 0xe7,
14668c2ecf20Sopenharmony_ci	0x6c, 0xfe, 0x0f, 0x58, 0xe7, 0x7c, 0x78, 0x39,
14678c2ecf20Sopenharmony_ci	0x30, 0xb0, 0x66, 0x2c, 0x9b, 0x6d, 0x3a, 0xe1,
14688c2ecf20Sopenharmony_ci	0xcf, 0xc9, 0xa4, 0x0e, 0x6d, 0x6d, 0x8a, 0xa1,
14698c2ecf20Sopenharmony_ci	0x3a, 0xe7, 0x28, 0xd4, 0x78, 0x4c, 0xa6, 0xa2,
14708c2ecf20Sopenharmony_ci	0x2a, 0xa6, 0x03, 0x30, 0xd7, 0xa8, 0x25, 0x66,
14718c2ecf20Sopenharmony_ci	0x87, 0x2f, 0x69, 0x5c, 0x4e, 0xdd, 0xa5, 0x49,
14728c2ecf20Sopenharmony_ci	0x5d, 0x37, 0x4a, 0x59, 0xc4, 0xaf, 0x1f, 0xa2,
14738c2ecf20Sopenharmony_ci	0xe4, 0xf8, 0xa6, 0x12, 0x97, 0xd5, 0x79, 0xf5,
14748c2ecf20Sopenharmony_ci	0xe2, 0x4a, 0x2b, 0x5f, 0x61, 0xe4, 0x9e, 0xe3,
14758c2ecf20Sopenharmony_ci	0xee, 0xb8, 0xa7, 0x5b, 0x2f, 0xf4, 0x9e, 0x6c,
14768c2ecf20Sopenharmony_ci	0xfb, 0xd1, 0xc6, 0x56, 0x77, 0xba, 0x75, 0xaa,
14778c2ecf20Sopenharmony_ci	0x3d, 0x1a, 0xa8, 0x0b, 0xb3, 0x68, 0x24, 0x00,
14788c2ecf20Sopenharmony_ci	0x10, 0x7f, 0xfd, 0xd7, 0xa1, 0x8d, 0x83, 0x54,
14798c2ecf20Sopenharmony_ci	0x4f, 0x1f, 0xd8, 0x2a, 0xbe, 0x8a, 0x0c, 0x87,
14808c2ecf20Sopenharmony_ci	0xab, 0xa2, 0xde, 0xc3, 0x39, 0xbf, 0x09, 0x03,
14818c2ecf20Sopenharmony_ci	0xa5, 0xf3, 0x05, 0x28, 0xe1, 0xe1, 0xee, 0x39,
14828c2ecf20Sopenharmony_ci	0x70, 0x9c, 0xd8, 0x81, 0x12, 0x1e, 0x02, 0x40,
14838c2ecf20Sopenharmony_ci	0xd2, 0x6e, 0xf0, 0xeb, 0x1b, 0x3d, 0x22, 0xc6,
14848c2ecf20Sopenharmony_ci	0xe5, 0xe3, 0xb4, 0x5a, 0x98, 0xbb, 0xf0, 0x22,
14858c2ecf20Sopenharmony_ci	0x28, 0x8d, 0xe5, 0xd3, 0x16, 0x48, 0x24, 0xa5,
14868c2ecf20Sopenharmony_ci	0xe6, 0x66, 0x0c, 0xf9, 0x08, 0xf9, 0x7e, 0x1e,
14878c2ecf20Sopenharmony_ci	0xe1, 0x28, 0x26, 0x22, 0xc7, 0xc7, 0x0a, 0x32,
14888c2ecf20Sopenharmony_ci	0x47, 0xfa, 0xa3, 0xbe, 0x3c, 0xc4, 0xc5, 0x53,
14898c2ecf20Sopenharmony_ci	0x0a, 0xd5, 0x94, 0x4a, 0xd7, 0x93, 0xd8, 0x42,
14908c2ecf20Sopenharmony_ci	0x99, 0xb9, 0x0a, 0xdb, 0x56, 0xf7, 0xb9, 0x1c,
14918c2ecf20Sopenharmony_ci	0x53, 0x4f, 0xfa, 0xd3, 0x74, 0xad, 0xd9, 0x68,
14928c2ecf20Sopenharmony_ci	0xf1, 0x1b, 0xdf, 0x61, 0xc6, 0x5e, 0xa8, 0x48,
14938c2ecf20Sopenharmony_ci	0xfc, 0xd4, 0x4a, 0x4c, 0x3c, 0x32, 0xf7, 0x1c,
14948c2ecf20Sopenharmony_ci	0x96, 0x21, 0x9b, 0xf9, 0xa3, 0xcc, 0x5a, 0xce,
14958c2ecf20Sopenharmony_ci	0xd5, 0xd7, 0x08, 0x24, 0xf6, 0x1c, 0xfd, 0xdd,
14968c2ecf20Sopenharmony_ci	0x38, 0xc2, 0x32, 0xe9, 0xb8, 0xe7, 0xb6, 0xfa,
14978c2ecf20Sopenharmony_ci	0x9d, 0x45, 0x13, 0x2c, 0x83, 0xfd, 0x4a, 0x69,
14988c2ecf20Sopenharmony_ci	0x82, 0xcd, 0xdc, 0xb3, 0x76, 0x0c, 0x9e, 0xd8,
14998c2ecf20Sopenharmony_ci	0xf4, 0x1b, 0x45, 0x15, 0xb4, 0x97, 0xe7, 0x58,
15008c2ecf20Sopenharmony_ci	0x34, 0xe2, 0x03, 0x29, 0x5a, 0xbf, 0xb6, 0xe0,
15018c2ecf20Sopenharmony_ci	0x5d, 0x13, 0xd9, 0x2b, 0xb4, 0x80, 0xb2, 0x45,
15028c2ecf20Sopenharmony_ci	0x81, 0x6a, 0x2e, 0x6c, 0x89, 0x7d, 0xee, 0xbb,
15038c2ecf20Sopenharmony_ci	0x52, 0xdd, 0x1f, 0x18, 0xe7, 0x13, 0x6b, 0x33,
15048c2ecf20Sopenharmony_ci	0x0e, 0xea, 0x36, 0x92, 0x77, 0x7b, 0x6d, 0x9c,
15058c2ecf20Sopenharmony_ci	0x5a, 0x5f, 0x45, 0x7b, 0x7b, 0x35, 0x62, 0x23,
15068c2ecf20Sopenharmony_ci	0xd1, 0xbf, 0x0f, 0xd0, 0x08, 0x1b, 0x2b, 0x80,
15078c2ecf20Sopenharmony_ci	0x6b, 0x7e, 0xf1, 0x21, 0x47, 0xb0, 0x57, 0xd1,
15088c2ecf20Sopenharmony_ci	0x98, 0x72, 0x90, 0x34, 0x1c, 0x20, 0x04, 0xff,
15098c2ecf20Sopenharmony_ci	0x3d, 0x5c, 0xee, 0x0e, 0x57, 0x5f, 0x6f, 0x24,
15108c2ecf20Sopenharmony_ci	0x4e, 0x3c, 0xea, 0xfc, 0xa5, 0xa9, 0x83, 0xc9,
15118c2ecf20Sopenharmony_ci	0x61, 0xb4, 0x51, 0x24, 0xf8, 0x27, 0x5e, 0x46,
15128c2ecf20Sopenharmony_ci	0x8c, 0xb1, 0x53, 0x02, 0x96, 0x35, 0xba, 0xb8,
15138c2ecf20Sopenharmony_ci	0x4c, 0x71, 0xd3, 0x15, 0x59, 0x35, 0x22, 0x20,
15148c2ecf20Sopenharmony_ci	0xad, 0x03, 0x9f, 0x66, 0x44, 0x3b, 0x9c, 0x35,
15158c2ecf20Sopenharmony_ci	0x37, 0x1f, 0x9b, 0xbb, 0xf3, 0xdb, 0x35, 0x63,
15168c2ecf20Sopenharmony_ci	0x30, 0x64, 0xaa, 0xa2, 0x06, 0xa8, 0x5d, 0xbb,
15178c2ecf20Sopenharmony_ci	0xe1, 0x9f, 0x70, 0xec, 0x82, 0x11, 0x06, 0x36,
15188c2ecf20Sopenharmony_ci	0xec, 0x8b, 0x69, 0x66, 0x24, 0x44, 0xc9, 0x4a,
15198c2ecf20Sopenharmony_ci	0x57, 0xbb, 0x9b, 0x78, 0x13, 0xce, 0x9c, 0x0c,
15208c2ecf20Sopenharmony_ci	0xba, 0x92, 0x93, 0x63, 0xb8, 0xe2, 0x95, 0x0f,
15218c2ecf20Sopenharmony_ci	0x0f, 0x16, 0x39, 0x52, 0xfd, 0x3a, 0x6d, 0x02,
15228c2ecf20Sopenharmony_ci	0x4b, 0xdf, 0x13, 0xd3, 0x2a, 0x22, 0xb4, 0x03,
15238c2ecf20Sopenharmony_ci	0x7c, 0x54, 0x49, 0x96, 0x68, 0x54, 0x10, 0xfa,
15248c2ecf20Sopenharmony_ci	0xef, 0xaa, 0x6c, 0xe8, 0x22, 0xdc, 0x71, 0x16,
15258c2ecf20Sopenharmony_ci	0x13, 0x1a, 0xf6, 0x28, 0xe5, 0x6d, 0x77, 0x3d,
15268c2ecf20Sopenharmony_ci	0xcd, 0x30, 0x63, 0xb1, 0x70, 0x52, 0xa1, 0xc5,
15278c2ecf20Sopenharmony_ci	0x94, 0x5f, 0xcf, 0xe8, 0xb8, 0x26, 0x98, 0xf7,
15288c2ecf20Sopenharmony_ci	0x06, 0xa0, 0x0a, 0x70, 0xfa, 0x03, 0x80, 0xac,
15298c2ecf20Sopenharmony_ci	0xc1, 0xec, 0xd6, 0x4c, 0x54, 0xd7, 0xfe, 0x47,
15308c2ecf20Sopenharmony_ci	0xb6, 0x88, 0x4a, 0xf7, 0x71, 0x24, 0xee, 0xf3,
15318c2ecf20Sopenharmony_ci	0xd2, 0xc2, 0x4a, 0x7f, 0xfe, 0x61, 0xc7, 0x35,
15328c2ecf20Sopenharmony_ci	0xc9, 0x37, 0x67, 0xcb, 0x24, 0x35, 0xda, 0x7e,
15338c2ecf20Sopenharmony_ci	0xca, 0x5f, 0xf3, 0x8d, 0xd4, 0x13, 0x8e, 0xd6,
15348c2ecf20Sopenharmony_ci	0xcb, 0x4d, 0x53, 0x8f, 0x53, 0x1f, 0xc0, 0x74,
15358c2ecf20Sopenharmony_ci	0xf7, 0x53, 0xb9, 0x5e, 0x23, 0x37, 0xba, 0x6e,
15368c2ecf20Sopenharmony_ci	0xe3, 0x9d, 0x07, 0x55, 0x25, 0x7b, 0xe6, 0x2a,
15378c2ecf20Sopenharmony_ci	0x64, 0xd1, 0x32, 0xdd, 0x54, 0x1b, 0x4b, 0xc0,
15388c2ecf20Sopenharmony_ci	0xe1, 0xd7, 0x69, 0x58, 0xf8, 0x93, 0x29, 0xc4,
15398c2ecf20Sopenharmony_ci	0xdd, 0x23, 0x2f, 0xa5, 0xfc, 0x9d, 0x7e, 0xf8,
15408c2ecf20Sopenharmony_ci	0xd4, 0x90, 0xcd, 0x82, 0x55, 0xdc, 0x16, 0x16,
15418c2ecf20Sopenharmony_ci	0x9f, 0x07, 0x52, 0x9b, 0x9d, 0x25, 0xed, 0x32,
15428c2ecf20Sopenharmony_ci	0xc5, 0x7b, 0xdf, 0xf6, 0x83, 0x46, 0x3d, 0x65,
15438c2ecf20Sopenharmony_ci	0xb7, 0xef, 0x87, 0x7a, 0x12, 0x69, 0x8f, 0x06,
15448c2ecf20Sopenharmony_ci	0x7c, 0x51, 0x15, 0x4a, 0x08, 0xe8, 0xac, 0x9a,
15458c2ecf20Sopenharmony_ci	0x0c, 0x24, 0xa7, 0x27, 0xd8, 0x46, 0x2f, 0xe7,
15468c2ecf20Sopenharmony_ci	0x01, 0x0e, 0x1c, 0xc6, 0x91, 0xb0, 0x6e, 0x85,
15478c2ecf20Sopenharmony_ci	0x65, 0xf0, 0x29, 0x0d, 0x2e, 0x6b, 0x3b, 0xfb,
15488c2ecf20Sopenharmony_ci	0x4b, 0xdf, 0xe4, 0x80, 0x93, 0x03, 0x66, 0x46,
15498c2ecf20Sopenharmony_ci	0x3e, 0x8a, 0x6e, 0xf3, 0x5e, 0x4d, 0x62, 0x0e,
15508c2ecf20Sopenharmony_ci	0x49, 0x05, 0xaf, 0xd4, 0xf8, 0x21, 0x20, 0x61,
15518c2ecf20Sopenharmony_ci	0x1d, 0x39, 0x17, 0xf4, 0x61, 0x47, 0x95, 0xfb,
15528c2ecf20Sopenharmony_ci	0x15, 0x2e, 0xb3, 0x4f, 0xd0, 0x5d, 0xf5, 0x7d,
15538c2ecf20Sopenharmony_ci	0x40, 0xda, 0x90, 0x3c, 0x6b, 0xcb, 0x17, 0x00,
15548c2ecf20Sopenharmony_ci	0x13, 0x3b, 0x64, 0x34, 0x1b, 0xf0, 0xf2, 0xe5,
15558c2ecf20Sopenharmony_ci	0x3b, 0xb2, 0xc7, 0xd3, 0x5f, 0x3a, 0x44, 0xa6,
15568c2ecf20Sopenharmony_ci	0x9b, 0xb7, 0x78, 0x0e, 0x42, 0x5d, 0x4c, 0xc1,
15578c2ecf20Sopenharmony_ci	0xe9, 0xd2, 0xcb, 0xb7, 0x78, 0xd1, 0xfe, 0x9a,
15588c2ecf20Sopenharmony_ci	0xb5, 0x07, 0xe9, 0xe0, 0xbe, 0xe2, 0x8a, 0xa7,
15598c2ecf20Sopenharmony_ci	0x01, 0x83, 0x00, 0x8c, 0x5c, 0x08, 0xe6, 0x63,
15608c2ecf20Sopenharmony_ci	0x12, 0x92, 0xb7, 0xb7, 0xa6, 0x19, 0x7d, 0x38,
15618c2ecf20Sopenharmony_ci	0x13, 0x38, 0x92, 0x87, 0x24, 0xf9, 0x48, 0xb3,
15628c2ecf20Sopenharmony_ci	0x5e, 0x87, 0x6a, 0x40, 0x39, 0x5c, 0x3f, 0xed,
15638c2ecf20Sopenharmony_ci	0x8f, 0xee, 0xdb, 0x15, 0x82, 0x06, 0xda, 0x49,
15648c2ecf20Sopenharmony_ci	0x21, 0x2b, 0xb5, 0xbf, 0x32, 0x7c, 0x9f, 0x42,
15658c2ecf20Sopenharmony_ci	0x28, 0x63, 0xcf, 0xaf, 0x1e, 0xf8, 0xc6, 0xa0,
15668c2ecf20Sopenharmony_ci	0xd1, 0x02, 0x43, 0x57, 0x62, 0xec, 0x9b, 0x0f,
15678c2ecf20Sopenharmony_ci	0x01, 0x9e, 0x71, 0xd8, 0x87, 0x9d, 0x01, 0xc1,
15688c2ecf20Sopenharmony_ci	0x58, 0x77, 0xd9, 0xaf, 0xb1, 0x10, 0x7e, 0xdd,
15698c2ecf20Sopenharmony_ci	0xa6, 0x50, 0x96, 0xe5, 0xf0, 0x72, 0x00, 0x6d,
15708c2ecf20Sopenharmony_ci	0x4b, 0xf8, 0x2a, 0x8f, 0x19, 0xf3, 0x22, 0x88,
15718c2ecf20Sopenharmony_ci	0x11, 0x4a, 0x8b, 0x7c, 0xfd, 0xb7, 0xed, 0xe1,
15728c2ecf20Sopenharmony_ci	0xf6, 0x40, 0x39, 0xe0, 0xe9, 0xf6, 0x3d, 0x25,
15738c2ecf20Sopenharmony_ci	0xe6, 0x74, 0x3c, 0x58, 0x57, 0x7f, 0xe1, 0x22,
15748c2ecf20Sopenharmony_ci	0x96, 0x47, 0x31, 0x91, 0xba, 0x70, 0x85, 0x28,
15758c2ecf20Sopenharmony_ci	0x6b, 0x9f, 0x6e, 0x25, 0xac, 0x23, 0x66, 0x2f,
15768c2ecf20Sopenharmony_ci	0x29, 0x88, 0x28, 0xce, 0x8c, 0x5c, 0x88, 0x53,
15778c2ecf20Sopenharmony_ci	0xd1, 0x3b, 0xcc, 0x6a, 0x51, 0xb2, 0xe1, 0x28,
15788c2ecf20Sopenharmony_ci	0x3f, 0x91, 0xb4, 0x0d, 0x00, 0x3a, 0xe3, 0xf8,
15798c2ecf20Sopenharmony_ci	0xc3, 0x8f, 0xd7, 0x96, 0x62, 0x0e, 0x2e, 0xfc,
15808c2ecf20Sopenharmony_ci	0xc8, 0x6c, 0x77, 0xa6, 0x1d, 0x22, 0xc1, 0xb8,
15818c2ecf20Sopenharmony_ci	0xe6, 0x61, 0xd7, 0x67, 0x36, 0x13, 0x7b, 0xbb,
15828c2ecf20Sopenharmony_ci	0x9b, 0x59, 0x09, 0xa6, 0xdf, 0xf7, 0x6b, 0xa3,
15838c2ecf20Sopenharmony_ci	0x40, 0x1a, 0xf5, 0x4f, 0xb4, 0xda, 0xd3, 0xf3,
15848c2ecf20Sopenharmony_ci	0x81, 0x93, 0xc6, 0x18, 0xd9, 0x26, 0xee, 0xac,
15858c2ecf20Sopenharmony_ci	0xf0, 0xaa, 0xdf, 0xc5, 0x9c, 0xca, 0xc2, 0xa2,
15868c2ecf20Sopenharmony_ci	0xcc, 0x7b, 0x5c, 0x24, 0xb0, 0xbc, 0xd0, 0x6a,
15878c2ecf20Sopenharmony_ci	0x4d, 0x89, 0x09, 0xb8, 0x07, 0xfe, 0x87, 0xad,
15888c2ecf20Sopenharmony_ci	0x0a, 0xea, 0xb8, 0x42, 0xf9, 0x5e, 0xb3, 0x3e,
15898c2ecf20Sopenharmony_ci	0x36, 0x4c, 0xaf, 0x75, 0x9e, 0x1c, 0xeb, 0xbd,
15908c2ecf20Sopenharmony_ci	0xbc, 0xbb, 0x80, 0x40, 0xa7, 0x3a, 0x30, 0xbf,
15918c2ecf20Sopenharmony_ci	0xa8, 0x44, 0xf4, 0xeb, 0x38, 0xad, 0x29, 0xba,
15928c2ecf20Sopenharmony_ci	0x23, 0xed, 0x41, 0x0c, 0xea, 0xd2, 0xbb, 0x41,
15938c2ecf20Sopenharmony_ci	0x18, 0xd6, 0xb9, 0xba, 0x65, 0x2b, 0xa3, 0x91,
15948c2ecf20Sopenharmony_ci	0x6d, 0x1f, 0xa9, 0xf4, 0xd1, 0x25, 0x8d, 0x4d,
15958c2ecf20Sopenharmony_ci	0x38, 0xff, 0x64, 0xa0, 0xec, 0xde, 0xa6, 0xb6,
15968c2ecf20Sopenharmony_ci	0x79, 0xab, 0x8e, 0x33, 0x6c, 0x47, 0xde, 0xaf,
15978c2ecf20Sopenharmony_ci	0x94, 0xa4, 0xa5, 0x86, 0x77, 0x55, 0x09, 0x92,
15988c2ecf20Sopenharmony_ci	0x81, 0x31, 0x76, 0xc7, 0x34, 0x22, 0x89, 0x8e,
15998c2ecf20Sopenharmony_ci	0x3d, 0x26, 0x26, 0xd7, 0xfc, 0x1e, 0x16, 0x72,
16008c2ecf20Sopenharmony_ci	0x13, 0x33, 0x63, 0xd5, 0x22, 0xbe, 0xb8, 0x04,
16018c2ecf20Sopenharmony_ci	0x34, 0x84, 0x41, 0xbb, 0x80, 0xd0, 0x9f, 0x46,
16028c2ecf20Sopenharmony_ci	0x48, 0x07, 0xa7, 0xfc, 0x2b, 0x3a, 0x75, 0x55,
16038c2ecf20Sopenharmony_ci	0x8c, 0xc7, 0x6a, 0xbd, 0x7e, 0x46, 0x08, 0x84,
16048c2ecf20Sopenharmony_ci	0x0f, 0xd5, 0x74, 0xc0, 0x82, 0x8e, 0xaa, 0x61,
16058c2ecf20Sopenharmony_ci	0x05, 0x01, 0xb2, 0x47, 0x6e, 0x20, 0x6a, 0x2d,
16068c2ecf20Sopenharmony_ci	0x58, 0x70, 0x48, 0x32, 0xa7, 0x37, 0xd2, 0xb8,
16078c2ecf20Sopenharmony_ci	0x82, 0x1a, 0x51, 0xb9, 0x61, 0xdd, 0xfd, 0x9d,
16088c2ecf20Sopenharmony_ci	0x6b, 0x0e, 0x18, 0x97, 0xf8, 0x45, 0x5f, 0x87,
16098c2ecf20Sopenharmony_ci	0x10, 0xcf, 0x34, 0x72, 0x45, 0x26, 0x49, 0x70,
16108c2ecf20Sopenharmony_ci	0xe7, 0xa3, 0x78, 0xe0, 0x52, 0x89, 0x84, 0x94,
16118c2ecf20Sopenharmony_ci	0x83, 0x82, 0xc2, 0x69, 0x8f, 0xe3, 0xe1, 0x3f,
16128c2ecf20Sopenharmony_ci	0x60, 0x74, 0x88, 0xc4, 0xf7, 0x75, 0x2c, 0xfb,
16138c2ecf20Sopenharmony_ci	0xbd, 0xb6, 0xc4, 0x7e, 0x10, 0x0a, 0x6c, 0x90,
16148c2ecf20Sopenharmony_ci	0x04, 0x9e, 0xc3, 0x3f, 0x59, 0x7c, 0xce, 0x31,
16158c2ecf20Sopenharmony_ci	0x18, 0x60, 0x57, 0x73, 0x46, 0x94, 0x7d, 0x06,
16168c2ecf20Sopenharmony_ci	0xa0, 0x6d, 0x44, 0xec, 0xa2, 0x0a, 0x9e, 0x05,
16178c2ecf20Sopenharmony_ci	0x15, 0xef, 0xca, 0x5c, 0xbf, 0x00, 0xeb, 0xf7,
16188c2ecf20Sopenharmony_ci	0x3d, 0x32, 0xd4, 0xa5, 0xef, 0x49, 0x89, 0x5e,
16198c2ecf20Sopenharmony_ci	0x46, 0xb0, 0xa6, 0x63, 0x5b, 0x8a, 0x73, 0xae,
16208c2ecf20Sopenharmony_ci	0x6f, 0xd5, 0x9d, 0xf8, 0x4f, 0x40, 0xb5, 0xb2,
16218c2ecf20Sopenharmony_ci	0x6e, 0xd3, 0xb6, 0x01, 0xa9, 0x26, 0xa2, 0x21,
16228c2ecf20Sopenharmony_ci	0xcf, 0x33, 0x7a, 0x3a, 0xa4, 0x23, 0x13, 0xb0,
16238c2ecf20Sopenharmony_ci	0x69, 0x6a, 0xee, 0xce, 0xd8, 0x9d, 0x01, 0x1d,
16248c2ecf20Sopenharmony_ci	0x50, 0xc1, 0x30, 0x6c, 0xb1, 0xcd, 0xa0, 0xf0,
16258c2ecf20Sopenharmony_ci	0xf0, 0xa2, 0x64, 0x6f, 0xbb, 0xbf, 0x5e, 0xe6,
16268c2ecf20Sopenharmony_ci	0xab, 0x87, 0xb4, 0x0f, 0x4f, 0x15, 0xaf, 0xb5,
16278c2ecf20Sopenharmony_ci	0x25, 0xa1, 0xb2, 0xd0, 0x80, 0x2c, 0xfb, 0xf9,
16288c2ecf20Sopenharmony_ci	0xfe, 0xd2, 0x33, 0xbb, 0x76, 0xfe, 0x7c, 0xa8,
16298c2ecf20Sopenharmony_ci	0x66, 0xf7, 0xe7, 0x85, 0x9f, 0x1f, 0x85, 0x57,
16308c2ecf20Sopenharmony_ci	0x88, 0xe1, 0xe9, 0x63, 0xe4, 0xd8, 0x1c, 0xa1,
16318c2ecf20Sopenharmony_ci	0xfb, 0xda, 0x44, 0x05, 0x2e, 0x1d, 0x3a, 0x1c,
16328c2ecf20Sopenharmony_ci	0xff, 0xc8, 0x3b, 0xc0, 0xfe, 0xda, 0x22, 0x0b,
16338c2ecf20Sopenharmony_ci	0x43, 0xd6, 0x88, 0x39, 0x4c, 0x4a, 0xa6, 0x69,
16348c2ecf20Sopenharmony_ci	0x18, 0x93, 0x42, 0x4e, 0xb5, 0xcc, 0x66, 0x0d,
16358c2ecf20Sopenharmony_ci	0x09, 0xf8, 0x1e, 0x7c, 0xd3, 0x3c, 0x99, 0x0d,
16368c2ecf20Sopenharmony_ci	0x50, 0x1d, 0x62, 0xe9, 0x57, 0x06, 0xbf, 0x19,
16378c2ecf20Sopenharmony_ci	0x88, 0xdd, 0xad, 0x7b, 0x4f, 0xf9, 0xc7, 0x82,
16388c2ecf20Sopenharmony_ci	0x6d, 0x8d, 0xc8, 0xc4, 0xc5, 0x78, 0x17, 0x20,
16398c2ecf20Sopenharmony_ci	0x15, 0xc5, 0x52, 0x41, 0xcf, 0x5b, 0xd6, 0x7f,
16408c2ecf20Sopenharmony_ci	0x94, 0x02, 0x41, 0xe0, 0x40, 0x22, 0x03, 0x5e,
16418c2ecf20Sopenharmony_ci	0xd1, 0x53, 0xd4, 0x86, 0xd3, 0x2c, 0x9f, 0x0f,
16428c2ecf20Sopenharmony_ci	0x96, 0xe3, 0x6b, 0x9a, 0x76, 0x32, 0x06, 0x47,
16438c2ecf20Sopenharmony_ci	0x4b, 0x11, 0xb3, 0xdd, 0x03, 0x65, 0xbd, 0x9b,
16448c2ecf20Sopenharmony_ci	0x01, 0xda, 0x9c, 0xb9, 0x7e, 0x3f, 0x6a, 0xc4,
16458c2ecf20Sopenharmony_ci	0x7b, 0xea, 0xd4, 0x3c, 0xb9, 0xfb, 0x5c, 0x6b,
16468c2ecf20Sopenharmony_ci	0x64, 0x33, 0x52, 0xba, 0x64, 0x78, 0x8f, 0xa4,
16478c2ecf20Sopenharmony_ci	0xaf, 0x7a, 0x61, 0x8d, 0xbc, 0xc5, 0x73, 0xe9,
16488c2ecf20Sopenharmony_ci	0x6b, 0x58, 0x97, 0x4b, 0xbf, 0x63, 0x22, 0xd3,
16498c2ecf20Sopenharmony_ci	0x37, 0x02, 0x54, 0xc5, 0xb9, 0x16, 0x4a, 0xf0,
16508c2ecf20Sopenharmony_ci	0x19, 0xd8, 0x94, 0x57, 0xb8, 0x8a, 0xb3, 0x16,
16518c2ecf20Sopenharmony_ci	0x3b, 0xd0, 0x84, 0x8e, 0x67, 0xa6, 0xa3, 0x7d,
16528c2ecf20Sopenharmony_ci	0x78, 0xec, 0x00
16538c2ecf20Sopenharmony_ci};
16548c2ecf20Sopenharmony_cistatic const u8 enc_output012[] __initconst = {
16558c2ecf20Sopenharmony_ci	0x52, 0x34, 0xb3, 0x65, 0x3b, 0xb7, 0xe5, 0xd3,
16568c2ecf20Sopenharmony_ci	0xab, 0x49, 0x17, 0x60, 0xd2, 0x52, 0x56, 0xdf,
16578c2ecf20Sopenharmony_ci	0xdf, 0x34, 0x56, 0x82, 0xe2, 0xbe, 0xe5, 0xe1,
16588c2ecf20Sopenharmony_ci	0x28, 0xd1, 0x4e, 0x5f, 0x4f, 0x01, 0x7d, 0x3f,
16598c2ecf20Sopenharmony_ci	0x99, 0x6b, 0x30, 0x6e, 0x1a, 0x7c, 0x4c, 0x8e,
16608c2ecf20Sopenharmony_ci	0x62, 0x81, 0xae, 0x86, 0x3f, 0x6b, 0xd0, 0xb5,
16618c2ecf20Sopenharmony_ci	0xa9, 0xcf, 0x50, 0xf1, 0x02, 0x12, 0xa0, 0x0b,
16628c2ecf20Sopenharmony_ci	0x24, 0xe9, 0xe6, 0x72, 0x89, 0x2c, 0x52, 0x1b,
16638c2ecf20Sopenharmony_ci	0x34, 0x38, 0xf8, 0x75, 0x5f, 0xa0, 0x74, 0xe2,
16648c2ecf20Sopenharmony_ci	0x99, 0xdd, 0xa6, 0x4b, 0x14, 0x50, 0x4e, 0xf1,
16658c2ecf20Sopenharmony_ci	0xbe, 0xd6, 0x9e, 0xdb, 0xb2, 0x24, 0x27, 0x74,
16668c2ecf20Sopenharmony_ci	0x12, 0x4a, 0x78, 0x78, 0x17, 0xa5, 0x58, 0x8e,
16678c2ecf20Sopenharmony_ci	0x2f, 0xf9, 0xf4, 0x8d, 0xee, 0x03, 0x88, 0xae,
16688c2ecf20Sopenharmony_ci	0xb8, 0x29, 0xa1, 0x2f, 0x4b, 0xee, 0x92, 0xbd,
16698c2ecf20Sopenharmony_ci	0x87, 0xb3, 0xce, 0x34, 0x21, 0x57, 0x46, 0x04,
16708c2ecf20Sopenharmony_ci	0x49, 0x0c, 0x80, 0xf2, 0x01, 0x13, 0xa1, 0x55,
16718c2ecf20Sopenharmony_ci	0xb3, 0xff, 0x44, 0x30, 0x3c, 0x1c, 0xd0, 0xef,
16728c2ecf20Sopenharmony_ci	0xbc, 0x18, 0x74, 0x26, 0xad, 0x41, 0x5b, 0x5b,
16738c2ecf20Sopenharmony_ci	0x3e, 0x9a, 0x7a, 0x46, 0x4f, 0x16, 0xd6, 0x74,
16748c2ecf20Sopenharmony_ci	0x5a, 0xb7, 0x3a, 0x28, 0x31, 0xd8, 0xae, 0x26,
16758c2ecf20Sopenharmony_ci	0xac, 0x50, 0x53, 0x86, 0xf2, 0x56, 0xd7, 0x3f,
16768c2ecf20Sopenharmony_ci	0x29, 0xbc, 0x45, 0x68, 0x8e, 0xcb, 0x98, 0x64,
16778c2ecf20Sopenharmony_ci	0xdd, 0xc9, 0xba, 0xb8, 0x4b, 0x7b, 0x82, 0xdd,
16788c2ecf20Sopenharmony_ci	0x14, 0xa7, 0xcb, 0x71, 0x72, 0x00, 0x5c, 0xad,
16798c2ecf20Sopenharmony_ci	0x7b, 0x6a, 0x89, 0xa4, 0x3d, 0xbf, 0xb5, 0x4b,
16808c2ecf20Sopenharmony_ci	0x3e, 0x7c, 0x5a, 0xcf, 0xb8, 0xa1, 0xc5, 0x6e,
16818c2ecf20Sopenharmony_ci	0xc8, 0xb6, 0x31, 0x57, 0x7b, 0xdf, 0xa5, 0x7e,
16828c2ecf20Sopenharmony_ci	0xb1, 0xd6, 0x42, 0x2a, 0x31, 0x36, 0xd1, 0xd0,
16838c2ecf20Sopenharmony_ci	0x3f, 0x7a, 0xe5, 0x94, 0xd6, 0x36, 0xa0, 0x6f,
16848c2ecf20Sopenharmony_ci	0xb7, 0x40, 0x7d, 0x37, 0xc6, 0x55, 0x7c, 0x50,
16858c2ecf20Sopenharmony_ci	0x40, 0x6d, 0x29, 0x89, 0xe3, 0x5a, 0xae, 0x97,
16868c2ecf20Sopenharmony_ci	0xe7, 0x44, 0x49, 0x6e, 0xbd, 0x81, 0x3d, 0x03,
16878c2ecf20Sopenharmony_ci	0x93, 0x06, 0x12, 0x06, 0xe2, 0x41, 0x12, 0x4a,
16888c2ecf20Sopenharmony_ci	0xf1, 0x6a, 0xa4, 0x58, 0xa2, 0xfb, 0xd2, 0x15,
16898c2ecf20Sopenharmony_ci	0xba, 0xc9, 0x79, 0xc9, 0xce, 0x5e, 0x13, 0xbb,
16908c2ecf20Sopenharmony_ci	0xf1, 0x09, 0x04, 0xcc, 0xfd, 0xe8, 0x51, 0x34,
16918c2ecf20Sopenharmony_ci	0x6a, 0xe8, 0x61, 0x88, 0xda, 0xed, 0x01, 0x47,
16928c2ecf20Sopenharmony_ci	0x84, 0xf5, 0x73, 0x25, 0xf9, 0x1c, 0x42, 0x86,
16938c2ecf20Sopenharmony_ci	0x07, 0xf3, 0x5b, 0x1a, 0x01, 0xb3, 0xeb, 0x24,
16948c2ecf20Sopenharmony_ci	0x32, 0x8d, 0xf6, 0xed, 0x7c, 0x4b, 0xeb, 0x3c,
16958c2ecf20Sopenharmony_ci	0x36, 0x42, 0x28, 0xdf, 0xdf, 0xb6, 0xbe, 0xd9,
16968c2ecf20Sopenharmony_ci	0x8c, 0x52, 0xd3, 0x2b, 0x08, 0x90, 0x8c, 0xe7,
16978c2ecf20Sopenharmony_ci	0x98, 0x31, 0xe2, 0x32, 0x8e, 0xfc, 0x11, 0x48,
16988c2ecf20Sopenharmony_ci	0x00, 0xa8, 0x6a, 0x42, 0x4a, 0x02, 0xc6, 0x4b,
16998c2ecf20Sopenharmony_ci	0x09, 0xf1, 0xe3, 0x49, 0xf3, 0x45, 0x1f, 0x0e,
17008c2ecf20Sopenharmony_ci	0xbc, 0x56, 0xe2, 0xe4, 0xdf, 0xfb, 0xeb, 0x61,
17018c2ecf20Sopenharmony_ci	0xfa, 0x24, 0xc1, 0x63, 0x75, 0xbb, 0x47, 0x75,
17028c2ecf20Sopenharmony_ci	0xaf, 0xe1, 0x53, 0x16, 0x96, 0x21, 0x85, 0x26,
17038c2ecf20Sopenharmony_ci	0x11, 0xb3, 0x76, 0xe3, 0x23, 0xa1, 0x6b, 0x74,
17048c2ecf20Sopenharmony_ci	0x37, 0xd0, 0xde, 0x06, 0x90, 0x71, 0x5d, 0x43,
17058c2ecf20Sopenharmony_ci	0x88, 0x9b, 0x00, 0x54, 0xa6, 0x75, 0x2f, 0xa1,
17068c2ecf20Sopenharmony_ci	0xc2, 0x0b, 0x73, 0x20, 0x1d, 0xb6, 0x21, 0x79,
17078c2ecf20Sopenharmony_ci	0x57, 0x3f, 0xfa, 0x09, 0xbe, 0x8a, 0x33, 0xc3,
17088c2ecf20Sopenharmony_ci	0x52, 0xf0, 0x1d, 0x82, 0x31, 0xd1, 0x55, 0xb5,
17098c2ecf20Sopenharmony_ci	0x6c, 0x99, 0x25, 0xcf, 0x5c, 0x32, 0xce, 0xe9,
17108c2ecf20Sopenharmony_ci	0x0d, 0xfa, 0x69, 0x2c, 0xd5, 0x0d, 0xc5, 0x6d,
17118c2ecf20Sopenharmony_ci	0x86, 0xd0, 0x0c, 0x3b, 0x06, 0x50, 0x79, 0xe8,
17128c2ecf20Sopenharmony_ci	0xc3, 0xae, 0x04, 0xe6, 0xcd, 0x51, 0xe4, 0x26,
17138c2ecf20Sopenharmony_ci	0x9b, 0x4f, 0x7e, 0xa6, 0x0f, 0xab, 0xd8, 0xe5,
17148c2ecf20Sopenharmony_ci	0xde, 0xa9, 0x00, 0x95, 0xbe, 0xa3, 0x9d, 0x5d,
17158c2ecf20Sopenharmony_ci	0xb2, 0x09, 0x70, 0x18, 0x1c, 0xf0, 0xac, 0x29,
17168c2ecf20Sopenharmony_ci	0x23, 0x02, 0x29, 0x28, 0xd2, 0x74, 0x35, 0x57,
17178c2ecf20Sopenharmony_ci	0x62, 0x0f, 0x24, 0xea, 0x5e, 0x33, 0xc2, 0x92,
17188c2ecf20Sopenharmony_ci	0xf3, 0x78, 0x4d, 0x30, 0x1e, 0xa1, 0x99, 0xa9,
17198c2ecf20Sopenharmony_ci	0x82, 0xb0, 0x42, 0x31, 0x8d, 0xad, 0x8a, 0xbc,
17208c2ecf20Sopenharmony_ci	0xfc, 0xd4, 0x57, 0x47, 0x3e, 0xb4, 0x50, 0xdd,
17218c2ecf20Sopenharmony_ci	0x6e, 0x2c, 0x80, 0x4d, 0x22, 0xf1, 0xfb, 0x57,
17228c2ecf20Sopenharmony_ci	0xc4, 0xdd, 0x17, 0xe1, 0x8a, 0x36, 0x4a, 0xb3,
17238c2ecf20Sopenharmony_ci	0x37, 0xca, 0xc9, 0x4e, 0xab, 0xd5, 0x69, 0xc4,
17248c2ecf20Sopenharmony_ci	0xf4, 0xbc, 0x0b, 0x3b, 0x44, 0x4b, 0x29, 0x9c,
17258c2ecf20Sopenharmony_ci	0xee, 0xd4, 0x35, 0x22, 0x21, 0xb0, 0x1f, 0x27,
17268c2ecf20Sopenharmony_ci	0x64, 0xa8, 0x51, 0x1b, 0xf0, 0x9f, 0x19, 0x5c,
17278c2ecf20Sopenharmony_ci	0xfb, 0x5a, 0x64, 0x74, 0x70, 0x45, 0x09, 0xf5,
17288c2ecf20Sopenharmony_ci	0x64, 0xfe, 0x1a, 0x2d, 0xc9, 0x14, 0x04, 0x14,
17298c2ecf20Sopenharmony_ci	0xcf, 0xd5, 0x7d, 0x60, 0xaf, 0x94, 0x39, 0x94,
17308c2ecf20Sopenharmony_ci	0xe2, 0x7d, 0x79, 0x82, 0xd0, 0x65, 0x3b, 0x6b,
17318c2ecf20Sopenharmony_ci	0x9c, 0x19, 0x84, 0xb4, 0x6d, 0xb3, 0x0c, 0x99,
17328c2ecf20Sopenharmony_ci	0xc0, 0x56, 0xa8, 0xbd, 0x73, 0xce, 0x05, 0x84,
17338c2ecf20Sopenharmony_ci	0x3e, 0x30, 0xaa, 0xc4, 0x9b, 0x1b, 0x04, 0x2a,
17348c2ecf20Sopenharmony_ci	0x9f, 0xd7, 0x43, 0x2b, 0x23, 0xdf, 0xbf, 0xaa,
17358c2ecf20Sopenharmony_ci	0xd5, 0xc2, 0x43, 0x2d, 0x70, 0xab, 0xdc, 0x75,
17368c2ecf20Sopenharmony_ci	0xad, 0xac, 0xf7, 0xc0, 0xbe, 0x67, 0xb2, 0x74,
17378c2ecf20Sopenharmony_ci	0xed, 0x67, 0x10, 0x4a, 0x92, 0x60, 0xc1, 0x40,
17388c2ecf20Sopenharmony_ci	0x50, 0x19, 0x8a, 0x8a, 0x8c, 0x09, 0x0e, 0x72,
17398c2ecf20Sopenharmony_ci	0xe1, 0x73, 0x5e, 0xe8, 0x41, 0x85, 0x63, 0x9f,
17408c2ecf20Sopenharmony_ci	0x3f, 0xd7, 0x7d, 0xc4, 0xfb, 0x22, 0x5d, 0x92,
17418c2ecf20Sopenharmony_ci	0x6c, 0xb3, 0x1e, 0xe2, 0x50, 0x2f, 0x82, 0xa8,
17428c2ecf20Sopenharmony_ci	0x28, 0xc0, 0xb5, 0xd7, 0x5f, 0x68, 0x0d, 0x2c,
17438c2ecf20Sopenharmony_ci	0x2d, 0xaf, 0x7e, 0xfa, 0x2e, 0x08, 0x0f, 0x1f,
17448c2ecf20Sopenharmony_ci	0x70, 0x9f, 0xe9, 0x19, 0x72, 0x55, 0xf8, 0xfb,
17458c2ecf20Sopenharmony_ci	0x51, 0xd2, 0x33, 0x5d, 0xa0, 0xd3, 0x2b, 0x0a,
17468c2ecf20Sopenharmony_ci	0x6c, 0xbc, 0x4e, 0xcf, 0x36, 0x4d, 0xdc, 0x3b,
17478c2ecf20Sopenharmony_ci	0xe9, 0x3e, 0x81, 0x7c, 0x61, 0xdb, 0x20, 0x2d,
17488c2ecf20Sopenharmony_ci	0x3a, 0xc3, 0xb3, 0x0c, 0x1e, 0x00, 0xb9, 0x7c,
17498c2ecf20Sopenharmony_ci	0xf5, 0xca, 0x10, 0x5f, 0x3a, 0x71, 0xb3, 0xe4,
17508c2ecf20Sopenharmony_ci	0x20, 0xdb, 0x0c, 0x2a, 0x98, 0x63, 0x45, 0x00,
17518c2ecf20Sopenharmony_ci	0x58, 0xf6, 0x68, 0xe4, 0x0b, 0xda, 0x13, 0x3b,
17528c2ecf20Sopenharmony_ci	0x60, 0x5c, 0x76, 0xdb, 0xb9, 0x97, 0x71, 0xe4,
17538c2ecf20Sopenharmony_ci	0xd9, 0xb7, 0xdb, 0xbd, 0x68, 0xc7, 0x84, 0x84,
17548c2ecf20Sopenharmony_ci	0xaa, 0x7c, 0x68, 0x62, 0x5e, 0x16, 0xfc, 0xba,
17558c2ecf20Sopenharmony_ci	0x72, 0xaa, 0x9a, 0xa9, 0xeb, 0x7c, 0x75, 0x47,
17568c2ecf20Sopenharmony_ci	0x97, 0x7e, 0xad, 0xe2, 0xd9, 0x91, 0xe8, 0xe4,
17578c2ecf20Sopenharmony_ci	0xa5, 0x31, 0xd7, 0x01, 0x8e, 0xa2, 0x11, 0x88,
17588c2ecf20Sopenharmony_ci	0x95, 0xb9, 0xf2, 0x9b, 0xd3, 0x7f, 0x1b, 0x81,
17598c2ecf20Sopenharmony_ci	0x22, 0xf7, 0x98, 0x60, 0x0a, 0x64, 0xa6, 0xc1,
17608c2ecf20Sopenharmony_ci	0xf6, 0x49, 0xc7, 0xe3, 0x07, 0x4d, 0x94, 0x7a,
17618c2ecf20Sopenharmony_ci	0xcf, 0x6e, 0x68, 0x0c, 0x1b, 0x3f, 0x6e, 0x2e,
17628c2ecf20Sopenharmony_ci	0xee, 0x92, 0xfa, 0x52, 0xb3, 0x59, 0xf8, 0xf1,
17638c2ecf20Sopenharmony_ci	0x8f, 0x6a, 0x66, 0xa3, 0x82, 0x76, 0x4a, 0x07,
17648c2ecf20Sopenharmony_ci	0x1a, 0xc7, 0xdd, 0xf5, 0xda, 0x9c, 0x3c, 0x24,
17658c2ecf20Sopenharmony_ci	0xbf, 0xfd, 0x42, 0xa1, 0x10, 0x64, 0x6a, 0x0f,
17668c2ecf20Sopenharmony_ci	0x89, 0xee, 0x36, 0xa5, 0xce, 0x99, 0x48, 0x6a,
17678c2ecf20Sopenharmony_ci	0xf0, 0x9f, 0x9e, 0x69, 0xa4, 0x40, 0x20, 0xe9,
17688c2ecf20Sopenharmony_ci	0x16, 0x15, 0xf7, 0xdb, 0x75, 0x02, 0xcb, 0xe9,
17698c2ecf20Sopenharmony_ci	0x73, 0x8b, 0x3b, 0x49, 0x2f, 0xf0, 0xaf, 0x51,
17708c2ecf20Sopenharmony_ci	0x06, 0x5c, 0xdf, 0x27, 0x27, 0x49, 0x6a, 0xd1,
17718c2ecf20Sopenharmony_ci	0xcc, 0xc7, 0xb5, 0x63, 0xb5, 0xfc, 0xb8, 0x5c,
17728c2ecf20Sopenharmony_ci	0x87, 0x7f, 0x84, 0xb4, 0xcc, 0x14, 0xa9, 0x53,
17738c2ecf20Sopenharmony_ci	0xda, 0xa4, 0x56, 0xf8, 0xb6, 0x1b, 0xcc, 0x40,
17748c2ecf20Sopenharmony_ci	0x27, 0x52, 0x06, 0x5a, 0x13, 0x81, 0xd7, 0x3a,
17758c2ecf20Sopenharmony_ci	0xd4, 0x3b, 0xfb, 0x49, 0x65, 0x31, 0x33, 0xb2,
17768c2ecf20Sopenharmony_ci	0xfa, 0xcd, 0xad, 0x58, 0x4e, 0x2b, 0xae, 0xd2,
17778c2ecf20Sopenharmony_ci	0x20, 0xfb, 0x1a, 0x48, 0xb4, 0x3f, 0x9a, 0xd8,
17788c2ecf20Sopenharmony_ci	0x7a, 0x35, 0x4a, 0xc8, 0xee, 0x88, 0x5e, 0x07,
17798c2ecf20Sopenharmony_ci	0x66, 0x54, 0xb9, 0xec, 0x9f, 0xa3, 0xe3, 0xb9,
17808c2ecf20Sopenharmony_ci	0x37, 0xaa, 0x49, 0x76, 0x31, 0xda, 0x74, 0x2d,
17818c2ecf20Sopenharmony_ci	0x3c, 0xa4, 0x65, 0x10, 0x32, 0x38, 0xf0, 0xde,
17828c2ecf20Sopenharmony_ci	0xd3, 0x99, 0x17, 0xaa, 0x71, 0xaa, 0x8f, 0x0f,
17838c2ecf20Sopenharmony_ci	0x8c, 0xaf, 0xa2, 0xf8, 0x5d, 0x64, 0xba, 0x1d,
17848c2ecf20Sopenharmony_ci	0xa3, 0xef, 0x96, 0x73, 0xe8, 0xa1, 0x02, 0x8d,
17858c2ecf20Sopenharmony_ci	0x0c, 0x6d, 0xb8, 0x06, 0x90, 0xb8, 0x08, 0x56,
17868c2ecf20Sopenharmony_ci	0x2c, 0xa7, 0x06, 0xc9, 0xc2, 0x38, 0xdb, 0x7c,
17878c2ecf20Sopenharmony_ci	0x63, 0xb1, 0x57, 0x8e, 0xea, 0x7c, 0x79, 0xf3,
17888c2ecf20Sopenharmony_ci	0x49, 0x1d, 0xfe, 0x9f, 0xf3, 0x6e, 0xb1, 0x1d,
17898c2ecf20Sopenharmony_ci	0xba, 0x19, 0x80, 0x1a, 0x0a, 0xd3, 0xb0, 0x26,
17908c2ecf20Sopenharmony_ci	0x21, 0x40, 0xb1, 0x7c, 0xf9, 0x4d, 0x8d, 0x10,
17918c2ecf20Sopenharmony_ci	0xc1, 0x7e, 0xf4, 0xf6, 0x3c, 0xa8, 0xfd, 0x7c,
17928c2ecf20Sopenharmony_ci	0xa3, 0x92, 0xb2, 0x0f, 0xaa, 0xcc, 0xa6, 0x11,
17938c2ecf20Sopenharmony_ci	0xfe, 0x04, 0xe3, 0xd1, 0x7a, 0x32, 0x89, 0xdf,
17948c2ecf20Sopenharmony_ci	0x0d, 0xc4, 0x8f, 0x79, 0x6b, 0xca, 0x16, 0x7c,
17958c2ecf20Sopenharmony_ci	0x6e, 0xf9, 0xad, 0x0f, 0xf6, 0xfe, 0x27, 0xdb,
17968c2ecf20Sopenharmony_ci	0xc4, 0x13, 0x70, 0xf1, 0x62, 0x1a, 0x4f, 0x79,
17978c2ecf20Sopenharmony_ci	0x40, 0xc9, 0x9b, 0x8b, 0x21, 0xea, 0x84, 0xfa,
17988c2ecf20Sopenharmony_ci	0xf5, 0xf1, 0x89, 0xce, 0xb7, 0x55, 0x0a, 0x80,
17998c2ecf20Sopenharmony_ci	0x39, 0x2f, 0x55, 0x36, 0x16, 0x9c, 0x7b, 0x08,
18008c2ecf20Sopenharmony_ci	0xbd, 0x87, 0x0d, 0xa5, 0x32, 0xf1, 0x52, 0x7c,
18018c2ecf20Sopenharmony_ci	0xe8, 0x55, 0x60, 0x5b, 0xd7, 0x69, 0xe4, 0xfc,
18028c2ecf20Sopenharmony_ci	0xfa, 0x12, 0x85, 0x96, 0xea, 0x50, 0x28, 0xab,
18038c2ecf20Sopenharmony_ci	0x8a, 0xf7, 0xbb, 0x0e, 0x53, 0x74, 0xca, 0xa6,
18048c2ecf20Sopenharmony_ci	0x27, 0x09, 0xc2, 0xb5, 0xde, 0x18, 0x14, 0xd9,
18058c2ecf20Sopenharmony_ci	0xea, 0xe5, 0x29, 0x1c, 0x40, 0x56, 0xcf, 0xd7,
18068c2ecf20Sopenharmony_ci	0xae, 0x05, 0x3f, 0x65, 0xaf, 0x05, 0x73, 0xe2,
18078c2ecf20Sopenharmony_ci	0x35, 0x96, 0x27, 0x07, 0x14, 0xc0, 0xad, 0x33,
18088c2ecf20Sopenharmony_ci	0xf1, 0xdc, 0x44, 0x7a, 0x89, 0x17, 0x77, 0xd2,
18098c2ecf20Sopenharmony_ci	0x9c, 0x58, 0x60, 0xf0, 0x3f, 0x7b, 0x2d, 0x2e,
18108c2ecf20Sopenharmony_ci	0x57, 0x95, 0x54, 0x87, 0xed, 0xf2, 0xc7, 0x4c,
18118c2ecf20Sopenharmony_ci	0xf0, 0xae, 0x56, 0x29, 0x19, 0x7d, 0x66, 0x4b,
18128c2ecf20Sopenharmony_ci	0x9b, 0x83, 0x84, 0x42, 0x3b, 0x01, 0x25, 0x66,
18138c2ecf20Sopenharmony_ci	0x8e, 0x02, 0xde, 0xb9, 0x83, 0x54, 0x19, 0xf6,
18148c2ecf20Sopenharmony_ci	0x9f, 0x79, 0x0d, 0x67, 0xc5, 0x1d, 0x7a, 0x44,
18158c2ecf20Sopenharmony_ci	0x02, 0x98, 0xa7, 0x16, 0x1c, 0x29, 0x0d, 0x74,
18168c2ecf20Sopenharmony_ci	0xff, 0x85, 0x40, 0x06, 0xef, 0x2c, 0xa9, 0xc6,
18178c2ecf20Sopenharmony_ci	0xf5, 0x53, 0x07, 0x06, 0xae, 0xe4, 0xfa, 0x5f,
18188c2ecf20Sopenharmony_ci	0xd8, 0x39, 0x4d, 0xf1, 0x9b, 0x6b, 0xd9, 0x24,
18198c2ecf20Sopenharmony_ci	0x84, 0xfe, 0x03, 0x4c, 0xb2, 0x3f, 0xdf, 0xa1,
18208c2ecf20Sopenharmony_ci	0x05, 0x9e, 0x50, 0x14, 0x5a, 0xd9, 0x1a, 0xa2,
18218c2ecf20Sopenharmony_ci	0xa7, 0xfa, 0xfa, 0x17, 0xf7, 0x78, 0xd6, 0xb5,
18228c2ecf20Sopenharmony_ci	0x92, 0x61, 0x91, 0xac, 0x36, 0xfa, 0x56, 0x0d,
18238c2ecf20Sopenharmony_ci	0x38, 0x32, 0x18, 0x85, 0x08, 0x58, 0x37, 0xf0,
18248c2ecf20Sopenharmony_ci	0x4b, 0xdb, 0x59, 0xe7, 0xa4, 0x34, 0xc0, 0x1b,
18258c2ecf20Sopenharmony_ci	0x01, 0xaf, 0x2d, 0xde, 0xa1, 0xaa, 0x5d, 0xd3,
18268c2ecf20Sopenharmony_ci	0xec, 0xe1, 0xd4, 0xf7, 0xe6, 0x54, 0x68, 0xf0,
18278c2ecf20Sopenharmony_ci	0x51, 0x97, 0xa7, 0x89, 0xea, 0x24, 0xad, 0xd3,
18288c2ecf20Sopenharmony_ci	0x6e, 0x47, 0x93, 0x8b, 0x4b, 0xb4, 0xf7, 0x1c,
18298c2ecf20Sopenharmony_ci	0x42, 0x06, 0x67, 0xe8, 0x99, 0xf6, 0xf5, 0x7b,
18308c2ecf20Sopenharmony_ci	0x85, 0xb5, 0x65, 0xb5, 0xb5, 0xd2, 0x37, 0xf5,
18318c2ecf20Sopenharmony_ci	0xf3, 0x02, 0xa6, 0x4d, 0x11, 0xa7, 0xdc, 0x51,
18328c2ecf20Sopenharmony_ci	0x09, 0x7f, 0xa0, 0xd8, 0x88, 0x1c, 0x13, 0x71,
18338c2ecf20Sopenharmony_ci	0xae, 0x9c, 0xb7, 0x7b, 0x34, 0xd6, 0x4e, 0x68,
18348c2ecf20Sopenharmony_ci	0x26, 0x83, 0x51, 0xaf, 0x1d, 0xee, 0x8b, 0xbb,
18358c2ecf20Sopenharmony_ci	0x69, 0x43, 0x2b, 0x9e, 0x8a, 0xbc, 0x02, 0x0e,
18368c2ecf20Sopenharmony_ci	0xa0, 0x1b, 0xe0, 0xa8, 0x5f, 0x6f, 0xaf, 0x1b,
18378c2ecf20Sopenharmony_ci	0x8f, 0xe7, 0x64, 0x71, 0x74, 0x11, 0x7e, 0xa8,
18388c2ecf20Sopenharmony_ci	0xd8, 0xf9, 0x97, 0x06, 0xc3, 0xb6, 0xfb, 0xfb,
18398c2ecf20Sopenharmony_ci	0xb7, 0x3d, 0x35, 0x9d, 0x3b, 0x52, 0xed, 0x54,
18408c2ecf20Sopenharmony_ci	0xca, 0xf4, 0x81, 0x01, 0x2d, 0x1b, 0xc3, 0xa7,
18418c2ecf20Sopenharmony_ci	0x00, 0x3d, 0x1a, 0x39, 0x54, 0xe1, 0xf6, 0xff,
18428c2ecf20Sopenharmony_ci	0xed, 0x6f, 0x0b, 0x5a, 0x68, 0xda, 0x58, 0xdd,
18438c2ecf20Sopenharmony_ci	0xa9, 0xcf, 0x5c, 0x4a, 0xe5, 0x09, 0x4e, 0xde,
18448c2ecf20Sopenharmony_ci	0x9d, 0xbc, 0x3e, 0xee, 0x5a, 0x00, 0x3b, 0x2c,
18458c2ecf20Sopenharmony_ci	0x87, 0x10, 0x65, 0x60, 0xdd, 0xd7, 0x56, 0xd1,
18468c2ecf20Sopenharmony_ci	0x4c, 0x64, 0x45, 0xe4, 0x21, 0xec, 0x78, 0xf8,
18478c2ecf20Sopenharmony_ci	0x25, 0x7a, 0x3e, 0x16, 0x5d, 0x09, 0x53, 0x14,
18488c2ecf20Sopenharmony_ci	0xbe, 0x4f, 0xae, 0x87, 0xd8, 0xd1, 0xaa, 0x3c,
18498c2ecf20Sopenharmony_ci	0xf6, 0x3e, 0xa4, 0x70, 0x8c, 0x5e, 0x70, 0xa4,
18508c2ecf20Sopenharmony_ci	0xb3, 0x6b, 0x66, 0x73, 0xd3, 0xbf, 0x31, 0x06,
18518c2ecf20Sopenharmony_ci	0x19, 0x62, 0x93, 0x15, 0xf2, 0x86, 0xe4, 0x52,
18528c2ecf20Sopenharmony_ci	0x7e, 0x53, 0x4c, 0x12, 0x38, 0xcc, 0x34, 0x7d,
18538c2ecf20Sopenharmony_ci	0x57, 0xf6, 0x42, 0x93, 0x8a, 0xc4, 0xee, 0x5c,
18548c2ecf20Sopenharmony_ci	0x8a, 0xe1, 0x52, 0x8f, 0x56, 0x64, 0xf6, 0xa6,
18558c2ecf20Sopenharmony_ci	0xd1, 0x91, 0x57, 0x70, 0xcd, 0x11, 0x76, 0xf5,
18568c2ecf20Sopenharmony_ci	0x59, 0x60, 0x60, 0x3c, 0xc1, 0xc3, 0x0b, 0x7f,
18578c2ecf20Sopenharmony_ci	0x58, 0x1a, 0x50, 0x91, 0xf1, 0x68, 0x8f, 0x6e,
18588c2ecf20Sopenharmony_ci	0x74, 0x74, 0xa8, 0x51, 0x0b, 0xf7, 0x7a, 0x98,
18598c2ecf20Sopenharmony_ci	0x37, 0xf2, 0x0a, 0x0e, 0xa4, 0x97, 0x04, 0xb8,
18608c2ecf20Sopenharmony_ci	0x9b, 0xfd, 0xa0, 0xea, 0xf7, 0x0d, 0xe1, 0xdb,
18618c2ecf20Sopenharmony_ci	0x03, 0xf0, 0x31, 0x29, 0xf8, 0xdd, 0x6b, 0x8b,
18628c2ecf20Sopenharmony_ci	0x5d, 0xd8, 0x59, 0xa9, 0x29, 0xcf, 0x9a, 0x79,
18638c2ecf20Sopenharmony_ci	0x89, 0x19, 0x63, 0x46, 0x09, 0x79, 0x6a, 0x11,
18648c2ecf20Sopenharmony_ci	0xda, 0x63, 0x68, 0x48, 0x77, 0x23, 0xfb, 0x7d,
18658c2ecf20Sopenharmony_ci	0x3a, 0x43, 0xcb, 0x02, 0x3b, 0x7a, 0x6d, 0x10,
18668c2ecf20Sopenharmony_ci	0x2a, 0x9e, 0xac, 0xf1, 0xd4, 0x19, 0xf8, 0x23,
18678c2ecf20Sopenharmony_ci	0x64, 0x1d, 0x2c, 0x5f, 0xf2, 0xb0, 0x5c, 0x23,
18688c2ecf20Sopenharmony_ci	0x27, 0xf7, 0x27, 0x30, 0x16, 0x37, 0xb1, 0x90,
18698c2ecf20Sopenharmony_ci	0xab, 0x38, 0xfb, 0x55, 0xcd, 0x78, 0x58, 0xd4,
18708c2ecf20Sopenharmony_ci	0x7d, 0x43, 0xf6, 0x45, 0x5e, 0x55, 0x8d, 0xb1,
18718c2ecf20Sopenharmony_ci	0x02, 0x65, 0x58, 0xb4, 0x13, 0x4b, 0x36, 0xf7,
18728c2ecf20Sopenharmony_ci	0xcc, 0xfe, 0x3d, 0x0b, 0x82, 0xe2, 0x12, 0x11,
18738c2ecf20Sopenharmony_ci	0xbb, 0xe6, 0xb8, 0x3a, 0x48, 0x71, 0xc7, 0x50,
18748c2ecf20Sopenharmony_ci	0x06, 0x16, 0x3a, 0xe6, 0x7c, 0x05, 0xc7, 0xc8,
18758c2ecf20Sopenharmony_ci	0x4d, 0x2f, 0x08, 0x6a, 0x17, 0x9a, 0x95, 0x97,
18768c2ecf20Sopenharmony_ci	0x50, 0x68, 0xdc, 0x28, 0x18, 0xc4, 0x61, 0x38,
18778c2ecf20Sopenharmony_ci	0xb9, 0xe0, 0x3e, 0x78, 0xdb, 0x29, 0xe0, 0x9f,
18788c2ecf20Sopenharmony_ci	0x52, 0xdd, 0xf8, 0x4f, 0x91, 0xc1, 0xd0, 0x33,
18798c2ecf20Sopenharmony_ci	0xa1, 0x7a, 0x8e, 0x30, 0x13, 0x82, 0x07, 0x9f,
18808c2ecf20Sopenharmony_ci	0xd3, 0x31, 0x0f, 0x23, 0xbe, 0x32, 0x5a, 0x75,
18818c2ecf20Sopenharmony_ci	0xcf, 0x96, 0xb2, 0xec, 0xb5, 0x32, 0xac, 0x21,
18828c2ecf20Sopenharmony_ci	0xd1, 0x82, 0x33, 0xd3, 0x15, 0x74, 0xbd, 0x90,
18838c2ecf20Sopenharmony_ci	0xf1, 0x2c, 0xe6, 0x5f, 0x8d, 0xe3, 0x02, 0xe8,
18848c2ecf20Sopenharmony_ci	0xe9, 0xc4, 0xca, 0x96, 0xeb, 0x0e, 0xbc, 0x91,
18858c2ecf20Sopenharmony_ci	0xf4, 0xb9, 0xea, 0xd9, 0x1b, 0x75, 0xbd, 0xe1,
18868c2ecf20Sopenharmony_ci	0xac, 0x2a, 0x05, 0x37, 0x52, 0x9b, 0x1b, 0x3f,
18878c2ecf20Sopenharmony_ci	0x5a, 0xdc, 0x21, 0xc3, 0x98, 0xbb, 0xaf, 0xa3,
18888c2ecf20Sopenharmony_ci	0xf2, 0x00, 0xbf, 0x0d, 0x30, 0x89, 0x05, 0xcc,
18898c2ecf20Sopenharmony_ci	0xa5, 0x76, 0xf5, 0x06, 0xf0, 0xc6, 0x54, 0x8a,
18908c2ecf20Sopenharmony_ci	0x5d, 0xd4, 0x1e, 0xc1, 0xf2, 0xce, 0xb0, 0x62,
18918c2ecf20Sopenharmony_ci	0xc8, 0xfc, 0x59, 0x42, 0x9a, 0x90, 0x60, 0x55,
18928c2ecf20Sopenharmony_ci	0xfe, 0x88, 0xa5, 0x8b, 0xb8, 0x33, 0x0c, 0x23,
18938c2ecf20Sopenharmony_ci	0x24, 0x0d, 0x15, 0x70, 0x37, 0x1e, 0x3d, 0xf6,
18948c2ecf20Sopenharmony_ci	0xd2, 0xea, 0x92, 0x10, 0xb2, 0xc4, 0x51, 0xac,
18958c2ecf20Sopenharmony_ci	0xf2, 0xac, 0xf3, 0x6b, 0x6c, 0xaa, 0xcf, 0x12,
18968c2ecf20Sopenharmony_ci	0xc5, 0x6c, 0x90, 0x50, 0xb5, 0x0c, 0xfc, 0x1a,
18978c2ecf20Sopenharmony_ci	0x15, 0x52, 0xe9, 0x26, 0xc6, 0x52, 0xa4, 0xe7,
18988c2ecf20Sopenharmony_ci	0x81, 0x69, 0xe1, 0xe7, 0x9e, 0x30, 0x01, 0xec,
18998c2ecf20Sopenharmony_ci	0x84, 0x89, 0xb2, 0x0d, 0x66, 0xdd, 0xce, 0x28,
19008c2ecf20Sopenharmony_ci	0x5c, 0xec, 0x98, 0x46, 0x68, 0x21, 0x9f, 0x88,
19018c2ecf20Sopenharmony_ci	0x3f, 0x1f, 0x42, 0x77, 0xce, 0xd0, 0x61, 0xd4,
19028c2ecf20Sopenharmony_ci	0x20, 0xa7, 0xff, 0x53, 0xad, 0x37, 0xd0, 0x17,
19038c2ecf20Sopenharmony_ci	0x35, 0xc9, 0xfc, 0xba, 0x0a, 0x78, 0x3f, 0xf2,
19048c2ecf20Sopenharmony_ci	0xcc, 0x86, 0x89, 0xe8, 0x4b, 0x3c, 0x48, 0x33,
19058c2ecf20Sopenharmony_ci	0x09, 0x7f, 0xc6, 0xc0, 0xdd, 0xb8, 0xfd, 0x7a,
19068c2ecf20Sopenharmony_ci	0x66, 0x66, 0x65, 0xeb, 0x47, 0xa7, 0x04, 0x28,
19078c2ecf20Sopenharmony_ci	0xa3, 0x19, 0x8e, 0xa9, 0xb1, 0x13, 0x67, 0x62,
19088c2ecf20Sopenharmony_ci	0x70, 0xcf, 0xd6
19098c2ecf20Sopenharmony_ci};
19108c2ecf20Sopenharmony_cistatic const u8 enc_assoc012[] __initconst = {
19118c2ecf20Sopenharmony_ci	0xb1, 0x69, 0x83, 0x87, 0x30, 0xaa, 0x5d, 0xb8,
19128c2ecf20Sopenharmony_ci	0x77, 0xe8, 0x21, 0xff, 0x06, 0x59, 0x35, 0xce,
19138c2ecf20Sopenharmony_ci	0x75, 0xfe, 0x38, 0xef, 0xb8, 0x91, 0x43, 0x8c,
19148c2ecf20Sopenharmony_ci	0xcf, 0x70, 0xdd, 0x0a, 0x68, 0xbf, 0xd4, 0xbc,
19158c2ecf20Sopenharmony_ci	0x16, 0x76, 0x99, 0x36, 0x1e, 0x58, 0x79, 0x5e,
19168c2ecf20Sopenharmony_ci	0xd4, 0x29, 0xf7, 0x33, 0x93, 0x48, 0xdb, 0x5f,
19178c2ecf20Sopenharmony_ci	0x01, 0xae, 0x9c, 0xb6, 0xe4, 0x88, 0x6d, 0x2b,
19188c2ecf20Sopenharmony_ci	0x76, 0x75, 0xe0, 0xf3, 0x74, 0xe2, 0xc9
19198c2ecf20Sopenharmony_ci};
19208c2ecf20Sopenharmony_cistatic const u8 enc_nonce012[] __initconst = {
19218c2ecf20Sopenharmony_ci	0x05, 0xa3, 0x93, 0xed, 0x30, 0xc5, 0xa2, 0x06
19228c2ecf20Sopenharmony_ci};
19238c2ecf20Sopenharmony_cistatic const u8 enc_key012[] __initconst = {
19248c2ecf20Sopenharmony_ci	0xb3, 0x35, 0x50, 0x03, 0x54, 0x2e, 0x40, 0x5e,
19258c2ecf20Sopenharmony_ci	0x8f, 0x59, 0x8e, 0xc5, 0x90, 0xd5, 0x27, 0x2d,
19268c2ecf20Sopenharmony_ci	0xba, 0x29, 0x2e, 0xcb, 0x1b, 0x70, 0x44, 0x1e,
19278c2ecf20Sopenharmony_ci	0x65, 0x91, 0x6e, 0x2a, 0x79, 0x22, 0xda, 0x64
19288c2ecf20Sopenharmony_ci};
19298c2ecf20Sopenharmony_ci
19308c2ecf20Sopenharmony_ci/* wycheproof - rfc7539 */
19318c2ecf20Sopenharmony_cistatic const u8 enc_input013[] __initconst = {
19328c2ecf20Sopenharmony_ci	0x4c, 0x61, 0x64, 0x69, 0x65, 0x73, 0x20, 0x61,
19338c2ecf20Sopenharmony_ci	0x6e, 0x64, 0x20, 0x47, 0x65, 0x6e, 0x74, 0x6c,
19348c2ecf20Sopenharmony_ci	0x65, 0x6d, 0x65, 0x6e, 0x20, 0x6f, 0x66, 0x20,
19358c2ecf20Sopenharmony_ci	0x74, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73,
19368c2ecf20Sopenharmony_ci	0x73, 0x20, 0x6f, 0x66, 0x20, 0x27, 0x39, 0x39,
19378c2ecf20Sopenharmony_ci	0x3a, 0x20, 0x49, 0x66, 0x20, 0x49, 0x20, 0x63,
19388c2ecf20Sopenharmony_ci	0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6f, 0x66, 0x66,
19398c2ecf20Sopenharmony_ci	0x65, 0x72, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6f,
19408c2ecf20Sopenharmony_ci	0x6e, 0x6c, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20,
19418c2ecf20Sopenharmony_ci	0x74, 0x69, 0x70, 0x20, 0x66, 0x6f, 0x72, 0x20,
19428c2ecf20Sopenharmony_ci	0x74, 0x68, 0x65, 0x20, 0x66, 0x75, 0x74, 0x75,
19438c2ecf20Sopenharmony_ci	0x72, 0x65, 0x2c, 0x20, 0x73, 0x75, 0x6e, 0x73,
19448c2ecf20Sopenharmony_ci	0x63, 0x72, 0x65, 0x65, 0x6e, 0x20, 0x77, 0x6f,
19458c2ecf20Sopenharmony_ci	0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x69,
19468c2ecf20Sopenharmony_ci	0x74, 0x2e
19478c2ecf20Sopenharmony_ci};
19488c2ecf20Sopenharmony_cistatic const u8 enc_output013[] __initconst = {
19498c2ecf20Sopenharmony_ci	0xd3, 0x1a, 0x8d, 0x34, 0x64, 0x8e, 0x60, 0xdb,
19508c2ecf20Sopenharmony_ci	0x7b, 0x86, 0xaf, 0xbc, 0x53, 0xef, 0x7e, 0xc2,
19518c2ecf20Sopenharmony_ci	0xa4, 0xad, 0xed, 0x51, 0x29, 0x6e, 0x08, 0xfe,
19528c2ecf20Sopenharmony_ci	0xa9, 0xe2, 0xb5, 0xa7, 0x36, 0xee, 0x62, 0xd6,
19538c2ecf20Sopenharmony_ci	0x3d, 0xbe, 0xa4, 0x5e, 0x8c, 0xa9, 0x67, 0x12,
19548c2ecf20Sopenharmony_ci	0x82, 0xfa, 0xfb, 0x69, 0xda, 0x92, 0x72, 0x8b,
19558c2ecf20Sopenharmony_ci	0x1a, 0x71, 0xde, 0x0a, 0x9e, 0x06, 0x0b, 0x29,
19568c2ecf20Sopenharmony_ci	0x05, 0xd6, 0xa5, 0xb6, 0x7e, 0xcd, 0x3b, 0x36,
19578c2ecf20Sopenharmony_ci	0x92, 0xdd, 0xbd, 0x7f, 0x2d, 0x77, 0x8b, 0x8c,
19588c2ecf20Sopenharmony_ci	0x98, 0x03, 0xae, 0xe3, 0x28, 0x09, 0x1b, 0x58,
19598c2ecf20Sopenharmony_ci	0xfa, 0xb3, 0x24, 0xe4, 0xfa, 0xd6, 0x75, 0x94,
19608c2ecf20Sopenharmony_ci	0x55, 0x85, 0x80, 0x8b, 0x48, 0x31, 0xd7, 0xbc,
19618c2ecf20Sopenharmony_ci	0x3f, 0xf4, 0xde, 0xf0, 0x8e, 0x4b, 0x7a, 0x9d,
19628c2ecf20Sopenharmony_ci	0xe5, 0x76, 0xd2, 0x65, 0x86, 0xce, 0xc6, 0x4b,
19638c2ecf20Sopenharmony_ci	0x61, 0x16, 0x1a, 0xe1, 0x0b, 0x59, 0x4f, 0x09,
19648c2ecf20Sopenharmony_ci	0xe2, 0x6a, 0x7e, 0x90, 0x2e, 0xcb, 0xd0, 0x60,
19658c2ecf20Sopenharmony_ci	0x06, 0x91
19668c2ecf20Sopenharmony_ci};
19678c2ecf20Sopenharmony_cistatic const u8 enc_assoc013[] __initconst = {
19688c2ecf20Sopenharmony_ci	0x50, 0x51, 0x52, 0x53, 0xc0, 0xc1, 0xc2, 0xc3,
19698c2ecf20Sopenharmony_ci	0xc4, 0xc5, 0xc6, 0xc7
19708c2ecf20Sopenharmony_ci};
19718c2ecf20Sopenharmony_cistatic const u8 enc_nonce013[] __initconst = {
19728c2ecf20Sopenharmony_ci	0x07, 0x00, 0x00, 0x00, 0x40, 0x41, 0x42, 0x43,
19738c2ecf20Sopenharmony_ci	0x44, 0x45, 0x46, 0x47
19748c2ecf20Sopenharmony_ci};
19758c2ecf20Sopenharmony_cistatic const u8 enc_key013[] __initconst = {
19768c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
19778c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
19788c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
19798c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
19808c2ecf20Sopenharmony_ci};
19818c2ecf20Sopenharmony_ci
19828c2ecf20Sopenharmony_ci/* wycheproof - misc */
19838c2ecf20Sopenharmony_cistatic const u8 enc_input014[] __initconst = { };
19848c2ecf20Sopenharmony_cistatic const u8 enc_output014[] __initconst = {
19858c2ecf20Sopenharmony_ci	0x76, 0xac, 0xb3, 0x42, 0xcf, 0x31, 0x66, 0xa5,
19868c2ecf20Sopenharmony_ci	0xb6, 0x3c, 0x0c, 0x0e, 0xa1, 0x38, 0x3c, 0x8d
19878c2ecf20Sopenharmony_ci};
19888c2ecf20Sopenharmony_cistatic const u8 enc_assoc014[] __initconst = { };
19898c2ecf20Sopenharmony_cistatic const u8 enc_nonce014[] __initconst = {
19908c2ecf20Sopenharmony_ci	0x4d, 0xa5, 0xbf, 0x8d, 0xfd, 0x58, 0x52, 0xc1,
19918c2ecf20Sopenharmony_ci	0xea, 0x12, 0x37, 0x9d
19928c2ecf20Sopenharmony_ci};
19938c2ecf20Sopenharmony_cistatic const u8 enc_key014[] __initconst = {
19948c2ecf20Sopenharmony_ci	0x80, 0xba, 0x31, 0x92, 0xc8, 0x03, 0xce, 0x96,
19958c2ecf20Sopenharmony_ci	0x5e, 0xa3, 0x71, 0xd5, 0xff, 0x07, 0x3c, 0xf0,
19968c2ecf20Sopenharmony_ci	0xf4, 0x3b, 0x6a, 0x2a, 0xb5, 0x76, 0xb2, 0x08,
19978c2ecf20Sopenharmony_ci	0x42, 0x6e, 0x11, 0x40, 0x9c, 0x09, 0xb9, 0xb0
19988c2ecf20Sopenharmony_ci};
19998c2ecf20Sopenharmony_ci
20008c2ecf20Sopenharmony_ci/* wycheproof - misc */
20018c2ecf20Sopenharmony_cistatic const u8 enc_input015[] __initconst = { };
20028c2ecf20Sopenharmony_cistatic const u8 enc_output015[] __initconst = {
20038c2ecf20Sopenharmony_ci	0x90, 0x6f, 0xa6, 0x28, 0x4b, 0x52, 0xf8, 0x7b,
20048c2ecf20Sopenharmony_ci	0x73, 0x59, 0xcb, 0xaa, 0x75, 0x63, 0xc7, 0x09
20058c2ecf20Sopenharmony_ci};
20068c2ecf20Sopenharmony_cistatic const u8 enc_assoc015[] __initconst = {
20078c2ecf20Sopenharmony_ci	0xbd, 0x50, 0x67, 0x64, 0xf2, 0xd2, 0xc4, 0x10
20088c2ecf20Sopenharmony_ci};
20098c2ecf20Sopenharmony_cistatic const u8 enc_nonce015[] __initconst = {
20108c2ecf20Sopenharmony_ci	0xa9, 0x2e, 0xf0, 0xac, 0x99, 0x1d, 0xd5, 0x16,
20118c2ecf20Sopenharmony_ci	0xa3, 0xc6, 0xf6, 0x89
20128c2ecf20Sopenharmony_ci};
20138c2ecf20Sopenharmony_cistatic const u8 enc_key015[] __initconst = {
20148c2ecf20Sopenharmony_ci	0x7a, 0x4c, 0xd7, 0x59, 0x17, 0x2e, 0x02, 0xeb,
20158c2ecf20Sopenharmony_ci	0x20, 0x4d, 0xb2, 0xc3, 0xf5, 0xc7, 0x46, 0x22,
20168c2ecf20Sopenharmony_ci	0x7d, 0xf5, 0x84, 0xfc, 0x13, 0x45, 0x19, 0x63,
20178c2ecf20Sopenharmony_ci	0x91, 0xdb, 0xb9, 0x57, 0x7a, 0x25, 0x07, 0x42
20188c2ecf20Sopenharmony_ci};
20198c2ecf20Sopenharmony_ci
20208c2ecf20Sopenharmony_ci/* wycheproof - misc */
20218c2ecf20Sopenharmony_cistatic const u8 enc_input016[] __initconst = {
20228c2ecf20Sopenharmony_ci	0x2a
20238c2ecf20Sopenharmony_ci};
20248c2ecf20Sopenharmony_cistatic const u8 enc_output016[] __initconst = {
20258c2ecf20Sopenharmony_ci	0x3a, 0xca, 0xc2, 0x7d, 0xec, 0x09, 0x68, 0x80,
20268c2ecf20Sopenharmony_ci	0x1e, 0x9f, 0x6e, 0xde, 0xd6, 0x9d, 0x80, 0x75,
20278c2ecf20Sopenharmony_ci	0x22
20288c2ecf20Sopenharmony_ci};
20298c2ecf20Sopenharmony_cistatic const u8 enc_assoc016[] __initconst = { };
20308c2ecf20Sopenharmony_cistatic const u8 enc_nonce016[] __initconst = {
20318c2ecf20Sopenharmony_ci	0x99, 0xe2, 0x3e, 0xc4, 0x89, 0x85, 0xbc, 0xcd,
20328c2ecf20Sopenharmony_ci	0xee, 0xab, 0x60, 0xf1
20338c2ecf20Sopenharmony_ci};
20348c2ecf20Sopenharmony_cistatic const u8 enc_key016[] __initconst = {
20358c2ecf20Sopenharmony_ci	0xcc, 0x56, 0xb6, 0x80, 0x55, 0x2e, 0xb7, 0x50,
20368c2ecf20Sopenharmony_ci	0x08, 0xf5, 0x48, 0x4b, 0x4c, 0xb8, 0x03, 0xfa,
20378c2ecf20Sopenharmony_ci	0x50, 0x63, 0xeb, 0xd6, 0xea, 0xb9, 0x1f, 0x6a,
20388c2ecf20Sopenharmony_ci	0xb6, 0xae, 0xf4, 0x91, 0x6a, 0x76, 0x62, 0x73
20398c2ecf20Sopenharmony_ci};
20408c2ecf20Sopenharmony_ci
20418c2ecf20Sopenharmony_ci/* wycheproof - misc */
20428c2ecf20Sopenharmony_cistatic const u8 enc_input017[] __initconst = {
20438c2ecf20Sopenharmony_ci	0x51
20448c2ecf20Sopenharmony_ci};
20458c2ecf20Sopenharmony_cistatic const u8 enc_output017[] __initconst = {
20468c2ecf20Sopenharmony_ci	0xc4, 0x16, 0x83, 0x10, 0xca, 0x45, 0xb1, 0xf7,
20478c2ecf20Sopenharmony_ci	0xc6, 0x6c, 0xad, 0x4e, 0x99, 0xe4, 0x3f, 0x72,
20488c2ecf20Sopenharmony_ci	0xb9
20498c2ecf20Sopenharmony_ci};
20508c2ecf20Sopenharmony_cistatic const u8 enc_assoc017[] __initconst = {
20518c2ecf20Sopenharmony_ci	0x91, 0xca, 0x6c, 0x59, 0x2c, 0xbc, 0xca, 0x53
20528c2ecf20Sopenharmony_ci};
20538c2ecf20Sopenharmony_cistatic const u8 enc_nonce017[] __initconst = {
20548c2ecf20Sopenharmony_ci	0xab, 0x0d, 0xca, 0x71, 0x6e, 0xe0, 0x51, 0xd2,
20558c2ecf20Sopenharmony_ci	0x78, 0x2f, 0x44, 0x03
20568c2ecf20Sopenharmony_ci};
20578c2ecf20Sopenharmony_cistatic const u8 enc_key017[] __initconst = {
20588c2ecf20Sopenharmony_ci	0x46, 0xf0, 0x25, 0x49, 0x65, 0xf7, 0x69, 0xd5,
20598c2ecf20Sopenharmony_ci	0x2b, 0xdb, 0x4a, 0x70, 0xb4, 0x43, 0x19, 0x9f,
20608c2ecf20Sopenharmony_ci	0x8e, 0xf2, 0x07, 0x52, 0x0d, 0x12, 0x20, 0xc5,
20618c2ecf20Sopenharmony_ci	0x5e, 0x4b, 0x70, 0xf0, 0xfd, 0xa6, 0x20, 0xee
20628c2ecf20Sopenharmony_ci};
20638c2ecf20Sopenharmony_ci
20648c2ecf20Sopenharmony_ci/* wycheproof - misc */
20658c2ecf20Sopenharmony_cistatic const u8 enc_input018[] __initconst = {
20668c2ecf20Sopenharmony_ci	0x5c, 0x60
20678c2ecf20Sopenharmony_ci};
20688c2ecf20Sopenharmony_cistatic const u8 enc_output018[] __initconst = {
20698c2ecf20Sopenharmony_ci	0x4d, 0x13, 0x91, 0xe8, 0xb6, 0x1e, 0xfb, 0x39,
20708c2ecf20Sopenharmony_ci	0xc1, 0x22, 0x19, 0x54, 0x53, 0x07, 0x7b, 0x22,
20718c2ecf20Sopenharmony_ci	0xe5, 0xe2
20728c2ecf20Sopenharmony_ci};
20738c2ecf20Sopenharmony_cistatic const u8 enc_assoc018[] __initconst = { };
20748c2ecf20Sopenharmony_cistatic const u8 enc_nonce018[] __initconst = {
20758c2ecf20Sopenharmony_ci	0x46, 0x1a, 0xf1, 0x22, 0xe9, 0xf2, 0xe0, 0x34,
20768c2ecf20Sopenharmony_ci	0x7e, 0x03, 0xf2, 0xdb
20778c2ecf20Sopenharmony_ci};
20788c2ecf20Sopenharmony_cistatic const u8 enc_key018[] __initconst = {
20798c2ecf20Sopenharmony_ci	0x2f, 0x7f, 0x7e, 0x4f, 0x59, 0x2b, 0xb3, 0x89,
20808c2ecf20Sopenharmony_ci	0x19, 0x49, 0x89, 0x74, 0x35, 0x07, 0xbf, 0x3e,
20818c2ecf20Sopenharmony_ci	0xe9, 0xcb, 0xde, 0x17, 0x86, 0xb6, 0x69, 0x5f,
20828c2ecf20Sopenharmony_ci	0xe6, 0xc0, 0x25, 0xfd, 0x9b, 0xa4, 0xc1, 0x00
20838c2ecf20Sopenharmony_ci};
20848c2ecf20Sopenharmony_ci
20858c2ecf20Sopenharmony_ci/* wycheproof - misc */
20868c2ecf20Sopenharmony_cistatic const u8 enc_input019[] __initconst = {
20878c2ecf20Sopenharmony_ci	0xdd, 0xf2
20888c2ecf20Sopenharmony_ci};
20898c2ecf20Sopenharmony_cistatic const u8 enc_output019[] __initconst = {
20908c2ecf20Sopenharmony_ci	0xb6, 0x0d, 0xea, 0xd0, 0xfd, 0x46, 0x97, 0xec,
20918c2ecf20Sopenharmony_ci	0x2e, 0x55, 0x58, 0x23, 0x77, 0x19, 0xd0, 0x24,
20928c2ecf20Sopenharmony_ci	0x37, 0xa2
20938c2ecf20Sopenharmony_ci};
20948c2ecf20Sopenharmony_cistatic const u8 enc_assoc019[] __initconst = {
20958c2ecf20Sopenharmony_ci	0x88, 0x36, 0x4f, 0xc8, 0x06, 0x05, 0x18, 0xbf
20968c2ecf20Sopenharmony_ci};
20978c2ecf20Sopenharmony_cistatic const u8 enc_nonce019[] __initconst = {
20988c2ecf20Sopenharmony_ci	0x61, 0x54, 0x6b, 0xa5, 0xf1, 0x72, 0x05, 0x90,
20998c2ecf20Sopenharmony_ci	0xb6, 0x04, 0x0a, 0xc6
21008c2ecf20Sopenharmony_ci};
21018c2ecf20Sopenharmony_cistatic const u8 enc_key019[] __initconst = {
21028c2ecf20Sopenharmony_ci	0xc8, 0x83, 0x3d, 0xce, 0x5e, 0xa9, 0xf2, 0x48,
21038c2ecf20Sopenharmony_ci	0xaa, 0x20, 0x30, 0xea, 0xcf, 0xe7, 0x2b, 0xff,
21048c2ecf20Sopenharmony_ci	0xe6, 0x9a, 0x62, 0x0c, 0xaf, 0x79, 0x33, 0x44,
21058c2ecf20Sopenharmony_ci	0xe5, 0x71, 0x8f, 0xe0, 0xd7, 0xab, 0x1a, 0x58
21068c2ecf20Sopenharmony_ci};
21078c2ecf20Sopenharmony_ci
21088c2ecf20Sopenharmony_ci/* wycheproof - misc */
21098c2ecf20Sopenharmony_cistatic const u8 enc_input020[] __initconst = {
21108c2ecf20Sopenharmony_ci	0xab, 0x85, 0xe9, 0xc1, 0x57, 0x17, 0x31
21118c2ecf20Sopenharmony_ci};
21128c2ecf20Sopenharmony_cistatic const u8 enc_output020[] __initconst = {
21138c2ecf20Sopenharmony_ci	0x5d, 0xfe, 0x34, 0x40, 0xdb, 0xb3, 0xc3, 0xed,
21148c2ecf20Sopenharmony_ci	0x7a, 0x43, 0x4e, 0x26, 0x02, 0xd3, 0x94, 0x28,
21158c2ecf20Sopenharmony_ci	0x1e, 0x0a, 0xfa, 0x9f, 0xb7, 0xaa, 0x42
21168c2ecf20Sopenharmony_ci};
21178c2ecf20Sopenharmony_cistatic const u8 enc_assoc020[] __initconst = { };
21188c2ecf20Sopenharmony_cistatic const u8 enc_nonce020[] __initconst = {
21198c2ecf20Sopenharmony_ci	0x3c, 0x4e, 0x65, 0x4d, 0x66, 0x3f, 0xa4, 0x59,
21208c2ecf20Sopenharmony_ci	0x6d, 0xc5, 0x5b, 0xb7
21218c2ecf20Sopenharmony_ci};
21228c2ecf20Sopenharmony_cistatic const u8 enc_key020[] __initconst = {
21238c2ecf20Sopenharmony_ci	0x55, 0x56, 0x81, 0x58, 0xd3, 0xa6, 0x48, 0x3f,
21248c2ecf20Sopenharmony_ci	0x1f, 0x70, 0x21, 0xea, 0xb6, 0x9b, 0x70, 0x3f,
21258c2ecf20Sopenharmony_ci	0x61, 0x42, 0x51, 0xca, 0xdc, 0x1a, 0xf5, 0xd3,
21268c2ecf20Sopenharmony_ci	0x4a, 0x37, 0x4f, 0xdb, 0xfc, 0x5a, 0xda, 0xc7
21278c2ecf20Sopenharmony_ci};
21288c2ecf20Sopenharmony_ci
21298c2ecf20Sopenharmony_ci/* wycheproof - misc */
21308c2ecf20Sopenharmony_cistatic const u8 enc_input021[] __initconst = {
21318c2ecf20Sopenharmony_ci	0x4e, 0xe5, 0xcd, 0xa2, 0x0d, 0x42, 0x90
21328c2ecf20Sopenharmony_ci};
21338c2ecf20Sopenharmony_cistatic const u8 enc_output021[] __initconst = {
21348c2ecf20Sopenharmony_ci	0x4b, 0xd4, 0x72, 0x12, 0x94, 0x1c, 0xe3, 0x18,
21358c2ecf20Sopenharmony_ci	0x5f, 0x14, 0x08, 0xee, 0x7f, 0xbf, 0x18, 0xf5,
21368c2ecf20Sopenharmony_ci	0xab, 0xad, 0x6e, 0x22, 0x53, 0xa1, 0xba
21378c2ecf20Sopenharmony_ci};
21388c2ecf20Sopenharmony_cistatic const u8 enc_assoc021[] __initconst = {
21398c2ecf20Sopenharmony_ci	0x84, 0xe4, 0x6b, 0xe8, 0xc0, 0x91, 0x90, 0x53
21408c2ecf20Sopenharmony_ci};
21418c2ecf20Sopenharmony_cistatic const u8 enc_nonce021[] __initconst = {
21428c2ecf20Sopenharmony_ci	0x58, 0x38, 0x93, 0x75, 0xc6, 0x9e, 0xe3, 0x98,
21438c2ecf20Sopenharmony_ci	0xde, 0x94, 0x83, 0x96
21448c2ecf20Sopenharmony_ci};
21458c2ecf20Sopenharmony_cistatic const u8 enc_key021[] __initconst = {
21468c2ecf20Sopenharmony_ci	0xe3, 0xc0, 0x9e, 0x7f, 0xab, 0x1a, 0xef, 0xb5,
21478c2ecf20Sopenharmony_ci	0x16, 0xda, 0x6a, 0x33, 0x02, 0x2a, 0x1d, 0xd4,
21488c2ecf20Sopenharmony_ci	0xeb, 0x27, 0x2c, 0x80, 0xd5, 0x40, 0xc5, 0xda,
21498c2ecf20Sopenharmony_ci	0x52, 0xa7, 0x30, 0xf3, 0x4d, 0x84, 0x0d, 0x7f
21508c2ecf20Sopenharmony_ci};
21518c2ecf20Sopenharmony_ci
21528c2ecf20Sopenharmony_ci/* wycheproof - misc */
21538c2ecf20Sopenharmony_cistatic const u8 enc_input022[] __initconst = {
21548c2ecf20Sopenharmony_ci	0xbe, 0x33, 0x08, 0xf7, 0x2a, 0x2c, 0x6a, 0xed
21558c2ecf20Sopenharmony_ci};
21568c2ecf20Sopenharmony_cistatic const u8 enc_output022[] __initconst = {
21578c2ecf20Sopenharmony_ci	0x8e, 0x94, 0x39, 0xa5, 0x6e, 0xee, 0xc8, 0x17,
21588c2ecf20Sopenharmony_ci	0xfb, 0xe8, 0xa6, 0xed, 0x8f, 0xab, 0xb1, 0x93,
21598c2ecf20Sopenharmony_ci	0x75, 0x39, 0xdd, 0x6c, 0x00, 0xe9, 0x00, 0x21
21608c2ecf20Sopenharmony_ci};
21618c2ecf20Sopenharmony_cistatic const u8 enc_assoc022[] __initconst = { };
21628c2ecf20Sopenharmony_cistatic const u8 enc_nonce022[] __initconst = {
21638c2ecf20Sopenharmony_ci	0x4f, 0x07, 0xaf, 0xed, 0xfd, 0xc3, 0xb6, 0xc2,
21648c2ecf20Sopenharmony_ci	0x36, 0x18, 0x23, 0xd3
21658c2ecf20Sopenharmony_ci};
21668c2ecf20Sopenharmony_cistatic const u8 enc_key022[] __initconst = {
21678c2ecf20Sopenharmony_ci	0x51, 0xe4, 0xbf, 0x2b, 0xad, 0x92, 0xb7, 0xaf,
21688c2ecf20Sopenharmony_ci	0xf1, 0xa4, 0xbc, 0x05, 0x55, 0x0b, 0xa8, 0x1d,
21698c2ecf20Sopenharmony_ci	0xf4, 0xb9, 0x6f, 0xab, 0xf4, 0x1c, 0x12, 0xc7,
21708c2ecf20Sopenharmony_ci	0xb0, 0x0e, 0x60, 0xe4, 0x8d, 0xb7, 0xe1, 0x52
21718c2ecf20Sopenharmony_ci};
21728c2ecf20Sopenharmony_ci
21738c2ecf20Sopenharmony_ci/* wycheproof - misc */
21748c2ecf20Sopenharmony_cistatic const u8 enc_input023[] __initconst = {
21758c2ecf20Sopenharmony_ci	0xa4, 0xc9, 0xc2, 0x80, 0x1b, 0x71, 0xf7, 0xdf
21768c2ecf20Sopenharmony_ci};
21778c2ecf20Sopenharmony_cistatic const u8 enc_output023[] __initconst = {
21788c2ecf20Sopenharmony_ci	0xb9, 0xb9, 0x10, 0x43, 0x3a, 0xf0, 0x52, 0xb0,
21798c2ecf20Sopenharmony_ci	0x45, 0x30, 0xf5, 0x1a, 0xee, 0xe0, 0x24, 0xe0,
21808c2ecf20Sopenharmony_ci	0xa4, 0x45, 0xa6, 0x32, 0x8f, 0xa6, 0x7a, 0x18
21818c2ecf20Sopenharmony_ci};
21828c2ecf20Sopenharmony_cistatic const u8 enc_assoc023[] __initconst = {
21838c2ecf20Sopenharmony_ci	0x66, 0xc0, 0xae, 0x70, 0x07, 0x6c, 0xb1, 0x4d
21848c2ecf20Sopenharmony_ci};
21858c2ecf20Sopenharmony_cistatic const u8 enc_nonce023[] __initconst = {
21868c2ecf20Sopenharmony_ci	0xb4, 0xea, 0x66, 0x6e, 0xe1, 0x19, 0x56, 0x33,
21878c2ecf20Sopenharmony_ci	0x66, 0x48, 0x4a, 0x78
21888c2ecf20Sopenharmony_ci};
21898c2ecf20Sopenharmony_cistatic const u8 enc_key023[] __initconst = {
21908c2ecf20Sopenharmony_ci	0x11, 0x31, 0xc1, 0x41, 0x85, 0x77, 0xa0, 0x54,
21918c2ecf20Sopenharmony_ci	0xde, 0x7a, 0x4a, 0xc5, 0x51, 0x95, 0x0f, 0x1a,
21928c2ecf20Sopenharmony_ci	0x05, 0x3f, 0x9a, 0xe4, 0x6e, 0x5b, 0x75, 0xfe,
21938c2ecf20Sopenharmony_ci	0x4a, 0xbd, 0x56, 0x08, 0xd7, 0xcd, 0xda, 0xdd
21948c2ecf20Sopenharmony_ci};
21958c2ecf20Sopenharmony_ci
21968c2ecf20Sopenharmony_ci/* wycheproof - misc */
21978c2ecf20Sopenharmony_cistatic const u8 enc_input024[] __initconst = {
21988c2ecf20Sopenharmony_ci	0x42, 0xba, 0xae, 0x59, 0x78, 0xfe, 0xaf, 0x5c,
21998c2ecf20Sopenharmony_ci	0x36, 0x8d, 0x14, 0xe0
22008c2ecf20Sopenharmony_ci};
22018c2ecf20Sopenharmony_cistatic const u8 enc_output024[] __initconst = {
22028c2ecf20Sopenharmony_ci	0xff, 0x7d, 0xc2, 0x03, 0xb2, 0x6c, 0x46, 0x7a,
22038c2ecf20Sopenharmony_ci	0x6b, 0x50, 0xdb, 0x33, 0x57, 0x8c, 0x0f, 0x27,
22048c2ecf20Sopenharmony_ci	0x58, 0xc2, 0xe1, 0x4e, 0x36, 0xd4, 0xfc, 0x10,
22058c2ecf20Sopenharmony_ci	0x6d, 0xcb, 0x29, 0xb4
22068c2ecf20Sopenharmony_ci};
22078c2ecf20Sopenharmony_cistatic const u8 enc_assoc024[] __initconst = { };
22088c2ecf20Sopenharmony_cistatic const u8 enc_nonce024[] __initconst = {
22098c2ecf20Sopenharmony_ci	0x9a, 0x59, 0xfc, 0xe2, 0x6d, 0xf0, 0x00, 0x5e,
22108c2ecf20Sopenharmony_ci	0x07, 0x53, 0x86, 0x56
22118c2ecf20Sopenharmony_ci};
22128c2ecf20Sopenharmony_cistatic const u8 enc_key024[] __initconst = {
22138c2ecf20Sopenharmony_ci	0x99, 0xb6, 0x2b, 0xd5, 0xaf, 0xbe, 0x3f, 0xb0,
22148c2ecf20Sopenharmony_ci	0x15, 0xbd, 0xe9, 0x3f, 0x0a, 0xbf, 0x48, 0x39,
22158c2ecf20Sopenharmony_ci	0x57, 0xa1, 0xc3, 0xeb, 0x3c, 0xa5, 0x9c, 0xb5,
22168c2ecf20Sopenharmony_ci	0x0b, 0x39, 0xf7, 0xf8, 0xa9, 0xcc, 0x51, 0xbe
22178c2ecf20Sopenharmony_ci};
22188c2ecf20Sopenharmony_ci
22198c2ecf20Sopenharmony_ci/* wycheproof - misc */
22208c2ecf20Sopenharmony_cistatic const u8 enc_input025[] __initconst = {
22218c2ecf20Sopenharmony_ci	0xfd, 0xc8, 0x5b, 0x94, 0xa4, 0xb2, 0xa6, 0xb7,
22228c2ecf20Sopenharmony_ci	0x59, 0xb1, 0xa0, 0xda
22238c2ecf20Sopenharmony_ci};
22248c2ecf20Sopenharmony_cistatic const u8 enc_output025[] __initconst = {
22258c2ecf20Sopenharmony_ci	0x9f, 0x88, 0x16, 0xde, 0x09, 0x94, 0xe9, 0x38,
22268c2ecf20Sopenharmony_ci	0xd9, 0xe5, 0x3f, 0x95, 0xd0, 0x86, 0xfc, 0x6c,
22278c2ecf20Sopenharmony_ci	0x9d, 0x8f, 0xa9, 0x15, 0xfd, 0x84, 0x23, 0xa7,
22288c2ecf20Sopenharmony_ci	0xcf, 0x05, 0x07, 0x2f
22298c2ecf20Sopenharmony_ci};
22308c2ecf20Sopenharmony_cistatic const u8 enc_assoc025[] __initconst = {
22318c2ecf20Sopenharmony_ci	0xa5, 0x06, 0xe1, 0xa5, 0xc6, 0x90, 0x93, 0xf9
22328c2ecf20Sopenharmony_ci};
22338c2ecf20Sopenharmony_cistatic const u8 enc_nonce025[] __initconst = {
22348c2ecf20Sopenharmony_ci	0x58, 0xdb, 0xd4, 0xad, 0x2c, 0x4a, 0xd3, 0x5d,
22358c2ecf20Sopenharmony_ci	0xd9, 0x06, 0xe9, 0xce
22368c2ecf20Sopenharmony_ci};
22378c2ecf20Sopenharmony_cistatic const u8 enc_key025[] __initconst = {
22388c2ecf20Sopenharmony_ci	0x85, 0xf3, 0x5b, 0x62, 0x82, 0xcf, 0xf4, 0x40,
22398c2ecf20Sopenharmony_ci	0xbc, 0x10, 0x20, 0xc8, 0x13, 0x6f, 0xf2, 0x70,
22408c2ecf20Sopenharmony_ci	0x31, 0x11, 0x0f, 0xa6, 0x3e, 0xc1, 0x6f, 0x1e,
22418c2ecf20Sopenharmony_ci	0x82, 0x51, 0x18, 0xb0, 0x06, 0xb9, 0x12, 0x57
22428c2ecf20Sopenharmony_ci};
22438c2ecf20Sopenharmony_ci
22448c2ecf20Sopenharmony_ci/* wycheproof - misc */
22458c2ecf20Sopenharmony_cistatic const u8 enc_input026[] __initconst = {
22468c2ecf20Sopenharmony_ci	0x51, 0xf8, 0xc1, 0xf7, 0x31, 0xea, 0x14, 0xac,
22478c2ecf20Sopenharmony_ci	0xdb, 0x21, 0x0a, 0x6d, 0x97, 0x3e, 0x07
22488c2ecf20Sopenharmony_ci};
22498c2ecf20Sopenharmony_cistatic const u8 enc_output026[] __initconst = {
22508c2ecf20Sopenharmony_ci	0x0b, 0x29, 0x63, 0x8e, 0x1f, 0xbd, 0xd6, 0xdf,
22518c2ecf20Sopenharmony_ci	0x53, 0x97, 0x0b, 0xe2, 0x21, 0x00, 0x42, 0x2a,
22528c2ecf20Sopenharmony_ci	0x91, 0x34, 0x08, 0x7d, 0x67, 0xa4, 0x6e, 0x79,
22538c2ecf20Sopenharmony_ci	0x17, 0x8d, 0x0a, 0x93, 0xf5, 0xe1, 0xd2
22548c2ecf20Sopenharmony_ci};
22558c2ecf20Sopenharmony_cistatic const u8 enc_assoc026[] __initconst = { };
22568c2ecf20Sopenharmony_cistatic const u8 enc_nonce026[] __initconst = {
22578c2ecf20Sopenharmony_ci	0x68, 0xab, 0x7f, 0xdb, 0xf6, 0x19, 0x01, 0xda,
22588c2ecf20Sopenharmony_ci	0xd4, 0x61, 0xd2, 0x3c
22598c2ecf20Sopenharmony_ci};
22608c2ecf20Sopenharmony_cistatic const u8 enc_key026[] __initconst = {
22618c2ecf20Sopenharmony_ci	0x67, 0x11, 0x96, 0x27, 0xbd, 0x98, 0x8e, 0xda,
22628c2ecf20Sopenharmony_ci	0x90, 0x62, 0x19, 0xe0, 0x8c, 0x0d, 0x0d, 0x77,
22638c2ecf20Sopenharmony_ci	0x9a, 0x07, 0xd2, 0x08, 0xce, 0x8a, 0x4f, 0xe0,
22648c2ecf20Sopenharmony_ci	0x70, 0x9a, 0xf7, 0x55, 0xee, 0xec, 0x6d, 0xcb
22658c2ecf20Sopenharmony_ci};
22668c2ecf20Sopenharmony_ci
22678c2ecf20Sopenharmony_ci/* wycheproof - misc */
22688c2ecf20Sopenharmony_cistatic const u8 enc_input027[] __initconst = {
22698c2ecf20Sopenharmony_ci	0x97, 0x46, 0x9d, 0xa6, 0x67, 0xd6, 0x11, 0x0f,
22708c2ecf20Sopenharmony_ci	0x9c, 0xbd, 0xa1, 0xd1, 0xa2, 0x06, 0x73
22718c2ecf20Sopenharmony_ci};
22728c2ecf20Sopenharmony_cistatic const u8 enc_output027[] __initconst = {
22738c2ecf20Sopenharmony_ci	0x32, 0xdb, 0x66, 0xc4, 0xa3, 0x81, 0x9d, 0x81,
22748c2ecf20Sopenharmony_ci	0x55, 0x74, 0x55, 0xe5, 0x98, 0x0f, 0xed, 0xfe,
22758c2ecf20Sopenharmony_ci	0xae, 0x30, 0xde, 0xc9, 0x4e, 0x6a, 0xd3, 0xa9,
22768c2ecf20Sopenharmony_ci	0xee, 0xa0, 0x6a, 0x0d, 0x70, 0x39, 0x17
22778c2ecf20Sopenharmony_ci};
22788c2ecf20Sopenharmony_cistatic const u8 enc_assoc027[] __initconst = {
22798c2ecf20Sopenharmony_ci	0x64, 0x53, 0xa5, 0x33, 0x84, 0x63, 0x22, 0x12
22808c2ecf20Sopenharmony_ci};
22818c2ecf20Sopenharmony_cistatic const u8 enc_nonce027[] __initconst = {
22828c2ecf20Sopenharmony_ci	0xd9, 0x5b, 0x32, 0x43, 0xaf, 0xae, 0xf7, 0x14,
22838c2ecf20Sopenharmony_ci	0xc5, 0x03, 0x5b, 0x6a
22848c2ecf20Sopenharmony_ci};
22858c2ecf20Sopenharmony_cistatic const u8 enc_key027[] __initconst = {
22868c2ecf20Sopenharmony_ci	0xe6, 0xf1, 0x11, 0x8d, 0x41, 0xe4, 0xb4, 0x3f,
22878c2ecf20Sopenharmony_ci	0xb5, 0x82, 0x21, 0xb7, 0xed, 0x79, 0x67, 0x38,
22888c2ecf20Sopenharmony_ci	0x34, 0xe0, 0xd8, 0xac, 0x5c, 0x4f, 0xa6, 0x0b,
22898c2ecf20Sopenharmony_ci	0xbc, 0x8b, 0xc4, 0x89, 0x3a, 0x58, 0x89, 0x4d
22908c2ecf20Sopenharmony_ci};
22918c2ecf20Sopenharmony_ci
22928c2ecf20Sopenharmony_ci/* wycheproof - misc */
22938c2ecf20Sopenharmony_cistatic const u8 enc_input028[] __initconst = {
22948c2ecf20Sopenharmony_ci	0x54, 0x9b, 0x36, 0x5a, 0xf9, 0x13, 0xf3, 0xb0,
22958c2ecf20Sopenharmony_ci	0x81, 0x13, 0x1c, 0xcb, 0x6b, 0x82, 0x55, 0x88
22968c2ecf20Sopenharmony_ci};
22978c2ecf20Sopenharmony_cistatic const u8 enc_output028[] __initconst = {
22988c2ecf20Sopenharmony_ci	0xe9, 0x11, 0x0e, 0x9f, 0x56, 0xab, 0x3c, 0xa4,
22998c2ecf20Sopenharmony_ci	0x83, 0x50, 0x0c, 0xea, 0xba, 0xb6, 0x7a, 0x13,
23008c2ecf20Sopenharmony_ci	0x83, 0x6c, 0xca, 0xbf, 0x15, 0xa6, 0xa2, 0x2a,
23018c2ecf20Sopenharmony_ci	0x51, 0xc1, 0x07, 0x1c, 0xfa, 0x68, 0xfa, 0x0c
23028c2ecf20Sopenharmony_ci};
23038c2ecf20Sopenharmony_cistatic const u8 enc_assoc028[] __initconst = { };
23048c2ecf20Sopenharmony_cistatic const u8 enc_nonce028[] __initconst = {
23058c2ecf20Sopenharmony_ci	0x2f, 0xcb, 0x1b, 0x38, 0xa9, 0x9e, 0x71, 0xb8,
23068c2ecf20Sopenharmony_ci	0x47, 0x40, 0xad, 0x9b
23078c2ecf20Sopenharmony_ci};
23088c2ecf20Sopenharmony_cistatic const u8 enc_key028[] __initconst = {
23098c2ecf20Sopenharmony_ci	0x59, 0xd4, 0xea, 0xfb, 0x4d, 0xe0, 0xcf, 0xc7,
23108c2ecf20Sopenharmony_ci	0xd3, 0xdb, 0x99, 0xa8, 0xf5, 0x4b, 0x15, 0xd7,
23118c2ecf20Sopenharmony_ci	0xb3, 0x9f, 0x0a, 0xcc, 0x8d, 0xa6, 0x97, 0x63,
23128c2ecf20Sopenharmony_ci	0xb0, 0x19, 0xc1, 0x69, 0x9f, 0x87, 0x67, 0x4a
23138c2ecf20Sopenharmony_ci};
23148c2ecf20Sopenharmony_ci
23158c2ecf20Sopenharmony_ci/* wycheproof - misc */
23168c2ecf20Sopenharmony_cistatic const u8 enc_input029[] __initconst = {
23178c2ecf20Sopenharmony_ci	0x55, 0xa4, 0x65, 0x64, 0x4f, 0x5b, 0x65, 0x09,
23188c2ecf20Sopenharmony_ci	0x28, 0xcb, 0xee, 0x7c, 0x06, 0x32, 0x14, 0xd6
23198c2ecf20Sopenharmony_ci};
23208c2ecf20Sopenharmony_cistatic const u8 enc_output029[] __initconst = {
23218c2ecf20Sopenharmony_ci	0xe4, 0xb1, 0x13, 0xcb, 0x77, 0x59, 0x45, 0xf3,
23228c2ecf20Sopenharmony_ci	0xd3, 0xa8, 0xae, 0x9e, 0xc1, 0x41, 0xc0, 0x0c,
23238c2ecf20Sopenharmony_ci	0x7c, 0x43, 0xf1, 0x6c, 0xe0, 0x96, 0xd0, 0xdc,
23248c2ecf20Sopenharmony_ci	0x27, 0xc9, 0x58, 0x49, 0xdc, 0x38, 0x3b, 0x7d
23258c2ecf20Sopenharmony_ci};
23268c2ecf20Sopenharmony_cistatic const u8 enc_assoc029[] __initconst = {
23278c2ecf20Sopenharmony_ci	0x03, 0x45, 0x85, 0x62, 0x1a, 0xf8, 0xd7, 0xff
23288c2ecf20Sopenharmony_ci};
23298c2ecf20Sopenharmony_cistatic const u8 enc_nonce029[] __initconst = {
23308c2ecf20Sopenharmony_ci	0x11, 0x8a, 0x69, 0x64, 0xc2, 0xd3, 0xe3, 0x80,
23318c2ecf20Sopenharmony_ci	0x07, 0x1f, 0x52, 0x66
23328c2ecf20Sopenharmony_ci};
23338c2ecf20Sopenharmony_cistatic const u8 enc_key029[] __initconst = {
23348c2ecf20Sopenharmony_ci	0xb9, 0x07, 0xa4, 0x50, 0x75, 0x51, 0x3f, 0xe8,
23358c2ecf20Sopenharmony_ci	0xa8, 0x01, 0x9e, 0xde, 0xe3, 0xf2, 0x59, 0x14,
23368c2ecf20Sopenharmony_ci	0x87, 0xb2, 0xa0, 0x30, 0xb0, 0x3c, 0x6e, 0x1d,
23378c2ecf20Sopenharmony_ci	0x77, 0x1c, 0x86, 0x25, 0x71, 0xd2, 0xea, 0x1e
23388c2ecf20Sopenharmony_ci};
23398c2ecf20Sopenharmony_ci
23408c2ecf20Sopenharmony_ci/* wycheproof - misc */
23418c2ecf20Sopenharmony_cistatic const u8 enc_input030[] __initconst = {
23428c2ecf20Sopenharmony_ci	0x3f, 0xf1, 0x51, 0x4b, 0x1c, 0x50, 0x39, 0x15,
23438c2ecf20Sopenharmony_ci	0x91, 0x8f, 0x0c, 0x0c, 0x31, 0x09, 0x4a, 0x6e,
23448c2ecf20Sopenharmony_ci	0x1f
23458c2ecf20Sopenharmony_ci};
23468c2ecf20Sopenharmony_cistatic const u8 enc_output030[] __initconst = {
23478c2ecf20Sopenharmony_ci	0x02, 0xcc, 0x3a, 0xcb, 0x5e, 0xe1, 0xfc, 0xdd,
23488c2ecf20Sopenharmony_ci	0x12, 0xa0, 0x3b, 0xb8, 0x57, 0x97, 0x64, 0x74,
23498c2ecf20Sopenharmony_ci	0xd3, 0xd8, 0x3b, 0x74, 0x63, 0xa2, 0xc3, 0x80,
23508c2ecf20Sopenharmony_ci	0x0f, 0xe9, 0x58, 0xc2, 0x8e, 0xaa, 0x29, 0x08,
23518c2ecf20Sopenharmony_ci	0x13
23528c2ecf20Sopenharmony_ci};
23538c2ecf20Sopenharmony_cistatic const u8 enc_assoc030[] __initconst = { };
23548c2ecf20Sopenharmony_cistatic const u8 enc_nonce030[] __initconst = {
23558c2ecf20Sopenharmony_ci	0x45, 0xaa, 0xa3, 0xe5, 0xd1, 0x6d, 0x2d, 0x42,
23568c2ecf20Sopenharmony_ci	0xdc, 0x03, 0x44, 0x5d
23578c2ecf20Sopenharmony_ci};
23588c2ecf20Sopenharmony_cistatic const u8 enc_key030[] __initconst = {
23598c2ecf20Sopenharmony_ci	0x3b, 0x24, 0x58, 0xd8, 0x17, 0x6e, 0x16, 0x21,
23608c2ecf20Sopenharmony_ci	0xc0, 0xcc, 0x24, 0xc0, 0xc0, 0xe2, 0x4c, 0x1e,
23618c2ecf20Sopenharmony_ci	0x80, 0xd7, 0x2f, 0x7e, 0xe9, 0x14, 0x9a, 0x4b,
23628c2ecf20Sopenharmony_ci	0x16, 0x61, 0x76, 0x62, 0x96, 0x16, 0xd0, 0x11
23638c2ecf20Sopenharmony_ci};
23648c2ecf20Sopenharmony_ci
23658c2ecf20Sopenharmony_ci/* wycheproof - misc */
23668c2ecf20Sopenharmony_cistatic const u8 enc_input031[] __initconst = {
23678c2ecf20Sopenharmony_ci	0x63, 0x85, 0x8c, 0xa3, 0xe2, 0xce, 0x69, 0x88,
23688c2ecf20Sopenharmony_ci	0x7b, 0x57, 0x8a, 0x3c, 0x16, 0x7b, 0x42, 0x1c,
23698c2ecf20Sopenharmony_ci	0x9c
23708c2ecf20Sopenharmony_ci};
23718c2ecf20Sopenharmony_cistatic const u8 enc_output031[] __initconst = {
23728c2ecf20Sopenharmony_ci	0x35, 0x76, 0x64, 0x88, 0xd2, 0xbc, 0x7c, 0x2b,
23738c2ecf20Sopenharmony_ci	0x8d, 0x17, 0xcb, 0xbb, 0x9a, 0xbf, 0xad, 0x9e,
23748c2ecf20Sopenharmony_ci	0x6d, 0x1f, 0x39, 0x1e, 0x65, 0x7b, 0x27, 0x38,
23758c2ecf20Sopenharmony_ci	0xdd, 0xa0, 0x84, 0x48, 0xcb, 0xa2, 0x81, 0x1c,
23768c2ecf20Sopenharmony_ci	0xeb
23778c2ecf20Sopenharmony_ci};
23788c2ecf20Sopenharmony_cistatic const u8 enc_assoc031[] __initconst = {
23798c2ecf20Sopenharmony_ci	0x9a, 0xaf, 0x29, 0x9e, 0xee, 0xa7, 0x8f, 0x79
23808c2ecf20Sopenharmony_ci};
23818c2ecf20Sopenharmony_cistatic const u8 enc_nonce031[] __initconst = {
23828c2ecf20Sopenharmony_ci	0xf0, 0x38, 0x4f, 0xb8, 0x76, 0x12, 0x14, 0x10,
23838c2ecf20Sopenharmony_ci	0x63, 0x3d, 0x99, 0x3d
23848c2ecf20Sopenharmony_ci};
23858c2ecf20Sopenharmony_cistatic const u8 enc_key031[] __initconst = {
23868c2ecf20Sopenharmony_ci	0xf6, 0x0c, 0x6a, 0x1b, 0x62, 0x57, 0x25, 0xf7,
23878c2ecf20Sopenharmony_ci	0x6c, 0x70, 0x37, 0xb4, 0x8f, 0xe3, 0x57, 0x7f,
23888c2ecf20Sopenharmony_ci	0xa7, 0xf7, 0xb8, 0x7b, 0x1b, 0xd5, 0xa9, 0x82,
23898c2ecf20Sopenharmony_ci	0x17, 0x6d, 0x18, 0x23, 0x06, 0xff, 0xb8, 0x70
23908c2ecf20Sopenharmony_ci};
23918c2ecf20Sopenharmony_ci
23928c2ecf20Sopenharmony_ci/* wycheproof - misc */
23938c2ecf20Sopenharmony_cistatic const u8 enc_input032[] __initconst = {
23948c2ecf20Sopenharmony_ci	0x10, 0xf1, 0xec, 0xf9, 0xc6, 0x05, 0x84, 0x66,
23958c2ecf20Sopenharmony_ci	0x5d, 0x9a, 0xe5, 0xef, 0xe2, 0x79, 0xe7, 0xf7,
23968c2ecf20Sopenharmony_ci	0x37, 0x7e, 0xea, 0x69, 0x16, 0xd2, 0xb1, 0x11
23978c2ecf20Sopenharmony_ci};
23988c2ecf20Sopenharmony_cistatic const u8 enc_output032[] __initconst = {
23998c2ecf20Sopenharmony_ci	0x42, 0xf2, 0x6c, 0x56, 0xcb, 0x4b, 0xe2, 0x1d,
24008c2ecf20Sopenharmony_ci	0x9d, 0x8d, 0x0c, 0x80, 0xfc, 0x99, 0xdd, 0xe0,
24018c2ecf20Sopenharmony_ci	0x0d, 0x75, 0xf3, 0x80, 0x74, 0xbf, 0xe7, 0x64,
24028c2ecf20Sopenharmony_ci	0x54, 0xaa, 0x7e, 0x13, 0xd4, 0x8f, 0xff, 0x7d,
24038c2ecf20Sopenharmony_ci	0x75, 0x57, 0x03, 0x94, 0x57, 0x04, 0x0a, 0x3a
24048c2ecf20Sopenharmony_ci};
24058c2ecf20Sopenharmony_cistatic const u8 enc_assoc032[] __initconst = { };
24068c2ecf20Sopenharmony_cistatic const u8 enc_nonce032[] __initconst = {
24078c2ecf20Sopenharmony_ci	0xe6, 0xb1, 0xad, 0xf2, 0xfd, 0x58, 0xa8, 0x76,
24088c2ecf20Sopenharmony_ci	0x2c, 0x65, 0xf3, 0x1b
24098c2ecf20Sopenharmony_ci};
24108c2ecf20Sopenharmony_cistatic const u8 enc_key032[] __initconst = {
24118c2ecf20Sopenharmony_ci	0x02, 0x12, 0xa8, 0xde, 0x50, 0x07, 0xed, 0x87,
24128c2ecf20Sopenharmony_ci	0xb3, 0x3f, 0x1a, 0x70, 0x90, 0xb6, 0x11, 0x4f,
24138c2ecf20Sopenharmony_ci	0x9e, 0x08, 0xce, 0xfd, 0x96, 0x07, 0xf2, 0xc2,
24148c2ecf20Sopenharmony_ci	0x76, 0xbd, 0xcf, 0xdb, 0xc5, 0xce, 0x9c, 0xd7
24158c2ecf20Sopenharmony_ci};
24168c2ecf20Sopenharmony_ci
24178c2ecf20Sopenharmony_ci/* wycheproof - misc */
24188c2ecf20Sopenharmony_cistatic const u8 enc_input033[] __initconst = {
24198c2ecf20Sopenharmony_ci	0x92, 0x22, 0xf9, 0x01, 0x8e, 0x54, 0xfd, 0x6d,
24208c2ecf20Sopenharmony_ci	0xe1, 0x20, 0x08, 0x06, 0xa9, 0xee, 0x8e, 0x4c,
24218c2ecf20Sopenharmony_ci	0xc9, 0x04, 0xd2, 0x9f, 0x25, 0xcb, 0xa1, 0x93
24228c2ecf20Sopenharmony_ci};
24238c2ecf20Sopenharmony_cistatic const u8 enc_output033[] __initconst = {
24248c2ecf20Sopenharmony_ci	0x12, 0x30, 0x32, 0x43, 0x7b, 0x4b, 0xfd, 0x69,
24258c2ecf20Sopenharmony_ci	0x20, 0xe8, 0xf7, 0xe7, 0xe0, 0x08, 0x7a, 0xe4,
24268c2ecf20Sopenharmony_ci	0x88, 0x9e, 0xbe, 0x7a, 0x0a, 0xd0, 0xe9, 0x00,
24278c2ecf20Sopenharmony_ci	0x3c, 0xf6, 0x8f, 0x17, 0x95, 0x50, 0xda, 0x63,
24288c2ecf20Sopenharmony_ci	0xd3, 0xb9, 0x6c, 0x2d, 0x55, 0x41, 0x18, 0x65
24298c2ecf20Sopenharmony_ci};
24308c2ecf20Sopenharmony_cistatic const u8 enc_assoc033[] __initconst = {
24318c2ecf20Sopenharmony_ci	0x3e, 0x8b, 0xc5, 0xad, 0xe1, 0x82, 0xff, 0x08
24328c2ecf20Sopenharmony_ci};
24338c2ecf20Sopenharmony_cistatic const u8 enc_nonce033[] __initconst = {
24348c2ecf20Sopenharmony_ci	0x6b, 0x28, 0x2e, 0xbe, 0xcc, 0x54, 0x1b, 0xcd,
24358c2ecf20Sopenharmony_ci	0x78, 0x34, 0xed, 0x55
24368c2ecf20Sopenharmony_ci};
24378c2ecf20Sopenharmony_cistatic const u8 enc_key033[] __initconst = {
24388c2ecf20Sopenharmony_ci	0xc5, 0xbc, 0x09, 0x56, 0x56, 0x46, 0xe7, 0xed,
24398c2ecf20Sopenharmony_ci	0xda, 0x95, 0x4f, 0x1f, 0x73, 0x92, 0x23, 0xda,
24408c2ecf20Sopenharmony_ci	0xda, 0x20, 0xb9, 0x5c, 0x44, 0xab, 0x03, 0x3d,
24418c2ecf20Sopenharmony_ci	0x0f, 0xae, 0x4b, 0x02, 0x83, 0xd1, 0x8b, 0xe3
24428c2ecf20Sopenharmony_ci};
24438c2ecf20Sopenharmony_ci
24448c2ecf20Sopenharmony_ci/* wycheproof - misc */
24458c2ecf20Sopenharmony_cistatic const u8 enc_input034[] __initconst = {
24468c2ecf20Sopenharmony_ci	0xb0, 0x53, 0x99, 0x92, 0x86, 0xa2, 0x82, 0x4f,
24478c2ecf20Sopenharmony_ci	0x42, 0xcc, 0x8c, 0x20, 0x3a, 0xb2, 0x4e, 0x2c,
24488c2ecf20Sopenharmony_ci	0x97, 0xa6, 0x85, 0xad, 0xcc, 0x2a, 0xd3, 0x26,
24498c2ecf20Sopenharmony_ci	0x62, 0x55, 0x8e, 0x55, 0xa5, 0xc7, 0x29
24508c2ecf20Sopenharmony_ci};
24518c2ecf20Sopenharmony_cistatic const u8 enc_output034[] __initconst = {
24528c2ecf20Sopenharmony_ci	0x45, 0xc7, 0xd6, 0xb5, 0x3a, 0xca, 0xd4, 0xab,
24538c2ecf20Sopenharmony_ci	0xb6, 0x88, 0x76, 0xa6, 0xe9, 0x6a, 0x48, 0xfb,
24548c2ecf20Sopenharmony_ci	0x59, 0x52, 0x4d, 0x2c, 0x92, 0xc9, 0xd8, 0xa1,
24558c2ecf20Sopenharmony_ci	0x89, 0xc9, 0xfd, 0x2d, 0xb9, 0x17, 0x46, 0x56,
24568c2ecf20Sopenharmony_ci	0x6d, 0x3c, 0xa1, 0x0e, 0x31, 0x1b, 0x69, 0x5f,
24578c2ecf20Sopenharmony_ci	0x3e, 0xae, 0x15, 0x51, 0x65, 0x24, 0x93
24588c2ecf20Sopenharmony_ci};
24598c2ecf20Sopenharmony_cistatic const u8 enc_assoc034[] __initconst = { };
24608c2ecf20Sopenharmony_cistatic const u8 enc_nonce034[] __initconst = {
24618c2ecf20Sopenharmony_ci	0x04, 0xa9, 0xbe, 0x03, 0x50, 0x8a, 0x5f, 0x31,
24628c2ecf20Sopenharmony_ci	0x37, 0x1a, 0x6f, 0xd2
24638c2ecf20Sopenharmony_ci};
24648c2ecf20Sopenharmony_cistatic const u8 enc_key034[] __initconst = {
24658c2ecf20Sopenharmony_ci	0x2e, 0xb5, 0x1c, 0x46, 0x9a, 0xa8, 0xeb, 0x9e,
24668c2ecf20Sopenharmony_ci	0x6c, 0x54, 0xa8, 0x34, 0x9b, 0xae, 0x50, 0xa2,
24678c2ecf20Sopenharmony_ci	0x0f, 0x0e, 0x38, 0x27, 0x11, 0xbb, 0xa1, 0x15,
24688c2ecf20Sopenharmony_ci	0x2c, 0x42, 0x4f, 0x03, 0xb6, 0x67, 0x1d, 0x71
24698c2ecf20Sopenharmony_ci};
24708c2ecf20Sopenharmony_ci
24718c2ecf20Sopenharmony_ci/* wycheproof - misc */
24728c2ecf20Sopenharmony_cistatic const u8 enc_input035[] __initconst = {
24738c2ecf20Sopenharmony_ci	0xf4, 0x52, 0x06, 0xab, 0xc2, 0x55, 0x52, 0xb2,
24748c2ecf20Sopenharmony_ci	0xab, 0xc9, 0xab, 0x7f, 0xa2, 0x43, 0x03, 0x5f,
24758c2ecf20Sopenharmony_ci	0xed, 0xaa, 0xdd, 0xc3, 0xb2, 0x29, 0x39, 0x56,
24768c2ecf20Sopenharmony_ci	0xf1, 0xea, 0x6e, 0x71, 0x56, 0xe7, 0xeb
24778c2ecf20Sopenharmony_ci};
24788c2ecf20Sopenharmony_cistatic const u8 enc_output035[] __initconst = {
24798c2ecf20Sopenharmony_ci	0x46, 0xa8, 0x0c, 0x41, 0x87, 0x02, 0x47, 0x20,
24808c2ecf20Sopenharmony_ci	0x08, 0x46, 0x27, 0x58, 0x00, 0x80, 0xdd, 0xe5,
24818c2ecf20Sopenharmony_ci	0xa3, 0xf4, 0xa1, 0x10, 0x93, 0xa7, 0x07, 0x6e,
24828c2ecf20Sopenharmony_ci	0xd6, 0xf3, 0xd3, 0x26, 0xbc, 0x7b, 0x70, 0x53,
24838c2ecf20Sopenharmony_ci	0x4d, 0x4a, 0xa2, 0x83, 0x5a, 0x52, 0xe7, 0x2d,
24848c2ecf20Sopenharmony_ci	0x14, 0xdf, 0x0e, 0x4f, 0x47, 0xf2, 0x5f
24858c2ecf20Sopenharmony_ci};
24868c2ecf20Sopenharmony_cistatic const u8 enc_assoc035[] __initconst = {
24878c2ecf20Sopenharmony_ci	0x37, 0x46, 0x18, 0xa0, 0x6e, 0xa9, 0x8a, 0x48
24888c2ecf20Sopenharmony_ci};
24898c2ecf20Sopenharmony_cistatic const u8 enc_nonce035[] __initconst = {
24908c2ecf20Sopenharmony_ci	0x47, 0x0a, 0x33, 0x9e, 0xcb, 0x32, 0x19, 0xb8,
24918c2ecf20Sopenharmony_ci	0xb8, 0x1a, 0x1f, 0x8b
24928c2ecf20Sopenharmony_ci};
24938c2ecf20Sopenharmony_cistatic const u8 enc_key035[] __initconst = {
24948c2ecf20Sopenharmony_ci	0x7f, 0x5b, 0x74, 0xc0, 0x7e, 0xd1, 0xb4, 0x0f,
24958c2ecf20Sopenharmony_ci	0xd1, 0x43, 0x58, 0xfe, 0x2f, 0xf2, 0xa7, 0x40,
24968c2ecf20Sopenharmony_ci	0xc1, 0x16, 0xc7, 0x70, 0x65, 0x10, 0xe6, 0xa4,
24978c2ecf20Sopenharmony_ci	0x37, 0xf1, 0x9e, 0xa4, 0x99, 0x11, 0xce, 0xc4
24988c2ecf20Sopenharmony_ci};
24998c2ecf20Sopenharmony_ci
25008c2ecf20Sopenharmony_ci/* wycheproof - misc */
25018c2ecf20Sopenharmony_cistatic const u8 enc_input036[] __initconst = {
25028c2ecf20Sopenharmony_ci	0xb9, 0xc5, 0x54, 0xcb, 0xc3, 0x6a, 0xc1, 0x8a,
25038c2ecf20Sopenharmony_ci	0xe8, 0x97, 0xdf, 0x7b, 0xee, 0xca, 0xc1, 0xdb,
25048c2ecf20Sopenharmony_ci	0xeb, 0x4e, 0xaf, 0xa1, 0x56, 0xbb, 0x60, 0xce,
25058c2ecf20Sopenharmony_ci	0x2e, 0x5d, 0x48, 0xf0, 0x57, 0x15, 0xe6, 0x78
25068c2ecf20Sopenharmony_ci};
25078c2ecf20Sopenharmony_cistatic const u8 enc_output036[] __initconst = {
25088c2ecf20Sopenharmony_ci	0xea, 0x29, 0xaf, 0xa4, 0x9d, 0x36, 0xe8, 0x76,
25098c2ecf20Sopenharmony_ci	0x0f, 0x5f, 0xe1, 0x97, 0x23, 0xb9, 0x81, 0x1e,
25108c2ecf20Sopenharmony_ci	0xd5, 0xd5, 0x19, 0x93, 0x4a, 0x44, 0x0f, 0x50,
25118c2ecf20Sopenharmony_ci	0x81, 0xac, 0x43, 0x0b, 0x95, 0x3b, 0x0e, 0x21,
25128c2ecf20Sopenharmony_ci	0x22, 0x25, 0x41, 0xaf, 0x46, 0xb8, 0x65, 0x33,
25138c2ecf20Sopenharmony_ci	0xc6, 0xb6, 0x8d, 0x2f, 0xf1, 0x08, 0xa7, 0xea
25148c2ecf20Sopenharmony_ci};
25158c2ecf20Sopenharmony_cistatic const u8 enc_assoc036[] __initconst = { };
25168c2ecf20Sopenharmony_cistatic const u8 enc_nonce036[] __initconst = {
25178c2ecf20Sopenharmony_ci	0x72, 0xcf, 0xd9, 0x0e, 0xf3, 0x02, 0x6c, 0xa2,
25188c2ecf20Sopenharmony_ci	0x2b, 0x7e, 0x6e, 0x6a
25198c2ecf20Sopenharmony_ci};
25208c2ecf20Sopenharmony_cistatic const u8 enc_key036[] __initconst = {
25218c2ecf20Sopenharmony_ci	0xe1, 0x73, 0x1d, 0x58, 0x54, 0xe1, 0xb7, 0x0c,
25228c2ecf20Sopenharmony_ci	0xb3, 0xff, 0xe8, 0xb7, 0x86, 0xa2, 0xb3, 0xeb,
25238c2ecf20Sopenharmony_ci	0xf0, 0x99, 0x43, 0x70, 0x95, 0x47, 0x57, 0xb9,
25248c2ecf20Sopenharmony_ci	0xdc, 0x8c, 0x7b, 0xc5, 0x35, 0x46, 0x34, 0xa3
25258c2ecf20Sopenharmony_ci};
25268c2ecf20Sopenharmony_ci
25278c2ecf20Sopenharmony_ci/* wycheproof - misc */
25288c2ecf20Sopenharmony_cistatic const u8 enc_input037[] __initconst = {
25298c2ecf20Sopenharmony_ci	0x6b, 0x26, 0x04, 0x99, 0x6c, 0xd3, 0x0c, 0x14,
25308c2ecf20Sopenharmony_ci	0xa1, 0x3a, 0x52, 0x57, 0xed, 0x6c, 0xff, 0xd3,
25318c2ecf20Sopenharmony_ci	0xbc, 0x5e, 0x29, 0xd6, 0xb9, 0x7e, 0xb1, 0x79,
25328c2ecf20Sopenharmony_ci	0x9e, 0xb3, 0x35, 0xe2, 0x81, 0xea, 0x45, 0x1e
25338c2ecf20Sopenharmony_ci};
25348c2ecf20Sopenharmony_cistatic const u8 enc_output037[] __initconst = {
25358c2ecf20Sopenharmony_ci	0x6d, 0xad, 0x63, 0x78, 0x97, 0x54, 0x4d, 0x8b,
25368c2ecf20Sopenharmony_ci	0xf6, 0xbe, 0x95, 0x07, 0xed, 0x4d, 0x1b, 0xb2,
25378c2ecf20Sopenharmony_ci	0xe9, 0x54, 0xbc, 0x42, 0x7e, 0x5d, 0xe7, 0x29,
25388c2ecf20Sopenharmony_ci	0xda, 0xf5, 0x07, 0x62, 0x84, 0x6f, 0xf2, 0xf4,
25398c2ecf20Sopenharmony_ci	0x7b, 0x99, 0x7d, 0x93, 0xc9, 0x82, 0x18, 0x9d,
25408c2ecf20Sopenharmony_ci	0x70, 0x95, 0xdc, 0x79, 0x4c, 0x74, 0x62, 0x32
25418c2ecf20Sopenharmony_ci};
25428c2ecf20Sopenharmony_cistatic const u8 enc_assoc037[] __initconst = {
25438c2ecf20Sopenharmony_ci	0x23, 0x33, 0xe5, 0xce, 0x0f, 0x93, 0xb0, 0x59
25448c2ecf20Sopenharmony_ci};
25458c2ecf20Sopenharmony_cistatic const u8 enc_nonce037[] __initconst = {
25468c2ecf20Sopenharmony_ci	0x26, 0x28, 0x80, 0xd4, 0x75, 0xf3, 0xda, 0xc5,
25478c2ecf20Sopenharmony_ci	0x34, 0x0d, 0xd1, 0xb8
25488c2ecf20Sopenharmony_ci};
25498c2ecf20Sopenharmony_cistatic const u8 enc_key037[] __initconst = {
25508c2ecf20Sopenharmony_ci	0x27, 0xd8, 0x60, 0x63, 0x1b, 0x04, 0x85, 0xa4,
25518c2ecf20Sopenharmony_ci	0x10, 0x70, 0x2f, 0xea, 0x61, 0xbc, 0x87, 0x3f,
25528c2ecf20Sopenharmony_ci	0x34, 0x42, 0x26, 0x0c, 0xad, 0xed, 0x4a, 0xbd,
25538c2ecf20Sopenharmony_ci	0xe2, 0x5b, 0x78, 0x6a, 0x2d, 0x97, 0xf1, 0x45
25548c2ecf20Sopenharmony_ci};
25558c2ecf20Sopenharmony_ci
25568c2ecf20Sopenharmony_ci/* wycheproof - misc */
25578c2ecf20Sopenharmony_cistatic const u8 enc_input038[] __initconst = {
25588c2ecf20Sopenharmony_ci	0x97, 0x3d, 0x0c, 0x75, 0x38, 0x26, 0xba, 0xe4,
25598c2ecf20Sopenharmony_ci	0x66, 0xcf, 0x9a, 0xbb, 0x34, 0x93, 0x15, 0x2e,
25608c2ecf20Sopenharmony_ci	0x9d, 0xe7, 0x81, 0x9e, 0x2b, 0xd0, 0xc7, 0x11,
25618c2ecf20Sopenharmony_ci	0x71, 0x34, 0x6b, 0x4d, 0x2c, 0xeb, 0xf8, 0x04,
25628c2ecf20Sopenharmony_ci	0x1a, 0xa3, 0xce, 0xdc, 0x0d, 0xfd, 0x7b, 0x46,
25638c2ecf20Sopenharmony_ci	0x7e, 0x26, 0x22, 0x8b, 0xc8, 0x6c, 0x9a
25648c2ecf20Sopenharmony_ci};
25658c2ecf20Sopenharmony_cistatic const u8 enc_output038[] __initconst = {
25668c2ecf20Sopenharmony_ci	0xfb, 0xa7, 0x8a, 0xe4, 0xf9, 0xd8, 0x08, 0xa6,
25678c2ecf20Sopenharmony_ci	0x2e, 0x3d, 0xa4, 0x0b, 0xe2, 0xcb, 0x77, 0x00,
25688c2ecf20Sopenharmony_ci	0xc3, 0x61, 0x3d, 0x9e, 0xb2, 0xc5, 0x29, 0xc6,
25698c2ecf20Sopenharmony_ci	0x52, 0xe7, 0x6a, 0x43, 0x2c, 0x65, 0x8d, 0x27,
25708c2ecf20Sopenharmony_ci	0x09, 0x5f, 0x0e, 0xb8, 0xf9, 0x40, 0xc3, 0x24,
25718c2ecf20Sopenharmony_ci	0x98, 0x1e, 0xa9, 0x35, 0xe5, 0x07, 0xf9, 0x8f,
25728c2ecf20Sopenharmony_ci	0x04, 0x69, 0x56, 0xdb, 0x3a, 0x51, 0x29, 0x08,
25738c2ecf20Sopenharmony_ci	0xbd, 0x7a, 0xfc, 0x8f, 0x2a, 0xb0, 0xa9
25748c2ecf20Sopenharmony_ci};
25758c2ecf20Sopenharmony_cistatic const u8 enc_assoc038[] __initconst = { };
25768c2ecf20Sopenharmony_cistatic const u8 enc_nonce038[] __initconst = {
25778c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x51, 0x5e, 0x7e, 0x21, 0x02, 0xb9,
25788c2ecf20Sopenharmony_ci	0x0b, 0xef, 0x55, 0xd2
25798c2ecf20Sopenharmony_ci};
25808c2ecf20Sopenharmony_cistatic const u8 enc_key038[] __initconst = {
25818c2ecf20Sopenharmony_ci	0xcf, 0x0d, 0x40, 0xa4, 0x64, 0x4e, 0x5f, 0x51,
25828c2ecf20Sopenharmony_ci	0x81, 0x51, 0x65, 0xd5, 0x30, 0x1b, 0x22, 0x63,
25838c2ecf20Sopenharmony_ci	0x1f, 0x45, 0x44, 0xc4, 0x9a, 0x18, 0x78, 0xe3,
25848c2ecf20Sopenharmony_ci	0xa0, 0xa5, 0xe8, 0xe1, 0xaa, 0xe0, 0xf2, 0x64
25858c2ecf20Sopenharmony_ci};
25868c2ecf20Sopenharmony_ci
25878c2ecf20Sopenharmony_ci/* wycheproof - misc */
25888c2ecf20Sopenharmony_cistatic const u8 enc_input039[] __initconst = {
25898c2ecf20Sopenharmony_ci	0xa9, 0x89, 0x95, 0x50, 0x4d, 0xf1, 0x6f, 0x74,
25908c2ecf20Sopenharmony_ci	0x8b, 0xfb, 0x77, 0x85, 0xff, 0x91, 0xee, 0xb3,
25918c2ecf20Sopenharmony_ci	0xb6, 0x60, 0xea, 0x9e, 0xd3, 0x45, 0x0c, 0x3d,
25928c2ecf20Sopenharmony_ci	0x5e, 0x7b, 0x0e, 0x79, 0xef, 0x65, 0x36, 0x59,
25938c2ecf20Sopenharmony_ci	0xa9, 0x97, 0x8d, 0x75, 0x54, 0x2e, 0xf9, 0x1c,
25948c2ecf20Sopenharmony_ci	0x45, 0x67, 0x62, 0x21, 0x56, 0x40, 0xb9
25958c2ecf20Sopenharmony_ci};
25968c2ecf20Sopenharmony_cistatic const u8 enc_output039[] __initconst = {
25978c2ecf20Sopenharmony_ci	0xa1, 0xff, 0xed, 0x80, 0x76, 0x18, 0x29, 0xec,
25988c2ecf20Sopenharmony_ci	0xce, 0x24, 0x2e, 0x0e, 0x88, 0xb1, 0x38, 0x04,
25998c2ecf20Sopenharmony_ci	0x90, 0x16, 0xbc, 0xa0, 0x18, 0xda, 0x2b, 0x6e,
26008c2ecf20Sopenharmony_ci	0x19, 0x98, 0x6b, 0x3e, 0x31, 0x8c, 0xae, 0x8d,
26018c2ecf20Sopenharmony_ci	0x80, 0x61, 0x98, 0xfb, 0x4c, 0x52, 0x7c, 0xc3,
26028c2ecf20Sopenharmony_ci	0x93, 0x50, 0xeb, 0xdd, 0xea, 0xc5, 0x73, 0xc4,
26038c2ecf20Sopenharmony_ci	0xcb, 0xf0, 0xbe, 0xfd, 0xa0, 0xb7, 0x02, 0x42,
26048c2ecf20Sopenharmony_ci	0xc6, 0x40, 0xd7, 0xcd, 0x02, 0xd7, 0xa3
26058c2ecf20Sopenharmony_ci};
26068c2ecf20Sopenharmony_cistatic const u8 enc_assoc039[] __initconst = {
26078c2ecf20Sopenharmony_ci	0xb3, 0xe4, 0x06, 0x46, 0x83, 0xb0, 0x2d, 0x84
26088c2ecf20Sopenharmony_ci};
26098c2ecf20Sopenharmony_cistatic const u8 enc_nonce039[] __initconst = {
26108c2ecf20Sopenharmony_ci	0xd4, 0xd8, 0x07, 0x34, 0x16, 0x83, 0x82, 0x5b,
26118c2ecf20Sopenharmony_ci	0x31, 0xcd, 0x4d, 0x95
26128c2ecf20Sopenharmony_ci};
26138c2ecf20Sopenharmony_cistatic const u8 enc_key039[] __initconst = {
26148c2ecf20Sopenharmony_ci	0x6c, 0xbf, 0xd7, 0x1c, 0x64, 0x5d, 0x18, 0x4c,
26158c2ecf20Sopenharmony_ci	0xf5, 0xd2, 0x3c, 0x40, 0x2b, 0xdb, 0x0d, 0x25,
26168c2ecf20Sopenharmony_ci	0xec, 0x54, 0x89, 0x8c, 0x8a, 0x02, 0x73, 0xd4,
26178c2ecf20Sopenharmony_ci	0x2e, 0xb5, 0xbe, 0x10, 0x9f, 0xdc, 0xb2, 0xac
26188c2ecf20Sopenharmony_ci};
26198c2ecf20Sopenharmony_ci
26208c2ecf20Sopenharmony_ci/* wycheproof - misc */
26218c2ecf20Sopenharmony_cistatic const u8 enc_input040[] __initconst = {
26228c2ecf20Sopenharmony_ci	0xd0, 0x96, 0x80, 0x31, 0x81, 0xbe, 0xef, 0x9e,
26238c2ecf20Sopenharmony_ci	0x00, 0x8f, 0xf8, 0x5d, 0x5d, 0xdc, 0x38, 0xdd,
26248c2ecf20Sopenharmony_ci	0xac, 0xf0, 0xf0, 0x9e, 0xe5, 0xf7, 0xe0, 0x7f,
26258c2ecf20Sopenharmony_ci	0x1e, 0x40, 0x79, 0xcb, 0x64, 0xd0, 0xdc, 0x8f,
26268c2ecf20Sopenharmony_ci	0x5e, 0x67, 0x11, 0xcd, 0x49, 0x21, 0xa7, 0x88,
26278c2ecf20Sopenharmony_ci	0x7d, 0xe7, 0x6e, 0x26, 0x78, 0xfd, 0xc6, 0x76,
26288c2ecf20Sopenharmony_ci	0x18, 0xf1, 0x18, 0x55, 0x86, 0xbf, 0xea, 0x9d,
26298c2ecf20Sopenharmony_ci	0x4c, 0x68, 0x5d, 0x50, 0xe4, 0xbb, 0x9a, 0x82
26308c2ecf20Sopenharmony_ci};
26318c2ecf20Sopenharmony_cistatic const u8 enc_output040[] __initconst = {
26328c2ecf20Sopenharmony_ci	0x9a, 0x4e, 0xf2, 0x2b, 0x18, 0x16, 0x77, 0xb5,
26338c2ecf20Sopenharmony_ci	0x75, 0x5c, 0x08, 0xf7, 0x47, 0xc0, 0xf8, 0xd8,
26348c2ecf20Sopenharmony_ci	0xe8, 0xd4, 0xc1, 0x8a, 0x9c, 0xc2, 0x40, 0x5c,
26358c2ecf20Sopenharmony_ci	0x12, 0xbb, 0x51, 0xbb, 0x18, 0x72, 0xc8, 0xe8,
26368c2ecf20Sopenharmony_ci	0xb8, 0x77, 0x67, 0x8b, 0xec, 0x44, 0x2c, 0xfc,
26378c2ecf20Sopenharmony_ci	0xbb, 0x0f, 0xf4, 0x64, 0xa6, 0x4b, 0x74, 0x33,
26388c2ecf20Sopenharmony_ci	0x2c, 0xf0, 0x72, 0x89, 0x8c, 0x7e, 0x0e, 0xdd,
26398c2ecf20Sopenharmony_ci	0xf6, 0x23, 0x2e, 0xa6, 0xe2, 0x7e, 0xfe, 0x50,
26408c2ecf20Sopenharmony_ci	0x9f, 0xf3, 0x42, 0x7a, 0x0f, 0x32, 0xfa, 0x56,
26418c2ecf20Sopenharmony_ci	0x6d, 0x9c, 0xa0, 0xa7, 0x8a, 0xef, 0xc0, 0x13
26428c2ecf20Sopenharmony_ci};
26438c2ecf20Sopenharmony_cistatic const u8 enc_assoc040[] __initconst = { };
26448c2ecf20Sopenharmony_cistatic const u8 enc_nonce040[] __initconst = {
26458c2ecf20Sopenharmony_ci	0xd6, 0x10, 0x40, 0xa3, 0x13, 0xed, 0x49, 0x28,
26468c2ecf20Sopenharmony_ci	0x23, 0xcc, 0x06, 0x5b
26478c2ecf20Sopenharmony_ci};
26488c2ecf20Sopenharmony_cistatic const u8 enc_key040[] __initconst = {
26498c2ecf20Sopenharmony_ci	0x5b, 0x1d, 0x10, 0x35, 0xc0, 0xb1, 0x7e, 0xe0,
26508c2ecf20Sopenharmony_ci	0xb0, 0x44, 0x47, 0x67, 0xf8, 0x0a, 0x25, 0xb8,
26518c2ecf20Sopenharmony_ci	0xc1, 0xb7, 0x41, 0xf4, 0xb5, 0x0a, 0x4d, 0x30,
26528c2ecf20Sopenharmony_ci	0x52, 0x22, 0x6b, 0xaa, 0x1c, 0x6f, 0xb7, 0x01
26538c2ecf20Sopenharmony_ci};
26548c2ecf20Sopenharmony_ci
26558c2ecf20Sopenharmony_ci/* wycheproof - misc */
26568c2ecf20Sopenharmony_cistatic const u8 enc_input041[] __initconst = {
26578c2ecf20Sopenharmony_ci	0x94, 0xee, 0x16, 0x6d, 0x6d, 0x6e, 0xcf, 0x88,
26588c2ecf20Sopenharmony_ci	0x32, 0x43, 0x71, 0x36, 0xb4, 0xae, 0x80, 0x5d,
26598c2ecf20Sopenharmony_ci	0x42, 0x88, 0x64, 0x35, 0x95, 0x86, 0xd9, 0x19,
26608c2ecf20Sopenharmony_ci	0x3a, 0x25, 0x01, 0x62, 0x93, 0xed, 0xba, 0x44,
26618c2ecf20Sopenharmony_ci	0x3c, 0x58, 0xe0, 0x7e, 0x7b, 0x71, 0x95, 0xec,
26628c2ecf20Sopenharmony_ci	0x5b, 0xd8, 0x45, 0x82, 0xa9, 0xd5, 0x6c, 0x8d,
26638c2ecf20Sopenharmony_ci	0x4a, 0x10, 0x8c, 0x7d, 0x7c, 0xe3, 0x4e, 0x6c,
26648c2ecf20Sopenharmony_ci	0x6f, 0x8e, 0xa1, 0xbe, 0xc0, 0x56, 0x73, 0x17
26658c2ecf20Sopenharmony_ci};
26668c2ecf20Sopenharmony_cistatic const u8 enc_output041[] __initconst = {
26678c2ecf20Sopenharmony_ci	0x5f, 0xbb, 0xde, 0xcc, 0x34, 0xbe, 0x20, 0x16,
26688c2ecf20Sopenharmony_ci	0x14, 0xf6, 0x36, 0x03, 0x1e, 0xeb, 0x42, 0xf1,
26698c2ecf20Sopenharmony_ci	0xca, 0xce, 0x3c, 0x79, 0xa1, 0x2c, 0xff, 0xd8,
26708c2ecf20Sopenharmony_ci	0x71, 0xee, 0x8e, 0x73, 0x82, 0x0c, 0x82, 0x97,
26718c2ecf20Sopenharmony_ci	0x49, 0xf1, 0xab, 0xb4, 0x29, 0x43, 0x67, 0x84,
26728c2ecf20Sopenharmony_ci	0x9f, 0xb6, 0xc2, 0xaa, 0x56, 0xbd, 0xa8, 0xa3,
26738c2ecf20Sopenharmony_ci	0x07, 0x8f, 0x72, 0x3d, 0x7c, 0x1c, 0x85, 0x20,
26748c2ecf20Sopenharmony_ci	0x24, 0xb0, 0x17, 0xb5, 0x89, 0x73, 0xfb, 0x1e,
26758c2ecf20Sopenharmony_ci	0x09, 0x26, 0x3d, 0xa7, 0xb4, 0xcb, 0x92, 0x14,
26768c2ecf20Sopenharmony_ci	0x52, 0xf9, 0x7d, 0xca, 0x40, 0xf5, 0x80, 0xec
26778c2ecf20Sopenharmony_ci};
26788c2ecf20Sopenharmony_cistatic const u8 enc_assoc041[] __initconst = {
26798c2ecf20Sopenharmony_ci	0x71, 0x93, 0xf6, 0x23, 0x66, 0x33, 0x21, 0xa2
26808c2ecf20Sopenharmony_ci};
26818c2ecf20Sopenharmony_cistatic const u8 enc_nonce041[] __initconst = {
26828c2ecf20Sopenharmony_ci	0xd3, 0x1c, 0x21, 0xab, 0xa1, 0x75, 0xb7, 0x0d,
26838c2ecf20Sopenharmony_ci	0xe4, 0xeb, 0xb1, 0x9c
26848c2ecf20Sopenharmony_ci};
26858c2ecf20Sopenharmony_cistatic const u8 enc_key041[] __initconst = {
26868c2ecf20Sopenharmony_ci	0x97, 0xd6, 0x35, 0xc4, 0xf4, 0x75, 0x74, 0xd9,
26878c2ecf20Sopenharmony_ci	0x99, 0x8a, 0x90, 0x87, 0x5d, 0xa1, 0xd3, 0xa2,
26888c2ecf20Sopenharmony_ci	0x84, 0xb7, 0x55, 0xb2, 0xd3, 0x92, 0x97, 0xa5,
26898c2ecf20Sopenharmony_ci	0x72, 0x52, 0x35, 0x19, 0x0e, 0x10, 0xa9, 0x7e
26908c2ecf20Sopenharmony_ci};
26918c2ecf20Sopenharmony_ci
26928c2ecf20Sopenharmony_ci/* wycheproof - misc */
26938c2ecf20Sopenharmony_cistatic const u8 enc_input042[] __initconst = {
26948c2ecf20Sopenharmony_ci	0xb4, 0x29, 0xeb, 0x80, 0xfb, 0x8f, 0xe8, 0xba,
26958c2ecf20Sopenharmony_ci	0xed, 0xa0, 0xc8, 0x5b, 0x9c, 0x33, 0x34, 0x58,
26968c2ecf20Sopenharmony_ci	0xe7, 0xc2, 0x99, 0x2e, 0x55, 0x84, 0x75, 0x06,
26978c2ecf20Sopenharmony_ci	0x9d, 0x12, 0xd4, 0x5c, 0x22, 0x21, 0x75, 0x64,
26988c2ecf20Sopenharmony_ci	0x12, 0x15, 0x88, 0x03, 0x22, 0x97, 0xef, 0xf5,
26998c2ecf20Sopenharmony_ci	0x67, 0x83, 0x74, 0x2a, 0x5f, 0xc2, 0x2d, 0x74,
27008c2ecf20Sopenharmony_ci	0x10, 0xff, 0xb2, 0x9d, 0x66, 0x09, 0x86, 0x61,
27018c2ecf20Sopenharmony_ci	0xd7, 0x6f, 0x12, 0x6c, 0x3c, 0x27, 0x68, 0x9e,
27028c2ecf20Sopenharmony_ci	0x43, 0xb3, 0x72, 0x67, 0xca, 0xc5, 0xa3, 0xa6,
27038c2ecf20Sopenharmony_ci	0xd3, 0xab, 0x49, 0xe3, 0x91, 0xda, 0x29, 0xcd,
27048c2ecf20Sopenharmony_ci	0x30, 0x54, 0xa5, 0x69, 0x2e, 0x28, 0x07, 0xe4,
27058c2ecf20Sopenharmony_ci	0xc3, 0xea, 0x46, 0xc8, 0x76, 0x1d, 0x50, 0xf5,
27068c2ecf20Sopenharmony_ci	0x92
27078c2ecf20Sopenharmony_ci};
27088c2ecf20Sopenharmony_cistatic const u8 enc_output042[] __initconst = {
27098c2ecf20Sopenharmony_ci	0xd0, 0x10, 0x2f, 0x6c, 0x25, 0x8b, 0xf4, 0x97,
27108c2ecf20Sopenharmony_ci	0x42, 0xce, 0xc3, 0x4c, 0xf2, 0xd0, 0xfe, 0xdf,
27118c2ecf20Sopenharmony_ci	0x23, 0xd1, 0x05, 0xfb, 0x4c, 0x84, 0xcf, 0x98,
27128c2ecf20Sopenharmony_ci	0x51, 0x5e, 0x1b, 0xc9, 0xa6, 0x4f, 0x8a, 0xd5,
27138c2ecf20Sopenharmony_ci	0xbe, 0x8f, 0x07, 0x21, 0xbd, 0xe5, 0x06, 0x45,
27148c2ecf20Sopenharmony_ci	0xd0, 0x00, 0x83, 0xc3, 0xa2, 0x63, 0xa3, 0x10,
27158c2ecf20Sopenharmony_ci	0x53, 0xb7, 0x60, 0x24, 0x5f, 0x52, 0xae, 0x28,
27168c2ecf20Sopenharmony_ci	0x66, 0xa5, 0xec, 0x83, 0xb1, 0x9f, 0x61, 0xbe,
27178c2ecf20Sopenharmony_ci	0x1d, 0x30, 0xd5, 0xc5, 0xd9, 0xfe, 0xcc, 0x4c,
27188c2ecf20Sopenharmony_ci	0xbb, 0xe0, 0x8f, 0xd3, 0x85, 0x81, 0x3a, 0x2a,
27198c2ecf20Sopenharmony_ci	0xa3, 0x9a, 0x00, 0xff, 0x9c, 0x10, 0xf7, 0xf2,
27208c2ecf20Sopenharmony_ci	0x37, 0x02, 0xad, 0xd1, 0xe4, 0xb2, 0xff, 0xa3,
27218c2ecf20Sopenharmony_ci	0x1c, 0x41, 0x86, 0x5f, 0xc7, 0x1d, 0xe1, 0x2b,
27228c2ecf20Sopenharmony_ci	0x19, 0x61, 0x21, 0x27, 0xce, 0x49, 0x99, 0x3b,
27238c2ecf20Sopenharmony_ci	0xb0
27248c2ecf20Sopenharmony_ci};
27258c2ecf20Sopenharmony_cistatic const u8 enc_assoc042[] __initconst = { };
27268c2ecf20Sopenharmony_cistatic const u8 enc_nonce042[] __initconst = {
27278c2ecf20Sopenharmony_ci	0x17, 0xc8, 0x6a, 0x8a, 0xbb, 0xb7, 0xe0, 0x03,
27288c2ecf20Sopenharmony_ci	0xac, 0xde, 0x27, 0x99
27298c2ecf20Sopenharmony_ci};
27308c2ecf20Sopenharmony_cistatic const u8 enc_key042[] __initconst = {
27318c2ecf20Sopenharmony_ci	0xfe, 0x6e, 0x55, 0xbd, 0xae, 0xd1, 0xf7, 0x28,
27328c2ecf20Sopenharmony_ci	0x4c, 0xa5, 0xfc, 0x0f, 0x8c, 0x5f, 0x2b, 0x8d,
27338c2ecf20Sopenharmony_ci	0xf5, 0x6d, 0xc0, 0xf4, 0x9e, 0x8c, 0xa6, 0x6a,
27348c2ecf20Sopenharmony_ci	0x41, 0x99, 0x5e, 0x78, 0x33, 0x51, 0xf9, 0x01
27358c2ecf20Sopenharmony_ci};
27368c2ecf20Sopenharmony_ci
27378c2ecf20Sopenharmony_ci/* wycheproof - misc */
27388c2ecf20Sopenharmony_cistatic const u8 enc_input043[] __initconst = {
27398c2ecf20Sopenharmony_ci	0xce, 0xb5, 0x34, 0xce, 0x50, 0xdc, 0x23, 0xff,
27408c2ecf20Sopenharmony_ci	0x63, 0x8a, 0xce, 0x3e, 0xf6, 0x3a, 0xb2, 0xcc,
27418c2ecf20Sopenharmony_ci	0x29, 0x73, 0xee, 0xad, 0xa8, 0x07, 0x85, 0xfc,
27428c2ecf20Sopenharmony_ci	0x16, 0x5d, 0x06, 0xc2, 0xf5, 0x10, 0x0f, 0xf5,
27438c2ecf20Sopenharmony_ci	0xe8, 0xab, 0x28, 0x82, 0xc4, 0x75, 0xaf, 0xcd,
27448c2ecf20Sopenharmony_ci	0x05, 0xcc, 0xd4, 0x9f, 0x2e, 0x7d, 0x8f, 0x55,
27458c2ecf20Sopenharmony_ci	0xef, 0x3a, 0x72, 0xe3, 0xdc, 0x51, 0xd6, 0x85,
27468c2ecf20Sopenharmony_ci	0x2b, 0x8e, 0x6b, 0x9e, 0x7a, 0xec, 0xe5, 0x7b,
27478c2ecf20Sopenharmony_ci	0xe6, 0x55, 0x6b, 0x0b, 0x6d, 0x94, 0x13, 0xe3,
27488c2ecf20Sopenharmony_ci	0x3f, 0xc5, 0xfc, 0x24, 0xa9, 0xa2, 0x05, 0xad,
27498c2ecf20Sopenharmony_ci	0x59, 0x57, 0x4b, 0xb3, 0x9d, 0x94, 0x4a, 0x92,
27508c2ecf20Sopenharmony_ci	0xdc, 0x47, 0x97, 0x0d, 0x84, 0xa6, 0xad, 0x31,
27518c2ecf20Sopenharmony_ci	0x76
27528c2ecf20Sopenharmony_ci};
27538c2ecf20Sopenharmony_cistatic const u8 enc_output043[] __initconst = {
27548c2ecf20Sopenharmony_ci	0x75, 0x45, 0x39, 0x1b, 0x51, 0xde, 0x01, 0xd5,
27558c2ecf20Sopenharmony_ci	0xc5, 0x3d, 0xfa, 0xca, 0x77, 0x79, 0x09, 0x06,
27568c2ecf20Sopenharmony_ci	0x3e, 0x58, 0xed, 0xee, 0x4b, 0xb1, 0x22, 0x7e,
27578c2ecf20Sopenharmony_ci	0x71, 0x10, 0xac, 0x4d, 0x26, 0x20, 0xc2, 0xae,
27588c2ecf20Sopenharmony_ci	0xc2, 0xf8, 0x48, 0xf5, 0x6d, 0xee, 0xb0, 0x37,
27598c2ecf20Sopenharmony_ci	0xa8, 0xdc, 0xed, 0x75, 0xaf, 0xa8, 0xa6, 0xc8,
27608c2ecf20Sopenharmony_ci	0x90, 0xe2, 0xde, 0xe4, 0x2f, 0x95, 0x0b, 0xb3,
27618c2ecf20Sopenharmony_ci	0x3d, 0x9e, 0x24, 0x24, 0xd0, 0x8a, 0x50, 0x5d,
27628c2ecf20Sopenharmony_ci	0x89, 0x95, 0x63, 0x97, 0x3e, 0xd3, 0x88, 0x70,
27638c2ecf20Sopenharmony_ci	0xf3, 0xde, 0x6e, 0xe2, 0xad, 0xc7, 0xfe, 0x07,
27648c2ecf20Sopenharmony_ci	0x2c, 0x36, 0x6c, 0x14, 0xe2, 0xcf, 0x7c, 0xa6,
27658c2ecf20Sopenharmony_ci	0x2f, 0xb3, 0xd3, 0x6b, 0xee, 0x11, 0x68, 0x54,
27668c2ecf20Sopenharmony_ci	0x61, 0xb7, 0x0d, 0x44, 0xef, 0x8c, 0x66, 0xc5,
27678c2ecf20Sopenharmony_ci	0xc7, 0xbb, 0xf1, 0x0d, 0xca, 0xdd, 0x7f, 0xac,
27688c2ecf20Sopenharmony_ci	0xf6
27698c2ecf20Sopenharmony_ci};
27708c2ecf20Sopenharmony_cistatic const u8 enc_assoc043[] __initconst = {
27718c2ecf20Sopenharmony_ci	0xa1, 0x1c, 0x40, 0xb6, 0x03, 0x76, 0x73, 0x30
27728c2ecf20Sopenharmony_ci};
27738c2ecf20Sopenharmony_cistatic const u8 enc_nonce043[] __initconst = {
27748c2ecf20Sopenharmony_ci	0x46, 0x36, 0x2f, 0x45, 0xd6, 0x37, 0x9e, 0x63,
27758c2ecf20Sopenharmony_ci	0xe5, 0x22, 0x94, 0x60
27768c2ecf20Sopenharmony_ci};
27778c2ecf20Sopenharmony_cistatic const u8 enc_key043[] __initconst = {
27788c2ecf20Sopenharmony_ci	0xaa, 0xbc, 0x06, 0x34, 0x74, 0xe6, 0x5c, 0x4c,
27798c2ecf20Sopenharmony_ci	0x3e, 0x9b, 0xdc, 0x48, 0x0d, 0xea, 0x97, 0xb4,
27808c2ecf20Sopenharmony_ci	0x51, 0x10, 0xc8, 0x61, 0x88, 0x46, 0xff, 0x6b,
27818c2ecf20Sopenharmony_ci	0x15, 0xbd, 0xd2, 0xa4, 0xa5, 0x68, 0x2c, 0x4e
27828c2ecf20Sopenharmony_ci};
27838c2ecf20Sopenharmony_ci
27848c2ecf20Sopenharmony_ci/* wycheproof - misc */
27858c2ecf20Sopenharmony_cistatic const u8 enc_input044[] __initconst = {
27868c2ecf20Sopenharmony_ci	0xe5, 0xcc, 0xaa, 0x44, 0x1b, 0xc8, 0x14, 0x68,
27878c2ecf20Sopenharmony_ci	0x8f, 0x8f, 0x6e, 0x8f, 0x28, 0xb5, 0x00, 0xb2
27888c2ecf20Sopenharmony_ci};
27898c2ecf20Sopenharmony_cistatic const u8 enc_output044[] __initconst = {
27908c2ecf20Sopenharmony_ci	0x7e, 0x72, 0xf5, 0xa1, 0x85, 0xaf, 0x16, 0xa6,
27918c2ecf20Sopenharmony_ci	0x11, 0x92, 0x1b, 0x43, 0x8f, 0x74, 0x9f, 0x0b,
27928c2ecf20Sopenharmony_ci	0x12, 0x42, 0xc6, 0x70, 0x73, 0x23, 0x34, 0x02,
27938c2ecf20Sopenharmony_ci	0x9a, 0xdf, 0xe1, 0xc5, 0x00, 0x16, 0x51, 0xe4
27948c2ecf20Sopenharmony_ci};
27958c2ecf20Sopenharmony_cistatic const u8 enc_assoc044[] __initconst = {
27968c2ecf20Sopenharmony_ci	0x02
27978c2ecf20Sopenharmony_ci};
27988c2ecf20Sopenharmony_cistatic const u8 enc_nonce044[] __initconst = {
27998c2ecf20Sopenharmony_ci	0x87, 0x34, 0x5f, 0x10, 0x55, 0xfd, 0x9e, 0x21,
28008c2ecf20Sopenharmony_ci	0x02, 0xd5, 0x06, 0x56
28018c2ecf20Sopenharmony_ci};
28028c2ecf20Sopenharmony_cistatic const u8 enc_key044[] __initconst = {
28038c2ecf20Sopenharmony_ci	0x7d, 0x00, 0xb4, 0x80, 0x95, 0xad, 0xfa, 0x32,
28048c2ecf20Sopenharmony_ci	0x72, 0x05, 0x06, 0x07, 0xb2, 0x64, 0x18, 0x50,
28058c2ecf20Sopenharmony_ci	0x02, 0xba, 0x99, 0x95, 0x7c, 0x49, 0x8b, 0xe0,
28068c2ecf20Sopenharmony_ci	0x22, 0x77, 0x0f, 0x2c, 0xe2, 0xf3, 0x14, 0x3c
28078c2ecf20Sopenharmony_ci};
28088c2ecf20Sopenharmony_ci
28098c2ecf20Sopenharmony_ci/* wycheproof - misc */
28108c2ecf20Sopenharmony_cistatic const u8 enc_input045[] __initconst = {
28118c2ecf20Sopenharmony_ci	0x02, 0xcd, 0xe1, 0x68, 0xfb, 0xa3, 0xf5, 0x44,
28128c2ecf20Sopenharmony_ci	0xbb, 0xd0, 0x33, 0x2f, 0x7a, 0xde, 0xad, 0xa8
28138c2ecf20Sopenharmony_ci};
28148c2ecf20Sopenharmony_cistatic const u8 enc_output045[] __initconst = {
28158c2ecf20Sopenharmony_ci	0x85, 0xf2, 0x9a, 0x71, 0x95, 0x57, 0xcd, 0xd1,
28168c2ecf20Sopenharmony_ci	0x4d, 0x1f, 0x8f, 0xff, 0xab, 0x6d, 0x9e, 0x60,
28178c2ecf20Sopenharmony_ci	0x73, 0x2c, 0xa3, 0x2b, 0xec, 0xd5, 0x15, 0xa1,
28188c2ecf20Sopenharmony_ci	0xed, 0x35, 0x3f, 0x54, 0x2e, 0x99, 0x98, 0x58
28198c2ecf20Sopenharmony_ci};
28208c2ecf20Sopenharmony_cistatic const u8 enc_assoc045[] __initconst = {
28218c2ecf20Sopenharmony_ci	0xb6, 0x48
28228c2ecf20Sopenharmony_ci};
28238c2ecf20Sopenharmony_cistatic const u8 enc_nonce045[] __initconst = {
28248c2ecf20Sopenharmony_ci	0x87, 0xa3, 0x16, 0x3e, 0xc0, 0x59, 0x8a, 0xd9,
28258c2ecf20Sopenharmony_ci	0x5b, 0x3a, 0xa7, 0x13
28268c2ecf20Sopenharmony_ci};
28278c2ecf20Sopenharmony_cistatic const u8 enc_key045[] __initconst = {
28288c2ecf20Sopenharmony_ci	0x64, 0x32, 0x71, 0x7f, 0x1d, 0xb8, 0x5e, 0x41,
28298c2ecf20Sopenharmony_ci	0xac, 0x78, 0x36, 0xbc, 0xe2, 0x51, 0x85, 0xa0,
28308c2ecf20Sopenharmony_ci	0x80, 0xd5, 0x76, 0x2b, 0x9e, 0x2b, 0x18, 0x44,
28318c2ecf20Sopenharmony_ci	0x4b, 0x6e, 0xc7, 0x2c, 0x3b, 0xd8, 0xe4, 0xdc
28328c2ecf20Sopenharmony_ci};
28338c2ecf20Sopenharmony_ci
28348c2ecf20Sopenharmony_ci/* wycheproof - misc */
28358c2ecf20Sopenharmony_cistatic const u8 enc_input046[] __initconst = {
28368c2ecf20Sopenharmony_ci	0x16, 0xdd, 0xd2, 0x3f, 0xf5, 0x3f, 0x3d, 0x23,
28378c2ecf20Sopenharmony_ci	0xc0, 0x63, 0x34, 0x48, 0x70, 0x40, 0xeb, 0x47
28388c2ecf20Sopenharmony_ci};
28398c2ecf20Sopenharmony_cistatic const u8 enc_output046[] __initconst = {
28408c2ecf20Sopenharmony_ci	0xc1, 0xb2, 0x95, 0x93, 0x6d, 0x56, 0xfa, 0xda,
28418c2ecf20Sopenharmony_ci	0xc0, 0x3e, 0x5f, 0x74, 0x2b, 0xff, 0x73, 0xa1,
28428c2ecf20Sopenharmony_ci	0x39, 0xc4, 0x57, 0xdb, 0xab, 0x66, 0x38, 0x2b,
28438c2ecf20Sopenharmony_ci	0xab, 0xb3, 0xb5, 0x58, 0x00, 0xcd, 0xa5, 0xb8
28448c2ecf20Sopenharmony_ci};
28458c2ecf20Sopenharmony_cistatic const u8 enc_assoc046[] __initconst = {
28468c2ecf20Sopenharmony_ci	0xbd, 0x4c, 0xd0, 0x2f, 0xc7, 0x50, 0x2b, 0xbd,
28478c2ecf20Sopenharmony_ci	0xbd, 0xf6, 0xc9, 0xa3, 0xcb, 0xe8, 0xf0
28488c2ecf20Sopenharmony_ci};
28498c2ecf20Sopenharmony_cistatic const u8 enc_nonce046[] __initconst = {
28508c2ecf20Sopenharmony_ci	0x6f, 0x57, 0x3a, 0xa8, 0x6b, 0xaa, 0x49, 0x2b,
28518c2ecf20Sopenharmony_ci	0xa4, 0x65, 0x96, 0xdf
28528c2ecf20Sopenharmony_ci};
28538c2ecf20Sopenharmony_cistatic const u8 enc_key046[] __initconst = {
28548c2ecf20Sopenharmony_ci	0x8e, 0x34, 0xcf, 0x73, 0xd2, 0x45, 0xa1, 0x08,
28558c2ecf20Sopenharmony_ci	0x2a, 0x92, 0x0b, 0x86, 0x36, 0x4e, 0xb8, 0x96,
28568c2ecf20Sopenharmony_ci	0xc4, 0x94, 0x64, 0x67, 0xbc, 0xb3, 0xd5, 0x89,
28578c2ecf20Sopenharmony_ci	0x29, 0xfc, 0xb3, 0x66, 0x90, 0xe6, 0x39, 0x4f
28588c2ecf20Sopenharmony_ci};
28598c2ecf20Sopenharmony_ci
28608c2ecf20Sopenharmony_ci/* wycheproof - misc */
28618c2ecf20Sopenharmony_cistatic const u8 enc_input047[] __initconst = {
28628c2ecf20Sopenharmony_ci	0x62, 0x3b, 0x78, 0x50, 0xc3, 0x21, 0xe2, 0xcf,
28638c2ecf20Sopenharmony_ci	0x0c, 0x6f, 0xbc, 0xc8, 0xdf, 0xd1, 0xaf, 0xf2
28648c2ecf20Sopenharmony_ci};
28658c2ecf20Sopenharmony_cistatic const u8 enc_output047[] __initconst = {
28668c2ecf20Sopenharmony_ci	0xc8, 0x4c, 0x9b, 0xb7, 0xc6, 0x1c, 0x1b, 0xcb,
28678c2ecf20Sopenharmony_ci	0x17, 0x77, 0x2a, 0x1c, 0x50, 0x0c, 0x50, 0x95,
28688c2ecf20Sopenharmony_ci	0xdb, 0xad, 0xf7, 0xa5, 0x13, 0x8c, 0xa0, 0x34,
28698c2ecf20Sopenharmony_ci	0x59, 0xa2, 0xcd, 0x65, 0x83, 0x1e, 0x09, 0x2f
28708c2ecf20Sopenharmony_ci};
28718c2ecf20Sopenharmony_cistatic const u8 enc_assoc047[] __initconst = {
28728c2ecf20Sopenharmony_ci	0x89, 0xcc, 0xe9, 0xfb, 0x47, 0x44, 0x1d, 0x07,
28738c2ecf20Sopenharmony_ci	0xe0, 0x24, 0x5a, 0x66, 0xfe, 0x8b, 0x77, 0x8b
28748c2ecf20Sopenharmony_ci};
28758c2ecf20Sopenharmony_cistatic const u8 enc_nonce047[] __initconst = {
28768c2ecf20Sopenharmony_ci	0x1a, 0x65, 0x18, 0xf0, 0x2e, 0xde, 0x1d, 0xa6,
28778c2ecf20Sopenharmony_ci	0x80, 0x92, 0x66, 0xd9
28788c2ecf20Sopenharmony_ci};
28798c2ecf20Sopenharmony_cistatic const u8 enc_key047[] __initconst = {
28808c2ecf20Sopenharmony_ci	0xcb, 0x55, 0x75, 0xf5, 0xc7, 0xc4, 0x5c, 0x91,
28818c2ecf20Sopenharmony_ci	0xcf, 0x32, 0x0b, 0x13, 0x9f, 0xb5, 0x94, 0x23,
28828c2ecf20Sopenharmony_ci	0x75, 0x60, 0xd0, 0xa3, 0xe6, 0xf8, 0x65, 0xa6,
28838c2ecf20Sopenharmony_ci	0x7d, 0x4f, 0x63, 0x3f, 0x2c, 0x08, 0xf0, 0x16
28848c2ecf20Sopenharmony_ci};
28858c2ecf20Sopenharmony_ci
28868c2ecf20Sopenharmony_ci/* wycheproof - misc */
28878c2ecf20Sopenharmony_cistatic const u8 enc_input048[] __initconst = {
28888c2ecf20Sopenharmony_ci	0x87, 0xb3, 0xa4, 0xd7, 0xb2, 0x6d, 0x8d, 0x32,
28898c2ecf20Sopenharmony_ci	0x03, 0xa0, 0xde, 0x1d, 0x64, 0xef, 0x82, 0xe3
28908c2ecf20Sopenharmony_ci};
28918c2ecf20Sopenharmony_cistatic const u8 enc_output048[] __initconst = {
28928c2ecf20Sopenharmony_ci	0x94, 0xbc, 0x80, 0x62, 0x1e, 0xd1, 0xe7, 0x1b,
28938c2ecf20Sopenharmony_ci	0x1f, 0xd2, 0xb5, 0xc3, 0xa1, 0x5e, 0x35, 0x68,
28948c2ecf20Sopenharmony_ci	0x33, 0x35, 0x11, 0x86, 0x17, 0x96, 0x97, 0x84,
28958c2ecf20Sopenharmony_ci	0x01, 0x59, 0x8b, 0x96, 0x37, 0x22, 0xf5, 0xb3
28968c2ecf20Sopenharmony_ci};
28978c2ecf20Sopenharmony_cistatic const u8 enc_assoc048[] __initconst = {
28988c2ecf20Sopenharmony_ci	0xd1, 0x9f, 0x2d, 0x98, 0x90, 0x95, 0xf7, 0xab,
28998c2ecf20Sopenharmony_ci	0x03, 0xa5, 0xfd, 0xe8, 0x44, 0x16, 0xe0, 0x0c,
29008c2ecf20Sopenharmony_ci	0x0e
29018c2ecf20Sopenharmony_ci};
29028c2ecf20Sopenharmony_cistatic const u8 enc_nonce048[] __initconst = {
29038c2ecf20Sopenharmony_ci	0x56, 0x4d, 0xee, 0x49, 0xab, 0x00, 0xd2, 0x40,
29048c2ecf20Sopenharmony_ci	0xfc, 0x10, 0x68, 0xc3
29058c2ecf20Sopenharmony_ci};
29068c2ecf20Sopenharmony_cistatic const u8 enc_key048[] __initconst = {
29078c2ecf20Sopenharmony_ci	0xa5, 0x56, 0x9e, 0x72, 0x9a, 0x69, 0xb2, 0x4b,
29088c2ecf20Sopenharmony_ci	0xa6, 0xe0, 0xff, 0x15, 0xc4, 0x62, 0x78, 0x97,
29098c2ecf20Sopenharmony_ci	0x43, 0x68, 0x24, 0xc9, 0x41, 0xe9, 0xd0, 0x0b,
29108c2ecf20Sopenharmony_ci	0x2e, 0x93, 0xfd, 0xdc, 0x4b, 0xa7, 0x76, 0x57
29118c2ecf20Sopenharmony_ci};
29128c2ecf20Sopenharmony_ci
29138c2ecf20Sopenharmony_ci/* wycheproof - misc */
29148c2ecf20Sopenharmony_cistatic const u8 enc_input049[] __initconst = {
29158c2ecf20Sopenharmony_ci	0xe6, 0x01, 0xb3, 0x85, 0x57, 0x79, 0x7d, 0xa2,
29168c2ecf20Sopenharmony_ci	0xf8, 0xa4, 0x10, 0x6a, 0x08, 0x9d, 0x1d, 0xa6
29178c2ecf20Sopenharmony_ci};
29188c2ecf20Sopenharmony_cistatic const u8 enc_output049[] __initconst = {
29198c2ecf20Sopenharmony_ci	0x29, 0x9b, 0x5d, 0x3f, 0x3d, 0x03, 0xc0, 0x87,
29208c2ecf20Sopenharmony_ci	0x20, 0x9a, 0x16, 0xe2, 0x85, 0x14, 0x31, 0x11,
29218c2ecf20Sopenharmony_ci	0x4b, 0x45, 0x4e, 0xd1, 0x98, 0xde, 0x11, 0x7e,
29228c2ecf20Sopenharmony_ci	0x83, 0xec, 0x49, 0xfa, 0x8d, 0x85, 0x08, 0xd6
29238c2ecf20Sopenharmony_ci};
29248c2ecf20Sopenharmony_cistatic const u8 enc_assoc049[] __initconst = {
29258c2ecf20Sopenharmony_ci	0x5e, 0x64, 0x70, 0xfa, 0xcd, 0x99, 0xc1, 0xd8,
29268c2ecf20Sopenharmony_ci	0x1e, 0x37, 0xcd, 0x44, 0x01, 0x5f, 0xe1, 0x94,
29278c2ecf20Sopenharmony_ci	0x80, 0xa2, 0xa4, 0xd3, 0x35, 0x2a, 0x4f, 0xf5,
29288c2ecf20Sopenharmony_ci	0x60, 0xc0, 0x64, 0x0f, 0xdb, 0xda
29298c2ecf20Sopenharmony_ci};
29308c2ecf20Sopenharmony_cistatic const u8 enc_nonce049[] __initconst = {
29318c2ecf20Sopenharmony_ci	0xdf, 0x87, 0x13, 0xe8, 0x7e, 0xc3, 0xdb, 0xcf,
29328c2ecf20Sopenharmony_ci	0xad, 0x14, 0xd5, 0x3e
29338c2ecf20Sopenharmony_ci};
29348c2ecf20Sopenharmony_cistatic const u8 enc_key049[] __initconst = {
29358c2ecf20Sopenharmony_ci	0x56, 0x20, 0x74, 0x65, 0xb4, 0xe4, 0x8e, 0x6d,
29368c2ecf20Sopenharmony_ci	0x04, 0x63, 0x0f, 0x4a, 0x42, 0xf3, 0x5c, 0xfc,
29378c2ecf20Sopenharmony_ci	0x16, 0x3a, 0xb2, 0x89, 0xc2, 0x2a, 0x2b, 0x47,
29388c2ecf20Sopenharmony_ci	0x84, 0xf6, 0xf9, 0x29, 0x03, 0x30, 0xbe, 0xe0
29398c2ecf20Sopenharmony_ci};
29408c2ecf20Sopenharmony_ci
29418c2ecf20Sopenharmony_ci/* wycheproof - misc */
29428c2ecf20Sopenharmony_cistatic const u8 enc_input050[] __initconst = {
29438c2ecf20Sopenharmony_ci	0xdc, 0x9e, 0x9e, 0xaf, 0x11, 0xe3, 0x14, 0x18,
29448c2ecf20Sopenharmony_ci	0x2d, 0xf6, 0xa4, 0xeb, 0xa1, 0x7a, 0xec, 0x9c
29458c2ecf20Sopenharmony_ci};
29468c2ecf20Sopenharmony_cistatic const u8 enc_output050[] __initconst = {
29478c2ecf20Sopenharmony_ci	0x60, 0x5b, 0xbf, 0x90, 0xae, 0xb9, 0x74, 0xf6,
29488c2ecf20Sopenharmony_ci	0x60, 0x2b, 0xc7, 0x78, 0x05, 0x6f, 0x0d, 0xca,
29498c2ecf20Sopenharmony_ci	0x38, 0xea, 0x23, 0xd9, 0x90, 0x54, 0xb4, 0x6b,
29508c2ecf20Sopenharmony_ci	0x42, 0xff, 0xe0, 0x04, 0x12, 0x9d, 0x22, 0x04
29518c2ecf20Sopenharmony_ci};
29528c2ecf20Sopenharmony_cistatic const u8 enc_assoc050[] __initconst = {
29538c2ecf20Sopenharmony_ci	0xba, 0x44, 0x6f, 0x6f, 0x9a, 0x0c, 0xed, 0x22,
29548c2ecf20Sopenharmony_ci	0x45, 0x0f, 0xeb, 0x10, 0x73, 0x7d, 0x90, 0x07,
29558c2ecf20Sopenharmony_ci	0xfd, 0x69, 0xab, 0xc1, 0x9b, 0x1d, 0x4d, 0x90,
29568c2ecf20Sopenharmony_ci	0x49, 0xa5, 0x55, 0x1e, 0x86, 0xec, 0x2b, 0x37
29578c2ecf20Sopenharmony_ci};
29588c2ecf20Sopenharmony_cistatic const u8 enc_nonce050[] __initconst = {
29598c2ecf20Sopenharmony_ci	0x8d, 0xf4, 0xb1, 0x5a, 0x88, 0x8c, 0x33, 0x28,
29608c2ecf20Sopenharmony_ci	0x6a, 0x7b, 0x76, 0x51
29618c2ecf20Sopenharmony_ci};
29628c2ecf20Sopenharmony_cistatic const u8 enc_key050[] __initconst = {
29638c2ecf20Sopenharmony_ci	0x39, 0x37, 0x98, 0x6a, 0xf8, 0x6d, 0xaf, 0xc1,
29648c2ecf20Sopenharmony_ci	0xba, 0x0c, 0x46, 0x72, 0xd8, 0xab, 0xc4, 0x6c,
29658c2ecf20Sopenharmony_ci	0x20, 0x70, 0x62, 0x68, 0x2d, 0x9c, 0x26, 0x4a,
29668c2ecf20Sopenharmony_ci	0xb0, 0x6d, 0x6c, 0x58, 0x07, 0x20, 0x51, 0x30
29678c2ecf20Sopenharmony_ci};
29688c2ecf20Sopenharmony_ci
29698c2ecf20Sopenharmony_ci/* wycheproof - misc */
29708c2ecf20Sopenharmony_cistatic const u8 enc_input051[] __initconst = {
29718c2ecf20Sopenharmony_ci	0x81, 0xce, 0x84, 0xed, 0xe9, 0xb3, 0x58, 0x59,
29728c2ecf20Sopenharmony_ci	0xcc, 0x8c, 0x49, 0xa8, 0xf6, 0xbe, 0x7d, 0xc6
29738c2ecf20Sopenharmony_ci};
29748c2ecf20Sopenharmony_cistatic const u8 enc_output051[] __initconst = {
29758c2ecf20Sopenharmony_ci	0x7b, 0x7c, 0xe0, 0xd8, 0x24, 0x80, 0x9a, 0x70,
29768c2ecf20Sopenharmony_ci	0xde, 0x32, 0x56, 0x2c, 0xcf, 0x2c, 0x2b, 0xbd,
29778c2ecf20Sopenharmony_ci	0x15, 0xd4, 0x4a, 0x00, 0xce, 0x0d, 0x19, 0xb4,
29788c2ecf20Sopenharmony_ci	0x23, 0x1f, 0x92, 0x1e, 0x22, 0xbc, 0x0a, 0x43
29798c2ecf20Sopenharmony_ci};
29808c2ecf20Sopenharmony_cistatic const u8 enc_assoc051[] __initconst = {
29818c2ecf20Sopenharmony_ci	0xd4, 0x1a, 0x82, 0x8d, 0x5e, 0x71, 0x82, 0x92,
29828c2ecf20Sopenharmony_ci	0x47, 0x02, 0x19, 0x05, 0x40, 0x2e, 0xa2, 0x57,
29838c2ecf20Sopenharmony_ci	0xdc, 0xcb, 0xc3, 0xb8, 0x0f, 0xcd, 0x56, 0x75,
29848c2ecf20Sopenharmony_ci	0x05, 0x6b, 0x68, 0xbb, 0x59, 0xe6, 0x2e, 0x88,
29858c2ecf20Sopenharmony_ci	0x73
29868c2ecf20Sopenharmony_ci};
29878c2ecf20Sopenharmony_cistatic const u8 enc_nonce051[] __initconst = {
29888c2ecf20Sopenharmony_ci	0xbe, 0x40, 0xe5, 0xf1, 0xa1, 0x18, 0x17, 0xa0,
29898c2ecf20Sopenharmony_ci	0xa8, 0xfa, 0x89, 0x49
29908c2ecf20Sopenharmony_ci};
29918c2ecf20Sopenharmony_cistatic const u8 enc_key051[] __initconst = {
29928c2ecf20Sopenharmony_ci	0x36, 0x37, 0x2a, 0xbc, 0xdb, 0x78, 0xe0, 0x27,
29938c2ecf20Sopenharmony_ci	0x96, 0x46, 0xac, 0x3d, 0x17, 0x6b, 0x96, 0x74,
29948c2ecf20Sopenharmony_ci	0xe9, 0x15, 0x4e, 0xec, 0xf0, 0xd5, 0x46, 0x9c,
29958c2ecf20Sopenharmony_ci	0x65, 0x1e, 0xc7, 0xe1, 0x6b, 0x4c, 0x11, 0x99
29968c2ecf20Sopenharmony_ci};
29978c2ecf20Sopenharmony_ci
29988c2ecf20Sopenharmony_ci/* wycheproof - misc */
29998c2ecf20Sopenharmony_cistatic const u8 enc_input052[] __initconst = {
30008c2ecf20Sopenharmony_ci	0xa6, 0x67, 0x47, 0xc8, 0x9e, 0x85, 0x7a, 0xf3,
30018c2ecf20Sopenharmony_ci	0xa1, 0x8e, 0x2c, 0x79, 0x50, 0x00, 0x87, 0xed
30028c2ecf20Sopenharmony_ci};
30038c2ecf20Sopenharmony_cistatic const u8 enc_output052[] __initconst = {
30048c2ecf20Sopenharmony_ci	0xca, 0x82, 0xbf, 0xf3, 0xe2, 0xf3, 0x10, 0xcc,
30058c2ecf20Sopenharmony_ci	0xc9, 0x76, 0x67, 0x2c, 0x44, 0x15, 0xe6, 0x9b,
30068c2ecf20Sopenharmony_ci	0x57, 0x63, 0x8c, 0x62, 0xa5, 0xd8, 0x5d, 0xed,
30078c2ecf20Sopenharmony_ci	0x77, 0x4f, 0x91, 0x3c, 0x81, 0x3e, 0xa0, 0x32
30088c2ecf20Sopenharmony_ci};
30098c2ecf20Sopenharmony_cistatic const u8 enc_assoc052[] __initconst = {
30108c2ecf20Sopenharmony_ci	0x3f, 0x2d, 0xd4, 0x9b, 0xbf, 0x09, 0xd6, 0x9a,
30118c2ecf20Sopenharmony_ci	0x78, 0xa3, 0xd8, 0x0e, 0xa2, 0x56, 0x66, 0x14,
30128c2ecf20Sopenharmony_ci	0xfc, 0x37, 0x94, 0x74, 0x19, 0x6c, 0x1a, 0xae,
30138c2ecf20Sopenharmony_ci	0x84, 0x58, 0x3d, 0xa7, 0x3d, 0x7f, 0xf8, 0x5c,
30148c2ecf20Sopenharmony_ci	0x6f, 0x42, 0xca, 0x42, 0x05, 0x6a, 0x97, 0x92,
30158c2ecf20Sopenharmony_ci	0xcc, 0x1b, 0x9f, 0xb3, 0xc7, 0xd2, 0x61
30168c2ecf20Sopenharmony_ci};
30178c2ecf20Sopenharmony_cistatic const u8 enc_nonce052[] __initconst = {
30188c2ecf20Sopenharmony_ci	0x84, 0xc8, 0x7d, 0xae, 0x4e, 0xee, 0x27, 0x73,
30198c2ecf20Sopenharmony_ci	0x0e, 0xc3, 0x5d, 0x12
30208c2ecf20Sopenharmony_ci};
30218c2ecf20Sopenharmony_cistatic const u8 enc_key052[] __initconst = {
30228c2ecf20Sopenharmony_ci	0x9f, 0x14, 0x79, 0xed, 0x09, 0x7d, 0x7f, 0xe5,
30238c2ecf20Sopenharmony_ci	0x29, 0xc1, 0x1f, 0x2f, 0x5a, 0xdd, 0x9a, 0xaf,
30248c2ecf20Sopenharmony_ci	0xf4, 0xa1, 0xca, 0x0b, 0x68, 0x99, 0x7a, 0x2c,
30258c2ecf20Sopenharmony_ci	0xb7, 0xf7, 0x97, 0x49, 0xbd, 0x90, 0xaa, 0xf4
30268c2ecf20Sopenharmony_ci};
30278c2ecf20Sopenharmony_ci
30288c2ecf20Sopenharmony_ci/* wycheproof - misc */
30298c2ecf20Sopenharmony_cistatic const u8 enc_input053[] __initconst = {
30308c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x88, 0x80, 0x94, 0x17, 0x83,
30318c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x84, 0x64, 0x43, 0xfe, 0xe8,
30328c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x03, 0x03, 0xfb, 0x3b, 0x7b,
30338c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0xbe, 0xeb, 0xd3, 0x29, 0xbe
30348c2ecf20Sopenharmony_ci};
30358c2ecf20Sopenharmony_cistatic const u8 enc_output053[] __initconst = {
30368c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30378c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30388c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30398c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30408c2ecf20Sopenharmony_ci	0xe6, 0xd3, 0xd7, 0x32, 0x4a, 0x1c, 0xbb, 0xa7,
30418c2ecf20Sopenharmony_ci	0x77, 0xbb, 0xb0, 0xec, 0xdd, 0xa3, 0x78, 0x07
30428c2ecf20Sopenharmony_ci};
30438c2ecf20Sopenharmony_cistatic const u8 enc_assoc053[] __initconst = {
30448c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30458c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
30468c2ecf20Sopenharmony_ci};
30478c2ecf20Sopenharmony_cistatic const u8 enc_nonce053[] __initconst = {
30488c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
30498c2ecf20Sopenharmony_ci};
30508c2ecf20Sopenharmony_cistatic const u8 enc_key053[] __initconst = {
30518c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
30528c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
30538c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
30548c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
30558c2ecf20Sopenharmony_ci};
30568c2ecf20Sopenharmony_ci
30578c2ecf20Sopenharmony_ci/* wycheproof - misc */
30588c2ecf20Sopenharmony_cistatic const u8 enc_input054[] __initconst = {
30598c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x88, 0x80, 0x94, 0x17, 0x83,
30608c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x84, 0x64, 0x43, 0xfe, 0xe8,
30618c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x03, 0x03, 0xfb, 0x3b, 0x7b,
30628c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0xbe, 0xeb, 0xd3, 0x29, 0xbe,
30638c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0xdb, 0x5b, 0x1e, 0xde, 0xfc, 0xfe,
30648c2ecf20Sopenharmony_ci	0x8b, 0xcd, 0xa1, 0xb6, 0xa1, 0x5c, 0x8c, 0x2b,
30658c2ecf20Sopenharmony_ci	0x08, 0x69, 0xff, 0xd2, 0xec, 0x5e, 0x26, 0xe5,
30668c2ecf20Sopenharmony_ci	0x53, 0xb7, 0xb2, 0x27, 0xfe, 0x87, 0xfd, 0xbd
30678c2ecf20Sopenharmony_ci};
30688c2ecf20Sopenharmony_cistatic const u8 enc_output054[] __initconst = {
30698c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30708c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30718c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30728c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30738c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30748c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30758c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30768c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30778c2ecf20Sopenharmony_ci	0x06, 0x2d, 0xe6, 0x79, 0x5f, 0x27, 0x4f, 0xd2,
30788c2ecf20Sopenharmony_ci	0xa3, 0x05, 0xd7, 0x69, 0x80, 0xbc, 0x9c, 0xce
30798c2ecf20Sopenharmony_ci};
30808c2ecf20Sopenharmony_cistatic const u8 enc_assoc054[] __initconst = {
30818c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30828c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
30838c2ecf20Sopenharmony_ci};
30848c2ecf20Sopenharmony_cistatic const u8 enc_nonce054[] __initconst = {
30858c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
30868c2ecf20Sopenharmony_ci};
30878c2ecf20Sopenharmony_cistatic const u8 enc_key054[] __initconst = {
30888c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
30898c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
30908c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
30918c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
30928c2ecf20Sopenharmony_ci};
30938c2ecf20Sopenharmony_ci
30948c2ecf20Sopenharmony_ci/* wycheproof - misc */
30958c2ecf20Sopenharmony_cistatic const u8 enc_input055[] __initconst = {
30968c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x88, 0x80, 0x94, 0x17, 0x83,
30978c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x84, 0x64, 0x43, 0xfe, 0xe8,
30988c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x03, 0x03, 0xfb, 0x3b, 0x7b,
30998c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0xbe, 0xeb, 0xd3, 0x29, 0xbe,
31008c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0xdb, 0x5b, 0x1e, 0xde, 0xfc, 0xfe,
31018c2ecf20Sopenharmony_ci	0x8b, 0xcd, 0xa1, 0xb6, 0xa1, 0x5c, 0x8c, 0x2b,
31028c2ecf20Sopenharmony_ci	0x08, 0x69, 0xff, 0xd2, 0xec, 0x5e, 0x26, 0xe5,
31038c2ecf20Sopenharmony_ci	0x53, 0xb7, 0xb2, 0x27, 0xfe, 0x87, 0xfd, 0xbd,
31048c2ecf20Sopenharmony_ci	0x7a, 0xda, 0x44, 0x42, 0x42, 0x69, 0xbf, 0xfa,
31058c2ecf20Sopenharmony_ci	0x55, 0x27, 0xf2, 0x70, 0xac, 0xf6, 0x85, 0x02,
31068c2ecf20Sopenharmony_ci	0xb7, 0x4c, 0x5a, 0xe2, 0xe6, 0x0c, 0x05, 0x80,
31078c2ecf20Sopenharmony_ci	0x98, 0x1a, 0x49, 0x38, 0x45, 0x93, 0x92, 0xc4,
31088c2ecf20Sopenharmony_ci	0x9b, 0xb2, 0xf2, 0x84, 0xb6, 0x46, 0xef, 0xc7,
31098c2ecf20Sopenharmony_ci	0xf3, 0xf0, 0xb1, 0x36, 0x1d, 0xc3, 0x48, 0xed,
31108c2ecf20Sopenharmony_ci	0x77, 0xd3, 0x0b, 0xc5, 0x76, 0x92, 0xed, 0x38,
31118c2ecf20Sopenharmony_ci	0xfb, 0xac, 0x01, 0x88, 0x38, 0x04, 0x88, 0xc7
31128c2ecf20Sopenharmony_ci};
31138c2ecf20Sopenharmony_cistatic const u8 enc_output055[] __initconst = {
31148c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31158c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31168c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31178c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31188c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31198c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31208c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31218c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31228c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31238c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31248c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31258c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31268c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31278c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31288c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31298c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31308c2ecf20Sopenharmony_ci	0xd8, 0xb4, 0x79, 0x02, 0xba, 0xae, 0xaf, 0xb3,
31318c2ecf20Sopenharmony_ci	0x42, 0x03, 0x05, 0x15, 0x29, 0xaf, 0x28, 0x2e
31328c2ecf20Sopenharmony_ci};
31338c2ecf20Sopenharmony_cistatic const u8 enc_assoc055[] __initconst = {
31348c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
31358c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
31368c2ecf20Sopenharmony_ci};
31378c2ecf20Sopenharmony_cistatic const u8 enc_nonce055[] __initconst = {
31388c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
31398c2ecf20Sopenharmony_ci};
31408c2ecf20Sopenharmony_cistatic const u8 enc_key055[] __initconst = {
31418c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
31428c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
31438c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
31448c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
31458c2ecf20Sopenharmony_ci};
31468c2ecf20Sopenharmony_ci
31478c2ecf20Sopenharmony_ci/* wycheproof - misc */
31488c2ecf20Sopenharmony_cistatic const u8 enc_input056[] __initconst = {
31498c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0x77, 0x7f, 0x6b, 0xe8, 0x7c,
31508c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0x7b, 0x9b, 0xbc, 0x01, 0x17,
31518c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0xfc, 0xfc, 0x04, 0xc4, 0x84,
31528c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0x41, 0x14, 0x2c, 0xd6, 0x41
31538c2ecf20Sopenharmony_ci};
31548c2ecf20Sopenharmony_cistatic const u8 enc_output056[] __initconst = {
31558c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31578c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31588c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31598c2ecf20Sopenharmony_ci	0xb3, 0x89, 0x1c, 0x84, 0x9c, 0xb5, 0x2c, 0x27,
31608c2ecf20Sopenharmony_ci	0x74, 0x7e, 0xdf, 0xcf, 0x31, 0x21, 0x3b, 0xb6
31618c2ecf20Sopenharmony_ci};
31628c2ecf20Sopenharmony_cistatic const u8 enc_assoc056[] __initconst = {
31638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
31658c2ecf20Sopenharmony_ci};
31668c2ecf20Sopenharmony_cistatic const u8 enc_nonce056[] __initconst = {
31678c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
31688c2ecf20Sopenharmony_ci};
31698c2ecf20Sopenharmony_cistatic const u8 enc_key056[] __initconst = {
31708c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
31718c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
31728c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
31738c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
31748c2ecf20Sopenharmony_ci};
31758c2ecf20Sopenharmony_ci
31768c2ecf20Sopenharmony_ci/* wycheproof - misc */
31778c2ecf20Sopenharmony_cistatic const u8 enc_input057[] __initconst = {
31788c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0x77, 0x7f, 0x6b, 0xe8, 0x7c,
31798c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0x7b, 0x9b, 0xbc, 0x01, 0x17,
31808c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0xfc, 0xfc, 0x04, 0xc4, 0x84,
31818c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0x41, 0x14, 0x2c, 0xd6, 0x41,
31828c2ecf20Sopenharmony_ci	0x1c, 0x43, 0x24, 0xa4, 0xe1, 0x21, 0x03, 0x01,
31838c2ecf20Sopenharmony_ci	0x74, 0x32, 0x5e, 0x49, 0x5e, 0xa3, 0x73, 0xd4,
31848c2ecf20Sopenharmony_ci	0xf7, 0x96, 0x00, 0x2d, 0x13, 0xa1, 0xd9, 0x1a,
31858c2ecf20Sopenharmony_ci	0xac, 0x48, 0x4d, 0xd8, 0x01, 0x78, 0x02, 0x42
31868c2ecf20Sopenharmony_ci};
31878c2ecf20Sopenharmony_cistatic const u8 enc_output057[] __initconst = {
31888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31898c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31908c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31938c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31948c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31958c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31968c2ecf20Sopenharmony_ci	0xf0, 0xc1, 0x2d, 0x26, 0xef, 0x03, 0x02, 0x9b,
31978c2ecf20Sopenharmony_ci	0x62, 0xc0, 0x08, 0xda, 0x27, 0xc5, 0xdc, 0x68
31988c2ecf20Sopenharmony_ci};
31998c2ecf20Sopenharmony_cistatic const u8 enc_assoc057[] __initconst = {
32008c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32018c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
32028c2ecf20Sopenharmony_ci};
32038c2ecf20Sopenharmony_cistatic const u8 enc_nonce057[] __initconst = {
32048c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
32058c2ecf20Sopenharmony_ci};
32068c2ecf20Sopenharmony_cistatic const u8 enc_key057[] __initconst = {
32078c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
32088c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
32098c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
32108c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
32118c2ecf20Sopenharmony_ci};
32128c2ecf20Sopenharmony_ci
32138c2ecf20Sopenharmony_ci/* wycheproof - misc */
32148c2ecf20Sopenharmony_cistatic const u8 enc_input058[] __initconst = {
32158c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0x77, 0x7f, 0x6b, 0xe8, 0x7c,
32168c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0x7b, 0x9b, 0xbc, 0x01, 0x17,
32178c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0xfc, 0xfc, 0x04, 0xc4, 0x84,
32188c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0x41, 0x14, 0x2c, 0xd6, 0x41,
32198c2ecf20Sopenharmony_ci	0x1c, 0x43, 0x24, 0xa4, 0xe1, 0x21, 0x03, 0x01,
32208c2ecf20Sopenharmony_ci	0x74, 0x32, 0x5e, 0x49, 0x5e, 0xa3, 0x73, 0xd4,
32218c2ecf20Sopenharmony_ci	0xf7, 0x96, 0x00, 0x2d, 0x13, 0xa1, 0xd9, 0x1a,
32228c2ecf20Sopenharmony_ci	0xac, 0x48, 0x4d, 0xd8, 0x01, 0x78, 0x02, 0x42,
32238c2ecf20Sopenharmony_ci	0x85, 0x25, 0xbb, 0xbd, 0xbd, 0x96, 0x40, 0x05,
32248c2ecf20Sopenharmony_ci	0xaa, 0xd8, 0x0d, 0x8f, 0x53, 0x09, 0x7a, 0xfd,
32258c2ecf20Sopenharmony_ci	0x48, 0xb3, 0xa5, 0x1d, 0x19, 0xf3, 0xfa, 0x7f,
32268c2ecf20Sopenharmony_ci	0x67, 0xe5, 0xb6, 0xc7, 0xba, 0x6c, 0x6d, 0x3b,
32278c2ecf20Sopenharmony_ci	0x64, 0x4d, 0x0d, 0x7b, 0x49, 0xb9, 0x10, 0x38,
32288c2ecf20Sopenharmony_ci	0x0c, 0x0f, 0x4e, 0xc9, 0xe2, 0x3c, 0xb7, 0x12,
32298c2ecf20Sopenharmony_ci	0x88, 0x2c, 0xf4, 0x3a, 0x89, 0x6d, 0x12, 0xc7,
32308c2ecf20Sopenharmony_ci	0x04, 0x53, 0xfe, 0x77, 0xc7, 0xfb, 0x77, 0x38
32318c2ecf20Sopenharmony_ci};
32328c2ecf20Sopenharmony_cistatic const u8 enc_output058[] __initconst = {
32338c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32348c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32358c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32378c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32388c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32428c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32448c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32458c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32468c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32488c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32498c2ecf20Sopenharmony_ci	0xee, 0x65, 0x78, 0x30, 0x01, 0xc2, 0x56, 0x91,
32508c2ecf20Sopenharmony_ci	0xfa, 0x28, 0xd0, 0xf5, 0xf1, 0xc1, 0xd7, 0x62
32518c2ecf20Sopenharmony_ci};
32528c2ecf20Sopenharmony_cistatic const u8 enc_assoc058[] __initconst = {
32538c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32548c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
32558c2ecf20Sopenharmony_ci};
32568c2ecf20Sopenharmony_cistatic const u8 enc_nonce058[] __initconst = {
32578c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
32588c2ecf20Sopenharmony_ci};
32598c2ecf20Sopenharmony_cistatic const u8 enc_key058[] __initconst = {
32608c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
32618c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
32628c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
32638c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
32648c2ecf20Sopenharmony_ci};
32658c2ecf20Sopenharmony_ci
32668c2ecf20Sopenharmony_ci/* wycheproof - misc */
32678c2ecf20Sopenharmony_cistatic const u8 enc_input059[] __initconst = {
32688c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x08, 0x80, 0x94, 0x17, 0x03,
32698c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x04, 0x64, 0x43, 0xfe, 0x68,
32708c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x83, 0x03, 0xfb, 0x3b, 0xfb,
32718c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0x3e, 0xeb, 0xd3, 0x29, 0x3e
32728c2ecf20Sopenharmony_ci};
32738c2ecf20Sopenharmony_cistatic const u8 enc_output059[] __initconst = {
32748c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
32758c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
32768c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
32778c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
32788c2ecf20Sopenharmony_ci	0x79, 0xba, 0x7a, 0x29, 0xf5, 0xa7, 0xbb, 0x75,
32798c2ecf20Sopenharmony_ci	0x79, 0x7a, 0xf8, 0x7a, 0x61, 0x01, 0x29, 0xa4
32808c2ecf20Sopenharmony_ci};
32818c2ecf20Sopenharmony_cistatic const u8 enc_assoc059[] __initconst = {
32828c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
32838c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80
32848c2ecf20Sopenharmony_ci};
32858c2ecf20Sopenharmony_cistatic const u8 enc_nonce059[] __initconst = {
32868c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
32878c2ecf20Sopenharmony_ci};
32888c2ecf20Sopenharmony_cistatic const u8 enc_key059[] __initconst = {
32898c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
32908c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
32918c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
32928c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
32938c2ecf20Sopenharmony_ci};
32948c2ecf20Sopenharmony_ci
32958c2ecf20Sopenharmony_ci/* wycheproof - misc */
32968c2ecf20Sopenharmony_cistatic const u8 enc_input060[] __initconst = {
32978c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x08, 0x80, 0x94, 0x17, 0x03,
32988c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x04, 0x64, 0x43, 0xfe, 0x68,
32998c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x83, 0x03, 0xfb, 0x3b, 0xfb,
33008c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0x3e, 0xeb, 0xd3, 0x29, 0x3e,
33018c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0xdb, 0xdb, 0x1e, 0xde, 0xfc, 0x7e,
33028c2ecf20Sopenharmony_ci	0x8b, 0xcd, 0xa1, 0x36, 0xa1, 0x5c, 0x8c, 0xab,
33038c2ecf20Sopenharmony_ci	0x08, 0x69, 0xff, 0x52, 0xec, 0x5e, 0x26, 0x65,
33048c2ecf20Sopenharmony_ci	0x53, 0xb7, 0xb2, 0xa7, 0xfe, 0x87, 0xfd, 0x3d
33058c2ecf20Sopenharmony_ci};
33068c2ecf20Sopenharmony_cistatic const u8 enc_output060[] __initconst = {
33078c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33088c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33098c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33108c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33118c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33128c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33138c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33148c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33158c2ecf20Sopenharmony_ci	0x36, 0xb1, 0x74, 0x38, 0x19, 0xe1, 0xb9, 0xba,
33168c2ecf20Sopenharmony_ci	0x15, 0x51, 0xe8, 0xed, 0x92, 0x2a, 0x95, 0x9a
33178c2ecf20Sopenharmony_ci};
33188c2ecf20Sopenharmony_cistatic const u8 enc_assoc060[] __initconst = {
33198c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33208c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80
33218c2ecf20Sopenharmony_ci};
33228c2ecf20Sopenharmony_cistatic const u8 enc_nonce060[] __initconst = {
33238c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
33248c2ecf20Sopenharmony_ci};
33258c2ecf20Sopenharmony_cistatic const u8 enc_key060[] __initconst = {
33268c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
33278c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
33288c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
33298c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
33308c2ecf20Sopenharmony_ci};
33318c2ecf20Sopenharmony_ci
33328c2ecf20Sopenharmony_ci/* wycheproof - misc */
33338c2ecf20Sopenharmony_cistatic const u8 enc_input061[] __initconst = {
33348c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x08, 0x80, 0x94, 0x17, 0x03,
33358c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x04, 0x64, 0x43, 0xfe, 0x68,
33368c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x83, 0x03, 0xfb, 0x3b, 0xfb,
33378c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0x3e, 0xeb, 0xd3, 0x29, 0x3e,
33388c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0xdb, 0xdb, 0x1e, 0xde, 0xfc, 0x7e,
33398c2ecf20Sopenharmony_ci	0x8b, 0xcd, 0xa1, 0x36, 0xa1, 0x5c, 0x8c, 0xab,
33408c2ecf20Sopenharmony_ci	0x08, 0x69, 0xff, 0x52, 0xec, 0x5e, 0x26, 0x65,
33418c2ecf20Sopenharmony_ci	0x53, 0xb7, 0xb2, 0xa7, 0xfe, 0x87, 0xfd, 0x3d,
33428c2ecf20Sopenharmony_ci	0x7a, 0xda, 0x44, 0xc2, 0x42, 0x69, 0xbf, 0x7a,
33438c2ecf20Sopenharmony_ci	0x55, 0x27, 0xf2, 0xf0, 0xac, 0xf6, 0x85, 0x82,
33448c2ecf20Sopenharmony_ci	0xb7, 0x4c, 0x5a, 0x62, 0xe6, 0x0c, 0x05, 0x00,
33458c2ecf20Sopenharmony_ci	0x98, 0x1a, 0x49, 0xb8, 0x45, 0x93, 0x92, 0x44,
33468c2ecf20Sopenharmony_ci	0x9b, 0xb2, 0xf2, 0x04, 0xb6, 0x46, 0xef, 0x47,
33478c2ecf20Sopenharmony_ci	0xf3, 0xf0, 0xb1, 0xb6, 0x1d, 0xc3, 0x48, 0x6d,
33488c2ecf20Sopenharmony_ci	0x77, 0xd3, 0x0b, 0x45, 0x76, 0x92, 0xed, 0xb8,
33498c2ecf20Sopenharmony_ci	0xfb, 0xac, 0x01, 0x08, 0x38, 0x04, 0x88, 0x47
33508c2ecf20Sopenharmony_ci};
33518c2ecf20Sopenharmony_cistatic const u8 enc_output061[] __initconst = {
33528c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33538c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33548c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33558c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33568c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33578c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33588c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33598c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33608c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33618c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33628c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33638c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33648c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33658c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33668c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33678c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33688c2ecf20Sopenharmony_ci	0xfe, 0xac, 0x49, 0x55, 0x55, 0x4e, 0x80, 0x6f,
33698c2ecf20Sopenharmony_ci	0x3a, 0x19, 0x02, 0xe2, 0x44, 0x32, 0xc0, 0x8a
33708c2ecf20Sopenharmony_ci};
33718c2ecf20Sopenharmony_cistatic const u8 enc_assoc061[] __initconst = {
33728c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
33738c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80
33748c2ecf20Sopenharmony_ci};
33758c2ecf20Sopenharmony_cistatic const u8 enc_nonce061[] __initconst = {
33768c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
33778c2ecf20Sopenharmony_ci};
33788c2ecf20Sopenharmony_cistatic const u8 enc_key061[] __initconst = {
33798c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
33808c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
33818c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
33828c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
33838c2ecf20Sopenharmony_ci};
33848c2ecf20Sopenharmony_ci
33858c2ecf20Sopenharmony_ci/* wycheproof - misc */
33868c2ecf20Sopenharmony_cistatic const u8 enc_input062[] __initconst = {
33878c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0xf7, 0x7f, 0x6b, 0xe8, 0xfc,
33888c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0xfb, 0x9b, 0xbc, 0x01, 0x97,
33898c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0x7c, 0xfc, 0x04, 0xc4, 0x04,
33908c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0xc1, 0x14, 0x2c, 0xd6, 0xc1
33918c2ecf20Sopenharmony_ci};
33928c2ecf20Sopenharmony_cistatic const u8 enc_output062[] __initconst = {
33938c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
33948c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
33958c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
33968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
33978c2ecf20Sopenharmony_ci	0x20, 0xa3, 0x79, 0x8d, 0xf1, 0x29, 0x2c, 0x59,
33988c2ecf20Sopenharmony_ci	0x72, 0xbf, 0x97, 0x41, 0xae, 0xc3, 0x8a, 0x19
33998c2ecf20Sopenharmony_ci};
34008c2ecf20Sopenharmony_cistatic const u8 enc_assoc062[] __initconst = {
34018c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34028c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f
34038c2ecf20Sopenharmony_ci};
34048c2ecf20Sopenharmony_cistatic const u8 enc_nonce062[] __initconst = {
34058c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
34068c2ecf20Sopenharmony_ci};
34078c2ecf20Sopenharmony_cistatic const u8 enc_key062[] __initconst = {
34088c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
34098c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
34108c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
34118c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
34128c2ecf20Sopenharmony_ci};
34138c2ecf20Sopenharmony_ci
34148c2ecf20Sopenharmony_ci/* wycheproof - misc */
34158c2ecf20Sopenharmony_cistatic const u8 enc_input063[] __initconst = {
34168c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0xf7, 0x7f, 0x6b, 0xe8, 0xfc,
34178c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0xfb, 0x9b, 0xbc, 0x01, 0x97,
34188c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0x7c, 0xfc, 0x04, 0xc4, 0x04,
34198c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0xc1, 0x14, 0x2c, 0xd6, 0xc1,
34208c2ecf20Sopenharmony_ci	0x1c, 0x43, 0x24, 0x24, 0xe1, 0x21, 0x03, 0x81,
34218c2ecf20Sopenharmony_ci	0x74, 0x32, 0x5e, 0xc9, 0x5e, 0xa3, 0x73, 0x54,
34228c2ecf20Sopenharmony_ci	0xf7, 0x96, 0x00, 0xad, 0x13, 0xa1, 0xd9, 0x9a,
34238c2ecf20Sopenharmony_ci	0xac, 0x48, 0x4d, 0x58, 0x01, 0x78, 0x02, 0xc2
34248c2ecf20Sopenharmony_ci};
34258c2ecf20Sopenharmony_cistatic const u8 enc_output063[] __initconst = {
34268c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34298c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34308c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34318c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34338c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34348c2ecf20Sopenharmony_ci	0xc0, 0x3d, 0x9f, 0x67, 0x35, 0x4a, 0x97, 0xb2,
34358c2ecf20Sopenharmony_ci	0xf0, 0x74, 0xf7, 0x55, 0x15, 0x57, 0xe4, 0x9c
34368c2ecf20Sopenharmony_ci};
34378c2ecf20Sopenharmony_cistatic const u8 enc_assoc063[] __initconst = {
34388c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f
34408c2ecf20Sopenharmony_ci};
34418c2ecf20Sopenharmony_cistatic const u8 enc_nonce063[] __initconst = {
34428c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
34438c2ecf20Sopenharmony_ci};
34448c2ecf20Sopenharmony_cistatic const u8 enc_key063[] __initconst = {
34458c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
34468c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
34478c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
34488c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
34498c2ecf20Sopenharmony_ci};
34508c2ecf20Sopenharmony_ci
34518c2ecf20Sopenharmony_ci/* wycheproof - misc */
34528c2ecf20Sopenharmony_cistatic const u8 enc_input064[] __initconst = {
34538c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0xf7, 0x7f, 0x6b, 0xe8, 0xfc,
34548c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0xfb, 0x9b, 0xbc, 0x01, 0x97,
34558c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0x7c, 0xfc, 0x04, 0xc4, 0x04,
34568c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0xc1, 0x14, 0x2c, 0xd6, 0xc1,
34578c2ecf20Sopenharmony_ci	0x1c, 0x43, 0x24, 0x24, 0xe1, 0x21, 0x03, 0x81,
34588c2ecf20Sopenharmony_ci	0x74, 0x32, 0x5e, 0xc9, 0x5e, 0xa3, 0x73, 0x54,
34598c2ecf20Sopenharmony_ci	0xf7, 0x96, 0x00, 0xad, 0x13, 0xa1, 0xd9, 0x9a,
34608c2ecf20Sopenharmony_ci	0xac, 0x48, 0x4d, 0x58, 0x01, 0x78, 0x02, 0xc2,
34618c2ecf20Sopenharmony_ci	0x85, 0x25, 0xbb, 0x3d, 0xbd, 0x96, 0x40, 0x85,
34628c2ecf20Sopenharmony_ci	0xaa, 0xd8, 0x0d, 0x0f, 0x53, 0x09, 0x7a, 0x7d,
34638c2ecf20Sopenharmony_ci	0x48, 0xb3, 0xa5, 0x9d, 0x19, 0xf3, 0xfa, 0xff,
34648c2ecf20Sopenharmony_ci	0x67, 0xe5, 0xb6, 0x47, 0xba, 0x6c, 0x6d, 0xbb,
34658c2ecf20Sopenharmony_ci	0x64, 0x4d, 0x0d, 0xfb, 0x49, 0xb9, 0x10, 0xb8,
34668c2ecf20Sopenharmony_ci	0x0c, 0x0f, 0x4e, 0x49, 0xe2, 0x3c, 0xb7, 0x92,
34678c2ecf20Sopenharmony_ci	0x88, 0x2c, 0xf4, 0xba, 0x89, 0x6d, 0x12, 0x47,
34688c2ecf20Sopenharmony_ci	0x04, 0x53, 0xfe, 0xf7, 0xc7, 0xfb, 0x77, 0xb8
34698c2ecf20Sopenharmony_ci};
34708c2ecf20Sopenharmony_cistatic const u8 enc_output064[] __initconst = {
34718c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34728c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34738c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34748c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34758c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34778c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34788c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34798c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34818c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34828c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34878c2ecf20Sopenharmony_ci	0xc8, 0x6d, 0xa8, 0xdd, 0x65, 0x22, 0x86, 0xd5,
34888c2ecf20Sopenharmony_ci	0x02, 0x13, 0xd3, 0x28, 0xd6, 0x3e, 0x40, 0x06
34898c2ecf20Sopenharmony_ci};
34908c2ecf20Sopenharmony_cistatic const u8 enc_assoc064[] __initconst = {
34918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
34928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f
34938c2ecf20Sopenharmony_ci};
34948c2ecf20Sopenharmony_cistatic const u8 enc_nonce064[] __initconst = {
34958c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
34968c2ecf20Sopenharmony_ci};
34978c2ecf20Sopenharmony_cistatic const u8 enc_key064[] __initconst = {
34988c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
34998c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
35008c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
35018c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
35028c2ecf20Sopenharmony_ci};
35038c2ecf20Sopenharmony_ci
35048c2ecf20Sopenharmony_ci/* wycheproof - misc */
35058c2ecf20Sopenharmony_cistatic const u8 enc_input065[] __initconst = {
35068c2ecf20Sopenharmony_ci	0x5a, 0x92, 0xbf, 0x77, 0xff, 0x6b, 0xe8, 0x7c,
35078c2ecf20Sopenharmony_ci	0x2a, 0x2c, 0xfb, 0x7b, 0x1b, 0xbc, 0x01, 0x17,
35088c2ecf20Sopenharmony_ci	0xa0, 0x66, 0xb8, 0xfc, 0x7c, 0x04, 0xc4, 0x84,
35098c2ecf20Sopenharmony_ci	0xff, 0x1f, 0xcf, 0x41, 0x94, 0x2c, 0xd6, 0x41
35108c2ecf20Sopenharmony_ci};
35118c2ecf20Sopenharmony_cistatic const u8 enc_output065[] __initconst = {
35128c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35138c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35148c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35158c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35168c2ecf20Sopenharmony_ci	0xbe, 0xde, 0x90, 0x83, 0xce, 0xb3, 0x6d, 0xdf,
35178c2ecf20Sopenharmony_ci	0xe5, 0xfa, 0x81, 0x1f, 0x95, 0x47, 0x1c, 0x67
35188c2ecf20Sopenharmony_ci};
35198c2ecf20Sopenharmony_cistatic const u8 enc_assoc065[] __initconst = {
35208c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35218c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff
35228c2ecf20Sopenharmony_ci};
35238c2ecf20Sopenharmony_cistatic const u8 enc_nonce065[] __initconst = {
35248c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
35258c2ecf20Sopenharmony_ci};
35268c2ecf20Sopenharmony_cistatic const u8 enc_key065[] __initconst = {
35278c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
35288c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
35298c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
35308c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
35318c2ecf20Sopenharmony_ci};
35328c2ecf20Sopenharmony_ci
35338c2ecf20Sopenharmony_ci/* wycheproof - misc */
35348c2ecf20Sopenharmony_cistatic const u8 enc_input066[] __initconst = {
35358c2ecf20Sopenharmony_ci	0x5a, 0x92, 0xbf, 0x77, 0xff, 0x6b, 0xe8, 0x7c,
35368c2ecf20Sopenharmony_ci	0x2a, 0x2c, 0xfb, 0x7b, 0x1b, 0xbc, 0x01, 0x17,
35378c2ecf20Sopenharmony_ci	0xa0, 0x66, 0xb8, 0xfc, 0x7c, 0x04, 0xc4, 0x84,
35388c2ecf20Sopenharmony_ci	0xff, 0x1f, 0xcf, 0x41, 0x94, 0x2c, 0xd6, 0x41,
35398c2ecf20Sopenharmony_ci	0x9c, 0x43, 0x24, 0xa4, 0x61, 0x21, 0x03, 0x01,
35408c2ecf20Sopenharmony_ci	0xf4, 0x32, 0x5e, 0x49, 0xde, 0xa3, 0x73, 0xd4,
35418c2ecf20Sopenharmony_ci	0x77, 0x96, 0x00, 0x2d, 0x93, 0xa1, 0xd9, 0x1a,
35428c2ecf20Sopenharmony_ci	0x2c, 0x48, 0x4d, 0xd8, 0x81, 0x78, 0x02, 0x42
35438c2ecf20Sopenharmony_ci};
35448c2ecf20Sopenharmony_cistatic const u8 enc_output066[] __initconst = {
35458c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35468c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35478c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35488c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35498c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35508c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35518c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35528c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35538c2ecf20Sopenharmony_ci	0x30, 0x08, 0x74, 0xbb, 0x06, 0x92, 0xb6, 0x89,
35548c2ecf20Sopenharmony_ci	0xde, 0xad, 0x9a, 0xe1, 0x5b, 0x06, 0x73, 0x90
35558c2ecf20Sopenharmony_ci};
35568c2ecf20Sopenharmony_cistatic const u8 enc_assoc066[] __initconst = {
35578c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35588c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff
35598c2ecf20Sopenharmony_ci};
35608c2ecf20Sopenharmony_cistatic const u8 enc_nonce066[] __initconst = {
35618c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
35628c2ecf20Sopenharmony_ci};
35638c2ecf20Sopenharmony_cistatic const u8 enc_key066[] __initconst = {
35648c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
35658c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
35668c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
35678c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
35688c2ecf20Sopenharmony_ci};
35698c2ecf20Sopenharmony_ci
35708c2ecf20Sopenharmony_ci/* wycheproof - misc */
35718c2ecf20Sopenharmony_cistatic const u8 enc_input067[] __initconst = {
35728c2ecf20Sopenharmony_ci	0x5a, 0x92, 0xbf, 0x77, 0xff, 0x6b, 0xe8, 0x7c,
35738c2ecf20Sopenharmony_ci	0x2a, 0x2c, 0xfb, 0x7b, 0x1b, 0xbc, 0x01, 0x17,
35748c2ecf20Sopenharmony_ci	0xa0, 0x66, 0xb8, 0xfc, 0x7c, 0x04, 0xc4, 0x84,
35758c2ecf20Sopenharmony_ci	0xff, 0x1f, 0xcf, 0x41, 0x94, 0x2c, 0xd6, 0x41,
35768c2ecf20Sopenharmony_ci	0x9c, 0x43, 0x24, 0xa4, 0x61, 0x21, 0x03, 0x01,
35778c2ecf20Sopenharmony_ci	0xf4, 0x32, 0x5e, 0x49, 0xde, 0xa3, 0x73, 0xd4,
35788c2ecf20Sopenharmony_ci	0x77, 0x96, 0x00, 0x2d, 0x93, 0xa1, 0xd9, 0x1a,
35798c2ecf20Sopenharmony_ci	0x2c, 0x48, 0x4d, 0xd8, 0x81, 0x78, 0x02, 0x42,
35808c2ecf20Sopenharmony_ci	0x05, 0x25, 0xbb, 0xbd, 0x3d, 0x96, 0x40, 0x05,
35818c2ecf20Sopenharmony_ci	0x2a, 0xd8, 0x0d, 0x8f, 0xd3, 0x09, 0x7a, 0xfd,
35828c2ecf20Sopenharmony_ci	0xc8, 0xb3, 0xa5, 0x1d, 0x99, 0xf3, 0xfa, 0x7f,
35838c2ecf20Sopenharmony_ci	0xe7, 0xe5, 0xb6, 0xc7, 0x3a, 0x6c, 0x6d, 0x3b,
35848c2ecf20Sopenharmony_ci	0xe4, 0x4d, 0x0d, 0x7b, 0xc9, 0xb9, 0x10, 0x38,
35858c2ecf20Sopenharmony_ci	0x8c, 0x0f, 0x4e, 0xc9, 0x62, 0x3c, 0xb7, 0x12,
35868c2ecf20Sopenharmony_ci	0x08, 0x2c, 0xf4, 0x3a, 0x09, 0x6d, 0x12, 0xc7,
35878c2ecf20Sopenharmony_ci	0x84, 0x53, 0xfe, 0x77, 0x47, 0xfb, 0x77, 0x38
35888c2ecf20Sopenharmony_ci};
35898c2ecf20Sopenharmony_cistatic const u8 enc_output067[] __initconst = {
35908c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35918c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35928c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35938c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35948c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35958c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35968c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35978c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35988c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
35998c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36008c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36018c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36028c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36038c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36048c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36058c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36068c2ecf20Sopenharmony_ci	0x99, 0xca, 0xd8, 0x5f, 0x45, 0xca, 0x40, 0x94,
36078c2ecf20Sopenharmony_ci	0x2d, 0x0d, 0x4d, 0x5e, 0x95, 0x0a, 0xde, 0x22
36088c2ecf20Sopenharmony_ci};
36098c2ecf20Sopenharmony_cistatic const u8 enc_assoc067[] __initconst = {
36108c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
36118c2ecf20Sopenharmony_ci	0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff
36128c2ecf20Sopenharmony_ci};
36138c2ecf20Sopenharmony_cistatic const u8 enc_nonce067[] __initconst = {
36148c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
36158c2ecf20Sopenharmony_ci};
36168c2ecf20Sopenharmony_cistatic const u8 enc_key067[] __initconst = {
36178c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
36188c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
36198c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
36208c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
36218c2ecf20Sopenharmony_ci};
36228c2ecf20Sopenharmony_ci
36238c2ecf20Sopenharmony_ci/* wycheproof - misc */
36248c2ecf20Sopenharmony_cistatic const u8 enc_input068[] __initconst = {
36258c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x88, 0x7f, 0x6b, 0xe8, 0x7c,
36268c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x84, 0x9b, 0xbc, 0x01, 0x17,
36278c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x03, 0xfc, 0x04, 0xc4, 0x84,
36288c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0xbe, 0x14, 0x2c, 0xd6, 0x41
36298c2ecf20Sopenharmony_ci};
36308c2ecf20Sopenharmony_cistatic const u8 enc_output068[] __initconst = {
36318c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36328c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36338c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36348c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36358c2ecf20Sopenharmony_ci	0x8b, 0xbe, 0x14, 0x52, 0x72, 0xe7, 0xc2, 0xd9,
36368c2ecf20Sopenharmony_ci	0xa1, 0x89, 0x1a, 0x3a, 0xb0, 0x98, 0x3d, 0x9d
36378c2ecf20Sopenharmony_ci};
36388c2ecf20Sopenharmony_cistatic const u8 enc_assoc068[] __initconst = {
36398c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36408c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
36418c2ecf20Sopenharmony_ci};
36428c2ecf20Sopenharmony_cistatic const u8 enc_nonce068[] __initconst = {
36438c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
36448c2ecf20Sopenharmony_ci};
36458c2ecf20Sopenharmony_cistatic const u8 enc_key068[] __initconst = {
36468c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
36478c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
36488c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
36498c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
36508c2ecf20Sopenharmony_ci};
36518c2ecf20Sopenharmony_ci
36528c2ecf20Sopenharmony_ci/* wycheproof - misc */
36538c2ecf20Sopenharmony_cistatic const u8 enc_input069[] __initconst = {
36548c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x88, 0x7f, 0x6b, 0xe8, 0x7c,
36558c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x84, 0x9b, 0xbc, 0x01, 0x17,
36568c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x03, 0xfc, 0x04, 0xc4, 0x84,
36578c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0xbe, 0x14, 0x2c, 0xd6, 0x41,
36588c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0xdb, 0x5b, 0xe1, 0x21, 0x03, 0x01,
36598c2ecf20Sopenharmony_ci	0x8b, 0xcd, 0xa1, 0xb6, 0x5e, 0xa3, 0x73, 0xd4,
36608c2ecf20Sopenharmony_ci	0x08, 0x69, 0xff, 0xd2, 0x13, 0xa1, 0xd9, 0x1a,
36618c2ecf20Sopenharmony_ci	0x53, 0xb7, 0xb2, 0x27, 0x01, 0x78, 0x02, 0x42
36628c2ecf20Sopenharmony_ci};
36638c2ecf20Sopenharmony_cistatic const u8 enc_output069[] __initconst = {
36648c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36658c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36668c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36678c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36688c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36698c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36708c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36718c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36728c2ecf20Sopenharmony_ci	0x3b, 0x41, 0x86, 0x19, 0x13, 0xa8, 0xf6, 0xde,
36738c2ecf20Sopenharmony_ci	0x7f, 0x61, 0xe2, 0x25, 0x63, 0x1b, 0xc3, 0x82
36748c2ecf20Sopenharmony_ci};
36758c2ecf20Sopenharmony_cistatic const u8 enc_assoc069[] __initconst = {
36768c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
36778c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
36788c2ecf20Sopenharmony_ci};
36798c2ecf20Sopenharmony_cistatic const u8 enc_nonce069[] __initconst = {
36808c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
36818c2ecf20Sopenharmony_ci};
36828c2ecf20Sopenharmony_cistatic const u8 enc_key069[] __initconst = {
36838c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
36848c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
36858c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
36868c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
36878c2ecf20Sopenharmony_ci};
36888c2ecf20Sopenharmony_ci
36898c2ecf20Sopenharmony_ci/* wycheproof - misc */
36908c2ecf20Sopenharmony_cistatic const u8 enc_input070[] __initconst = {
36918c2ecf20Sopenharmony_ci	0x25, 0x6d, 0x40, 0x88, 0x7f, 0x6b, 0xe8, 0x7c,
36928c2ecf20Sopenharmony_ci	0x55, 0xd3, 0x04, 0x84, 0x9b, 0xbc, 0x01, 0x17,
36938c2ecf20Sopenharmony_ci	0xdf, 0x99, 0x47, 0x03, 0xfc, 0x04, 0xc4, 0x84,
36948c2ecf20Sopenharmony_ci	0x80, 0xe0, 0x30, 0xbe, 0x14, 0x2c, 0xd6, 0x41,
36958c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0xdb, 0x5b, 0xe1, 0x21, 0x03, 0x01,
36968c2ecf20Sopenharmony_ci	0x8b, 0xcd, 0xa1, 0xb6, 0x5e, 0xa3, 0x73, 0xd4,
36978c2ecf20Sopenharmony_ci	0x08, 0x69, 0xff, 0xd2, 0x13, 0xa1, 0xd9, 0x1a,
36988c2ecf20Sopenharmony_ci	0x53, 0xb7, 0xb2, 0x27, 0x01, 0x78, 0x02, 0x42,
36998c2ecf20Sopenharmony_ci	0x7a, 0xda, 0x44, 0x42, 0xbd, 0x96, 0x40, 0x05,
37008c2ecf20Sopenharmony_ci	0x55, 0x27, 0xf2, 0x70, 0x53, 0x09, 0x7a, 0xfd,
37018c2ecf20Sopenharmony_ci	0xb7, 0x4c, 0x5a, 0xe2, 0x19, 0xf3, 0xfa, 0x7f,
37028c2ecf20Sopenharmony_ci	0x98, 0x1a, 0x49, 0x38, 0xba, 0x6c, 0x6d, 0x3b,
37038c2ecf20Sopenharmony_ci	0x9b, 0xb2, 0xf2, 0x84, 0x49, 0xb9, 0x10, 0x38,
37048c2ecf20Sopenharmony_ci	0xf3, 0xf0, 0xb1, 0x36, 0xe2, 0x3c, 0xb7, 0x12,
37058c2ecf20Sopenharmony_ci	0x77, 0xd3, 0x0b, 0xc5, 0x89, 0x6d, 0x12, 0xc7,
37068c2ecf20Sopenharmony_ci	0xfb, 0xac, 0x01, 0x88, 0xc7, 0xfb, 0x77, 0x38
37078c2ecf20Sopenharmony_ci};
37088c2ecf20Sopenharmony_cistatic const u8 enc_output070[] __initconst = {
37098c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37108c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37118c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37128c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37138c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37148c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37158c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37168c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37178c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37188c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37198c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37208c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37218c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37228c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37238c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37248c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37258c2ecf20Sopenharmony_ci	0x84, 0x28, 0xbc, 0xf0, 0x23, 0xec, 0x6b, 0xf3,
37268c2ecf20Sopenharmony_ci	0x1f, 0xd9, 0xef, 0xb2, 0x03, 0xff, 0x08, 0x71
37278c2ecf20Sopenharmony_ci};
37288c2ecf20Sopenharmony_cistatic const u8 enc_assoc070[] __initconst = {
37298c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
37308c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
37318c2ecf20Sopenharmony_ci};
37328c2ecf20Sopenharmony_cistatic const u8 enc_nonce070[] __initconst = {
37338c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
37348c2ecf20Sopenharmony_ci};
37358c2ecf20Sopenharmony_cistatic const u8 enc_key070[] __initconst = {
37368c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
37378c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
37388c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
37398c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
37408c2ecf20Sopenharmony_ci};
37418c2ecf20Sopenharmony_ci
37428c2ecf20Sopenharmony_ci/* wycheproof - misc */
37438c2ecf20Sopenharmony_cistatic const u8 enc_input071[] __initconst = {
37448c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0x77, 0x80, 0x94, 0x17, 0x83,
37458c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0x7b, 0x64, 0x43, 0xfe, 0xe8,
37468c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0xfc, 0x03, 0xfb, 0x3b, 0x7b,
37478c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0x41, 0xeb, 0xd3, 0x29, 0xbe
37488c2ecf20Sopenharmony_ci};
37498c2ecf20Sopenharmony_cistatic const u8 enc_output071[] __initconst = {
37508c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37518c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37538c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37548c2ecf20Sopenharmony_ci	0x13, 0x9f, 0xdf, 0x64, 0x74, 0xea, 0x24, 0xf5,
37558c2ecf20Sopenharmony_ci	0x49, 0xb0, 0x75, 0x82, 0x5f, 0x2c, 0x76, 0x20
37568c2ecf20Sopenharmony_ci};
37578c2ecf20Sopenharmony_cistatic const u8 enc_assoc071[] __initconst = {
37588c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37598c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
37608c2ecf20Sopenharmony_ci};
37618c2ecf20Sopenharmony_cistatic const u8 enc_nonce071[] __initconst = {
37628c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
37638c2ecf20Sopenharmony_ci};
37648c2ecf20Sopenharmony_cistatic const u8 enc_key071[] __initconst = {
37658c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
37668c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
37678c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
37688c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
37698c2ecf20Sopenharmony_ci};
37708c2ecf20Sopenharmony_ci
37718c2ecf20Sopenharmony_ci/* wycheproof - misc */
37728c2ecf20Sopenharmony_cistatic const u8 enc_input072[] __initconst = {
37738c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0x77, 0x80, 0x94, 0x17, 0x83,
37748c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0x7b, 0x64, 0x43, 0xfe, 0xe8,
37758c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0xfc, 0x03, 0xfb, 0x3b, 0x7b,
37768c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0x41, 0xeb, 0xd3, 0x29, 0xbe,
37778c2ecf20Sopenharmony_ci	0x1c, 0x43, 0x24, 0xa4, 0x1e, 0xde, 0xfc, 0xfe,
37788c2ecf20Sopenharmony_ci	0x74, 0x32, 0x5e, 0x49, 0xa1, 0x5c, 0x8c, 0x2b,
37798c2ecf20Sopenharmony_ci	0xf7, 0x96, 0x00, 0x2d, 0xec, 0x5e, 0x26, 0xe5,
37808c2ecf20Sopenharmony_ci	0xac, 0x48, 0x4d, 0xd8, 0xfe, 0x87, 0xfd, 0xbd
37818c2ecf20Sopenharmony_ci};
37828c2ecf20Sopenharmony_cistatic const u8 enc_output072[] __initconst = {
37838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37898c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37908c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37918c2ecf20Sopenharmony_ci	0xbb, 0xad, 0x8d, 0x86, 0x3b, 0x83, 0x5a, 0x8e,
37928c2ecf20Sopenharmony_ci	0x86, 0x64, 0xfd, 0x1d, 0x45, 0x66, 0xb6, 0xb4
37938c2ecf20Sopenharmony_ci};
37948c2ecf20Sopenharmony_cistatic const u8 enc_assoc072[] __initconst = {
37958c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
37968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
37978c2ecf20Sopenharmony_ci};
37988c2ecf20Sopenharmony_cistatic const u8 enc_nonce072[] __initconst = {
37998c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
38008c2ecf20Sopenharmony_ci};
38018c2ecf20Sopenharmony_cistatic const u8 enc_key072[] __initconst = {
38028c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
38038c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
38048c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
38058c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
38068c2ecf20Sopenharmony_ci};
38078c2ecf20Sopenharmony_ci
38088c2ecf20Sopenharmony_ci/* wycheproof - misc */
38098c2ecf20Sopenharmony_cistatic const u8 enc_input073[] __initconst = {
38108c2ecf20Sopenharmony_ci	0xda, 0x92, 0xbf, 0x77, 0x80, 0x94, 0x17, 0x83,
38118c2ecf20Sopenharmony_ci	0xaa, 0x2c, 0xfb, 0x7b, 0x64, 0x43, 0xfe, 0xe8,
38128c2ecf20Sopenharmony_ci	0x20, 0x66, 0xb8, 0xfc, 0x03, 0xfb, 0x3b, 0x7b,
38138c2ecf20Sopenharmony_ci	0x7f, 0x1f, 0xcf, 0x41, 0xeb, 0xd3, 0x29, 0xbe,
38148c2ecf20Sopenharmony_ci	0x1c, 0x43, 0x24, 0xa4, 0x1e, 0xde, 0xfc, 0xfe,
38158c2ecf20Sopenharmony_ci	0x74, 0x32, 0x5e, 0x49, 0xa1, 0x5c, 0x8c, 0x2b,
38168c2ecf20Sopenharmony_ci	0xf7, 0x96, 0x00, 0x2d, 0xec, 0x5e, 0x26, 0xe5,
38178c2ecf20Sopenharmony_ci	0xac, 0x48, 0x4d, 0xd8, 0xfe, 0x87, 0xfd, 0xbd,
38188c2ecf20Sopenharmony_ci	0x85, 0x25, 0xbb, 0xbd, 0x42, 0x69, 0xbf, 0xfa,
38198c2ecf20Sopenharmony_ci	0xaa, 0xd8, 0x0d, 0x8f, 0xac, 0xf6, 0x85, 0x02,
38208c2ecf20Sopenharmony_ci	0x48, 0xb3, 0xa5, 0x1d, 0xe6, 0x0c, 0x05, 0x80,
38218c2ecf20Sopenharmony_ci	0x67, 0xe5, 0xb6, 0xc7, 0x45, 0x93, 0x92, 0xc4,
38228c2ecf20Sopenharmony_ci	0x64, 0x4d, 0x0d, 0x7b, 0xb6, 0x46, 0xef, 0xc7,
38238c2ecf20Sopenharmony_ci	0x0c, 0x0f, 0x4e, 0xc9, 0x1d, 0xc3, 0x48, 0xed,
38248c2ecf20Sopenharmony_ci	0x88, 0x2c, 0xf4, 0x3a, 0x76, 0x92, 0xed, 0x38,
38258c2ecf20Sopenharmony_ci	0x04, 0x53, 0xfe, 0x77, 0x38, 0x04, 0x88, 0xc7
38268c2ecf20Sopenharmony_ci};
38278c2ecf20Sopenharmony_cistatic const u8 enc_output073[] __initconst = {
38288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38298c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38308c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38318c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38338c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38348c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38358c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38378c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38388c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38428c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38448c2ecf20Sopenharmony_ci	0x42, 0xf2, 0x35, 0x42, 0x97, 0x84, 0x9a, 0x51,
38458c2ecf20Sopenharmony_ci	0x1d, 0x53, 0xe5, 0x57, 0x17, 0x72, 0xf7, 0x1f
38468c2ecf20Sopenharmony_ci};
38478c2ecf20Sopenharmony_cistatic const u8 enc_assoc073[] __initconst = {
38488c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
38498c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00
38508c2ecf20Sopenharmony_ci};
38518c2ecf20Sopenharmony_cistatic const u8 enc_nonce073[] __initconst = {
38528c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0xee, 0x32, 0x00
38538c2ecf20Sopenharmony_ci};
38548c2ecf20Sopenharmony_cistatic const u8 enc_key073[] __initconst = {
38558c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
38568c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
38578c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
38588c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
38598c2ecf20Sopenharmony_ci};
38608c2ecf20Sopenharmony_ci
38618c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
38628c2ecf20Sopenharmony_cistatic const u8 enc_input074[] __initconst = {
38638c2ecf20Sopenharmony_ci	0xd4, 0x50, 0x0b, 0xf0, 0x09, 0x49, 0x35, 0x51,
38648c2ecf20Sopenharmony_ci	0xc3, 0x80, 0xad, 0xf5, 0x2c, 0x57, 0x3a, 0x69,
38658c2ecf20Sopenharmony_ci	0xdf, 0x7e, 0x8b, 0x76, 0x24, 0x63, 0x33, 0x0f,
38668c2ecf20Sopenharmony_ci	0xac, 0xc1, 0x6a, 0x57, 0x26, 0xbe, 0x71, 0x90,
38678c2ecf20Sopenharmony_ci	0xc6, 0x3c, 0x5a, 0x1c, 0x92, 0x65, 0x84, 0xa0,
38688c2ecf20Sopenharmony_ci	0x96, 0x75, 0x68, 0x28, 0xdc, 0xdc, 0x64, 0xac,
38698c2ecf20Sopenharmony_ci	0xdf, 0x96, 0x3d, 0x93, 0x1b, 0xf1, 0xda, 0xe2,
38708c2ecf20Sopenharmony_ci	0x38, 0xf3, 0xf1, 0x57, 0x22, 0x4a, 0xc4, 0xb5,
38718c2ecf20Sopenharmony_ci	0x42, 0xd7, 0x85, 0xb0, 0xdd, 0x84, 0xdb, 0x6b,
38728c2ecf20Sopenharmony_ci	0xe3, 0xbc, 0x5a, 0x36, 0x63, 0xe8, 0x41, 0x49,
38738c2ecf20Sopenharmony_ci	0xff, 0xbe, 0xd0, 0x9e, 0x54, 0xf7, 0x8f, 0x16,
38748c2ecf20Sopenharmony_ci	0xa8, 0x22, 0x3b, 0x24, 0xcb, 0x01, 0x9f, 0x58,
38758c2ecf20Sopenharmony_ci	0xb2, 0x1b, 0x0e, 0x55, 0x1e, 0x7a, 0xa0, 0x73,
38768c2ecf20Sopenharmony_ci	0x27, 0x62, 0x95, 0x51, 0x37, 0x6c, 0xcb, 0xc3,
38778c2ecf20Sopenharmony_ci	0x93, 0x76, 0x71, 0xa0, 0x62, 0x9b, 0xd9, 0x5c,
38788c2ecf20Sopenharmony_ci	0x99, 0x15, 0xc7, 0x85, 0x55, 0x77, 0x1e, 0x7a
38798c2ecf20Sopenharmony_ci};
38808c2ecf20Sopenharmony_cistatic const u8 enc_output074[] __initconst = {
38818c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38828c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38898c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38908c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38938c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38948c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38958c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38978c2ecf20Sopenharmony_ci	0x0b, 0x30, 0x0d, 0x8d, 0xa5, 0x6c, 0x21, 0x85,
38988c2ecf20Sopenharmony_ci	0x75, 0x52, 0x79, 0x55, 0x3c, 0x4c, 0x82, 0xca
38998c2ecf20Sopenharmony_ci};
39008c2ecf20Sopenharmony_cistatic const u8 enc_assoc074[] __initconst = {
39018c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39028c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39058c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39068c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39078c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
39098c2ecf20Sopenharmony_ci};
39108c2ecf20Sopenharmony_cistatic const u8 enc_nonce074[] __initconst = {
39118c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39128c2ecf20Sopenharmony_ci	0x00, 0x02, 0x50, 0x6e
39138c2ecf20Sopenharmony_ci};
39148c2ecf20Sopenharmony_cistatic const u8 enc_key074[] __initconst = {
39158c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39168c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39178c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39188c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
39198c2ecf20Sopenharmony_ci};
39208c2ecf20Sopenharmony_ci
39218c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
39228c2ecf20Sopenharmony_cistatic const u8 enc_input075[] __initconst = {
39238c2ecf20Sopenharmony_ci	0x7d, 0xe8, 0x7f, 0x67, 0x29, 0x94, 0x52, 0x75,
39248c2ecf20Sopenharmony_ci	0xd0, 0x65, 0x5d, 0xa4, 0xc7, 0xfd, 0xe4, 0x56,
39258c2ecf20Sopenharmony_ci	0x9e, 0x16, 0xf1, 0x11, 0xb5, 0xeb, 0x26, 0xc2,
39268c2ecf20Sopenharmony_ci	0x2d, 0x85, 0x9e, 0x3f, 0xf8, 0x22, 0xec, 0xed,
39278c2ecf20Sopenharmony_ci	0x3a, 0x6d, 0xd9, 0xa6, 0x0f, 0x22, 0x95, 0x7f,
39288c2ecf20Sopenharmony_ci	0x7b, 0x7c, 0x85, 0x7e, 0x88, 0x22, 0xeb, 0x9f,
39298c2ecf20Sopenharmony_ci	0xe0, 0xb8, 0xd7, 0x02, 0x21, 0x41, 0xf2, 0xd0,
39308c2ecf20Sopenharmony_ci	0xb4, 0x8f, 0x4b, 0x56, 0x12, 0xd3, 0x22, 0xa8,
39318c2ecf20Sopenharmony_ci	0x8d, 0xd0, 0xfe, 0x0b, 0x4d, 0x91, 0x79, 0x32,
39328c2ecf20Sopenharmony_ci	0x4f, 0x7c, 0x6c, 0x9e, 0x99, 0x0e, 0xfb, 0xd8,
39338c2ecf20Sopenharmony_ci	0x0e, 0x5e, 0xd6, 0x77, 0x58, 0x26, 0x49, 0x8b,
39348c2ecf20Sopenharmony_ci	0x1e, 0xfe, 0x0f, 0x71, 0xa0, 0xf3, 0xec, 0x5b,
39358c2ecf20Sopenharmony_ci	0x29, 0xcb, 0x28, 0xc2, 0x54, 0x0a, 0x7d, 0xcd,
39368c2ecf20Sopenharmony_ci	0x51, 0xb7, 0xda, 0xae, 0xe0, 0xff, 0x4a, 0x7f,
39378c2ecf20Sopenharmony_ci	0x3a, 0xc1, 0xee, 0x54, 0xc2, 0x9e, 0xe4, 0xc1,
39388c2ecf20Sopenharmony_ci	0x70, 0xde, 0x40, 0x8f, 0x66, 0x69, 0x21, 0x94
39398c2ecf20Sopenharmony_ci};
39408c2ecf20Sopenharmony_cistatic const u8 enc_output075[] __initconst = {
39418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39428c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39448c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39458c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39468c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39488c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39498c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39508c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39518c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39538c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39548c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39558c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39578c2ecf20Sopenharmony_ci	0xc5, 0x78, 0xe2, 0xaa, 0x44, 0xd3, 0x09, 0xb7,
39588c2ecf20Sopenharmony_ci	0xb6, 0xa5, 0x19, 0x3b, 0xdc, 0x61, 0x18, 0xf5
39598c2ecf20Sopenharmony_ci};
39608c2ecf20Sopenharmony_cistatic const u8 enc_assoc075[] __initconst = {
39618c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39628c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39658c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39668c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39678c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
39698c2ecf20Sopenharmony_ci};
39708c2ecf20Sopenharmony_cistatic const u8 enc_nonce075[] __initconst = {
39718c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39728c2ecf20Sopenharmony_ci	0x00, 0x03, 0x18, 0xa5
39738c2ecf20Sopenharmony_ci};
39748c2ecf20Sopenharmony_cistatic const u8 enc_key075[] __initconst = {
39758c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39768c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39778c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
39788c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
39798c2ecf20Sopenharmony_ci};
39808c2ecf20Sopenharmony_ci
39818c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
39828c2ecf20Sopenharmony_cistatic const u8 enc_input076[] __initconst = {
39838c2ecf20Sopenharmony_ci	0x1b, 0x99, 0x6f, 0x9a, 0x3c, 0xcc, 0x67, 0x85,
39848c2ecf20Sopenharmony_ci	0xde, 0x22, 0xff, 0x5b, 0x8a, 0xdd, 0x95, 0x02,
39858c2ecf20Sopenharmony_ci	0xce, 0x03, 0xa0, 0xfa, 0xf5, 0x99, 0x2a, 0x09,
39868c2ecf20Sopenharmony_ci	0x52, 0x2c, 0xdd, 0x12, 0x06, 0xd2, 0x20, 0xb8,
39878c2ecf20Sopenharmony_ci	0xf8, 0xbd, 0x07, 0xd1, 0xf1, 0xf5, 0xa1, 0xbd,
39888c2ecf20Sopenharmony_ci	0x9a, 0x71, 0xd1, 0x1c, 0x7f, 0x57, 0x9b, 0x85,
39898c2ecf20Sopenharmony_ci	0x58, 0x18, 0xc0, 0x8d, 0x4d, 0xe0, 0x36, 0x39,
39908c2ecf20Sopenharmony_ci	0x31, 0x83, 0xb7, 0xf5, 0x90, 0xb3, 0x35, 0xae,
39918c2ecf20Sopenharmony_ci	0xd8, 0xde, 0x5b, 0x57, 0xb1, 0x3c, 0x5f, 0xed,
39928c2ecf20Sopenharmony_ci	0xe2, 0x44, 0x1c, 0x3e, 0x18, 0x4a, 0xa9, 0xd4,
39938c2ecf20Sopenharmony_ci	0x6e, 0x61, 0x59, 0x85, 0x06, 0xb3, 0xe1, 0x1c,
39948c2ecf20Sopenharmony_ci	0x43, 0xc6, 0x2c, 0xbc, 0xac, 0xec, 0xed, 0x33,
39958c2ecf20Sopenharmony_ci	0x19, 0x08, 0x75, 0xb0, 0x12, 0x21, 0x8b, 0x19,
39968c2ecf20Sopenharmony_ci	0x30, 0xfb, 0x7c, 0x38, 0xec, 0x45, 0xac, 0x11,
39978c2ecf20Sopenharmony_ci	0xc3, 0x53, 0xd0, 0xcf, 0x93, 0x8d, 0xcc, 0xb9,
39988c2ecf20Sopenharmony_ci	0xef, 0xad, 0x8f, 0xed, 0xbe, 0x46, 0xda, 0xa5
39998c2ecf20Sopenharmony_ci};
40008c2ecf20Sopenharmony_cistatic const u8 enc_output076[] __initconst = {
40018c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40028c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40058c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40068c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40078c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40098c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40108c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40118c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40128c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40138c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40148c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40158c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40178c2ecf20Sopenharmony_ci	0x4b, 0x0b, 0xda, 0x8a, 0xd0, 0x43, 0x83, 0x0d,
40188c2ecf20Sopenharmony_ci	0x83, 0x19, 0xab, 0x82, 0xc5, 0x0c, 0x76, 0x63
40198c2ecf20Sopenharmony_ci};
40208c2ecf20Sopenharmony_cistatic const u8 enc_assoc076[] __initconst = {
40218c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40228c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40258c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40268c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
40298c2ecf20Sopenharmony_ci};
40308c2ecf20Sopenharmony_cistatic const u8 enc_nonce076[] __initconst = {
40318c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xb4, 0xf0
40328c2ecf20Sopenharmony_ci};
40338c2ecf20Sopenharmony_cistatic const u8 enc_key076[] __initconst = {
40348c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
40358c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
40368c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
40378c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
40388c2ecf20Sopenharmony_ci};
40398c2ecf20Sopenharmony_ci
40408c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
40418c2ecf20Sopenharmony_cistatic const u8 enc_input077[] __initconst = {
40428c2ecf20Sopenharmony_ci	0x86, 0xcb, 0xac, 0xae, 0x4d, 0x3f, 0x74, 0xae,
40438c2ecf20Sopenharmony_ci	0x01, 0x21, 0x3e, 0x05, 0x51, 0xcc, 0x15, 0x16,
40448c2ecf20Sopenharmony_ci	0x0e, 0xa1, 0xbe, 0x84, 0x08, 0xe3, 0xd5, 0xd7,
40458c2ecf20Sopenharmony_ci	0x4f, 0x01, 0x46, 0x49, 0x95, 0xa6, 0x9e, 0x61,
40468c2ecf20Sopenharmony_ci	0x76, 0xcb, 0x9e, 0x02, 0xb2, 0x24, 0x7e, 0xd2,
40478c2ecf20Sopenharmony_ci	0x99, 0x89, 0x2f, 0x91, 0x82, 0xa4, 0x5c, 0xaf,
40488c2ecf20Sopenharmony_ci	0x4c, 0x69, 0x40, 0x56, 0x11, 0x76, 0x6e, 0xdf,
40498c2ecf20Sopenharmony_ci	0xaf, 0xdc, 0x28, 0x55, 0x19, 0xea, 0x30, 0x48,
40508c2ecf20Sopenharmony_ci	0x0c, 0x44, 0xf0, 0x5e, 0x78, 0x1e, 0xac, 0xf8,
40518c2ecf20Sopenharmony_ci	0xfc, 0xec, 0xc7, 0x09, 0x0a, 0xbb, 0x28, 0xfa,
40528c2ecf20Sopenharmony_ci	0x5f, 0xd5, 0x85, 0xac, 0x8c, 0xda, 0x7e, 0x87,
40538c2ecf20Sopenharmony_ci	0x72, 0xe5, 0x94, 0xe4, 0xce, 0x6c, 0x88, 0x32,
40548c2ecf20Sopenharmony_ci	0x81, 0x93, 0x2e, 0x0f, 0x89, 0xf8, 0x77, 0xa1,
40558c2ecf20Sopenharmony_ci	0xf0, 0x4d, 0x9c, 0x32, 0xb0, 0x6c, 0xf9, 0x0b,
40568c2ecf20Sopenharmony_ci	0x0e, 0x76, 0x2b, 0x43, 0x0c, 0x4d, 0x51, 0x7c,
40578c2ecf20Sopenharmony_ci	0x97, 0x10, 0x70, 0x68, 0xf4, 0x98, 0xef, 0x7f
40588c2ecf20Sopenharmony_ci};
40598c2ecf20Sopenharmony_cistatic const u8 enc_output077[] __initconst = {
40608c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40618c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40628c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40658c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40668c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40678c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40698c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40708c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40718c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40728c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40738c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40748c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40758c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40768c2ecf20Sopenharmony_ci	0x4b, 0xc9, 0x8f, 0x72, 0xc4, 0x94, 0xc2, 0xa4,
40778c2ecf20Sopenharmony_ci	0x3c, 0x2b, 0x15, 0xa1, 0x04, 0x3f, 0x1c, 0xfa
40788c2ecf20Sopenharmony_ci};
40798c2ecf20Sopenharmony_cistatic const u8 enc_assoc077[] __initconst = {
40808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40818c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40828c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
40888c2ecf20Sopenharmony_ci};
40898c2ecf20Sopenharmony_cistatic const u8 enc_nonce077[] __initconst = {
40908c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xfb, 0x66
40918c2ecf20Sopenharmony_ci};
40928c2ecf20Sopenharmony_cistatic const u8 enc_key077[] __initconst = {
40938c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
40948c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
40958c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
40968c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
40978c2ecf20Sopenharmony_ci};
40988c2ecf20Sopenharmony_ci
40998c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
41008c2ecf20Sopenharmony_cistatic const u8 enc_input078[] __initconst = {
41018c2ecf20Sopenharmony_ci	0xfa, 0xb1, 0xcd, 0xdf, 0x4f, 0xe1, 0x98, 0xef,
41028c2ecf20Sopenharmony_ci	0x63, 0xad, 0xd8, 0x81, 0xd6, 0xea, 0xd6, 0xc5,
41038c2ecf20Sopenharmony_ci	0x76, 0x37, 0xbb, 0xe9, 0x20, 0x18, 0xca, 0x7c,
41048c2ecf20Sopenharmony_ci	0x0b, 0x96, 0xfb, 0xa0, 0x87, 0x1e, 0x93, 0x2d,
41058c2ecf20Sopenharmony_ci	0xb1, 0xfb, 0xf9, 0x07, 0x61, 0xbe, 0x25, 0xdf,
41068c2ecf20Sopenharmony_ci	0x8d, 0xfa, 0xf9, 0x31, 0xce, 0x57, 0x57, 0xe6,
41078c2ecf20Sopenharmony_ci	0x17, 0xb3, 0xd7, 0xa9, 0xf0, 0xbf, 0x0f, 0xfe,
41088c2ecf20Sopenharmony_ci	0x5d, 0x59, 0x1a, 0x33, 0xc1, 0x43, 0xb8, 0xf5,
41098c2ecf20Sopenharmony_ci	0x3f, 0xd0, 0xb5, 0xa1, 0x96, 0x09, 0xfd, 0x62,
41108c2ecf20Sopenharmony_ci	0xe5, 0xc2, 0x51, 0xa4, 0x28, 0x1a, 0x20, 0x0c,
41118c2ecf20Sopenharmony_ci	0xfd, 0xc3, 0x4f, 0x28, 0x17, 0x10, 0x40, 0x6f,
41128c2ecf20Sopenharmony_ci	0x4e, 0x37, 0x62, 0x54, 0x46, 0xff, 0x6e, 0xf2,
41138c2ecf20Sopenharmony_ci	0x24, 0x91, 0x3d, 0xeb, 0x0d, 0x89, 0xaf, 0x33,
41148c2ecf20Sopenharmony_ci	0x71, 0x28, 0xe3, 0xd1, 0x55, 0xd1, 0x6d, 0x3e,
41158c2ecf20Sopenharmony_ci	0xc3, 0x24, 0x60, 0x41, 0x43, 0x21, 0x43, 0xe9,
41168c2ecf20Sopenharmony_ci	0xab, 0x3a, 0x6d, 0x2c, 0xcc, 0x2f, 0x4d, 0x62
41178c2ecf20Sopenharmony_ci};
41188c2ecf20Sopenharmony_cistatic const u8 enc_output078[] __initconst = {
41198c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41208c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41218c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41228c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41258c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41268c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41298c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41308c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41318c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41338c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41348c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41358c2ecf20Sopenharmony_ci	0xf7, 0xe9, 0xe1, 0x51, 0xb0, 0x25, 0x33, 0xc7,
41368c2ecf20Sopenharmony_ci	0x46, 0x58, 0xbf, 0xc7, 0x73, 0x7c, 0x68, 0x0d
41378c2ecf20Sopenharmony_ci};
41388c2ecf20Sopenharmony_cistatic const u8 enc_assoc078[] __initconst = {
41398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41428c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41448c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41458c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41468c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
41478c2ecf20Sopenharmony_ci};
41488c2ecf20Sopenharmony_cistatic const u8 enc_nonce078[] __initconst = {
41498c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0xbb, 0x90
41508c2ecf20Sopenharmony_ci};
41518c2ecf20Sopenharmony_cistatic const u8 enc_key078[] __initconst = {
41528c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
41538c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
41548c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
41558c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
41568c2ecf20Sopenharmony_ci};
41578c2ecf20Sopenharmony_ci
41588c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
41598c2ecf20Sopenharmony_cistatic const u8 enc_input079[] __initconst = {
41608c2ecf20Sopenharmony_ci	0x22, 0x72, 0x02, 0xbe, 0x7f, 0x35, 0x15, 0xe9,
41618c2ecf20Sopenharmony_ci	0xd1, 0xc0, 0x2e, 0xea, 0x2f, 0x19, 0x50, 0xb6,
41628c2ecf20Sopenharmony_ci	0x48, 0x1b, 0x04, 0x8a, 0x4c, 0x91, 0x50, 0x6c,
41638c2ecf20Sopenharmony_ci	0xb4, 0x0d, 0x50, 0x4e, 0x6c, 0x94, 0x9f, 0x82,
41648c2ecf20Sopenharmony_ci	0xd1, 0x97, 0xc2, 0x5a, 0xd1, 0x7d, 0xc7, 0x21,
41658c2ecf20Sopenharmony_ci	0x65, 0x11, 0x25, 0x78, 0x2a, 0xc7, 0xa7, 0x12,
41668c2ecf20Sopenharmony_ci	0x47, 0xfe, 0xae, 0xf3, 0x2f, 0x1f, 0x25, 0x0c,
41678c2ecf20Sopenharmony_ci	0xe4, 0xbb, 0x8f, 0x79, 0xac, 0xaa, 0x17, 0x9d,
41688c2ecf20Sopenharmony_ci	0x45, 0xa7, 0xb0, 0x54, 0x5f, 0x09, 0x24, 0x32,
41698c2ecf20Sopenharmony_ci	0x5e, 0xfa, 0x87, 0xd5, 0xe4, 0x41, 0xd2, 0x84,
41708c2ecf20Sopenharmony_ci	0x78, 0xc6, 0x1f, 0x22, 0x23, 0xee, 0x67, 0xc3,
41718c2ecf20Sopenharmony_ci	0xb4, 0x1f, 0x43, 0x94, 0x53, 0x5e, 0x2a, 0x24,
41728c2ecf20Sopenharmony_ci	0x36, 0x9a, 0x2e, 0x16, 0x61, 0x3c, 0x45, 0x94,
41738c2ecf20Sopenharmony_ci	0x90, 0xc1, 0x4f, 0xb1, 0xd7, 0x55, 0xfe, 0x53,
41748c2ecf20Sopenharmony_ci	0xfb, 0xe1, 0xee, 0x45, 0xb1, 0xb2, 0x1f, 0x71,
41758c2ecf20Sopenharmony_ci	0x62, 0xe2, 0xfc, 0xaa, 0x74, 0x2a, 0xbe, 0xfd
41768c2ecf20Sopenharmony_ci};
41778c2ecf20Sopenharmony_cistatic const u8 enc_output079[] __initconst = {
41788c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41798c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41818c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41828c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41898c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41908c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41938c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41948c2ecf20Sopenharmony_ci	0x79, 0x5b, 0xcf, 0xf6, 0x47, 0xc5, 0x53, 0xc2,
41958c2ecf20Sopenharmony_ci	0xe4, 0xeb, 0x6e, 0x0e, 0xaf, 0xd9, 0xe0, 0x4e
41968c2ecf20Sopenharmony_ci};
41978c2ecf20Sopenharmony_cistatic const u8 enc_assoc079[] __initconst = {
41988c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41998c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42008c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42018c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42028c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42058c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
42068c2ecf20Sopenharmony_ci};
42078c2ecf20Sopenharmony_cistatic const u8 enc_nonce079[] __initconst = {
42088c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x48, 0x4a
42098c2ecf20Sopenharmony_ci};
42108c2ecf20Sopenharmony_cistatic const u8 enc_key079[] __initconst = {
42118c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
42128c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
42138c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
42148c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
42158c2ecf20Sopenharmony_ci};
42168c2ecf20Sopenharmony_ci
42178c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
42188c2ecf20Sopenharmony_cistatic const u8 enc_input080[] __initconst = {
42198c2ecf20Sopenharmony_ci	0xfa, 0xe5, 0x83, 0x45, 0xc1, 0x6c, 0xb0, 0xf5,
42208c2ecf20Sopenharmony_ci	0xcc, 0x53, 0x7f, 0x2b, 0x1b, 0x34, 0x69, 0xc9,
42218c2ecf20Sopenharmony_ci	0x69, 0x46, 0x3b, 0x3e, 0xa7, 0x1b, 0xcf, 0x6b,
42228c2ecf20Sopenharmony_ci	0x98, 0xd6, 0x69, 0xa8, 0xe6, 0x0e, 0x04, 0xfc,
42238c2ecf20Sopenharmony_ci	0x08, 0xd5, 0xfd, 0x06, 0x9c, 0x36, 0x26, 0x38,
42248c2ecf20Sopenharmony_ci	0xe3, 0x40, 0x0e, 0xf4, 0xcb, 0x24, 0x2e, 0x27,
42258c2ecf20Sopenharmony_ci	0xe2, 0x24, 0x5e, 0x68, 0xcb, 0x9e, 0xc5, 0x83,
42268c2ecf20Sopenharmony_ci	0xda, 0x53, 0x40, 0xb1, 0x2e, 0xdf, 0x42, 0x3b,
42278c2ecf20Sopenharmony_ci	0x73, 0x26, 0xad, 0x20, 0xfe, 0xeb, 0x57, 0xda,
42288c2ecf20Sopenharmony_ci	0xca, 0x2e, 0x04, 0x67, 0xa3, 0x28, 0x99, 0xb4,
42298c2ecf20Sopenharmony_ci	0x2d, 0xf8, 0xe5, 0x6d, 0x84, 0xe0, 0x06, 0xbc,
42308c2ecf20Sopenharmony_ci	0x8a, 0x7a, 0xcc, 0x73, 0x1e, 0x7c, 0x1f, 0x6b,
42318c2ecf20Sopenharmony_ci	0xec, 0xb5, 0x71, 0x9f, 0x70, 0x77, 0xf0, 0xd4,
42328c2ecf20Sopenharmony_ci	0xf4, 0xc6, 0x1a, 0xb1, 0x1e, 0xba, 0xc1, 0x00,
42338c2ecf20Sopenharmony_ci	0x18, 0x01, 0xce, 0x33, 0xc4, 0xe4, 0xa7, 0x7d,
42348c2ecf20Sopenharmony_ci	0x83, 0x1d, 0x3c, 0xe3, 0x4e, 0x84, 0x10, 0xe1
42358c2ecf20Sopenharmony_ci};
42368c2ecf20Sopenharmony_cistatic const u8 enc_output080[] __initconst = {
42378c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42388c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42428c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42448c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42458c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42468c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42488c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42498c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42508c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42518c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42538c2ecf20Sopenharmony_ci	0x19, 0x46, 0xd6, 0x53, 0x96, 0x0f, 0x94, 0x7a,
42548c2ecf20Sopenharmony_ci	0x74, 0xd3, 0xe8, 0x09, 0x3c, 0xf4, 0x85, 0x02
42558c2ecf20Sopenharmony_ci};
42568c2ecf20Sopenharmony_cistatic const u8 enc_assoc080[] __initconst = {
42578c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42588c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42598c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42608c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42618c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42628c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
42658c2ecf20Sopenharmony_ci};
42668c2ecf20Sopenharmony_cistatic const u8 enc_nonce080[] __initconst = {
42678c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x2f, 0x40
42688c2ecf20Sopenharmony_ci};
42698c2ecf20Sopenharmony_cistatic const u8 enc_key080[] __initconst = {
42708c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
42718c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
42728c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
42738c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
42748c2ecf20Sopenharmony_ci};
42758c2ecf20Sopenharmony_ci
42768c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
42778c2ecf20Sopenharmony_cistatic const u8 enc_input081[] __initconst = {
42788c2ecf20Sopenharmony_ci	0xeb, 0xb2, 0x16, 0xdd, 0xd7, 0xca, 0x70, 0x92,
42798c2ecf20Sopenharmony_ci	0x15, 0xf5, 0x03, 0xdf, 0x9c, 0xe6, 0x3c, 0x5c,
42808c2ecf20Sopenharmony_ci	0xd2, 0x19, 0x4e, 0x7d, 0x90, 0x99, 0xe8, 0xa9,
42818c2ecf20Sopenharmony_ci	0x0b, 0x2a, 0xfa, 0xad, 0x5e, 0xba, 0x35, 0x06,
42828c2ecf20Sopenharmony_ci	0x99, 0x25, 0xa6, 0x03, 0xfd, 0xbc, 0x34, 0x1a,
42838c2ecf20Sopenharmony_ci	0xae, 0xd4, 0x15, 0x05, 0xb1, 0x09, 0x41, 0xfa,
42848c2ecf20Sopenharmony_ci	0x38, 0x56, 0xa7, 0xe2, 0x47, 0xb1, 0x04, 0x07,
42858c2ecf20Sopenharmony_ci	0x09, 0x74, 0x6c, 0xfc, 0x20, 0x96, 0xca, 0xa6,
42868c2ecf20Sopenharmony_ci	0x31, 0xb2, 0xff, 0xf4, 0x1c, 0x25, 0x05, 0x06,
42878c2ecf20Sopenharmony_ci	0xd8, 0x89, 0xc1, 0xc9, 0x06, 0x71, 0xad, 0xe8,
42888c2ecf20Sopenharmony_ci	0x53, 0xee, 0x63, 0x94, 0xc1, 0x91, 0x92, 0xa5,
42898c2ecf20Sopenharmony_ci	0xcf, 0x37, 0x10, 0xd1, 0x07, 0x30, 0x99, 0xe5,
42908c2ecf20Sopenharmony_ci	0xbc, 0x94, 0x65, 0x82, 0xfc, 0x0f, 0xab, 0x9f,
42918c2ecf20Sopenharmony_ci	0x54, 0x3c, 0x71, 0x6a, 0xe2, 0x48, 0x6a, 0x86,
42928c2ecf20Sopenharmony_ci	0x83, 0xfd, 0xca, 0x39, 0xd2, 0xe1, 0x4f, 0x23,
42938c2ecf20Sopenharmony_ci	0xd0, 0x0a, 0x58, 0x26, 0x64, 0xf4, 0xec, 0xb1
42948c2ecf20Sopenharmony_ci};
42958c2ecf20Sopenharmony_cistatic const u8 enc_output081[] __initconst = {
42968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42978c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42988c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
42998c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43008c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43018c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43028c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43058c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43068c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43078c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43098c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43108c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43118c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43128c2ecf20Sopenharmony_ci	0x36, 0xc3, 0x00, 0x29, 0x85, 0xdd, 0x21, 0xba,
43138c2ecf20Sopenharmony_ci	0xf8, 0x95, 0xd6, 0x33, 0x57, 0x3f, 0x12, 0xc0
43148c2ecf20Sopenharmony_ci};
43158c2ecf20Sopenharmony_cistatic const u8 enc_assoc081[] __initconst = {
43168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43178c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43188c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43198c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43208c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43218c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43228c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
43248c2ecf20Sopenharmony_ci};
43258c2ecf20Sopenharmony_cistatic const u8 enc_nonce081[] __initconst = {
43268c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x93, 0x35
43278c2ecf20Sopenharmony_ci};
43288c2ecf20Sopenharmony_cistatic const u8 enc_key081[] __initconst = {
43298c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
43308c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
43318c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
43328c2ecf20Sopenharmony_ci	0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30
43338c2ecf20Sopenharmony_ci};
43348c2ecf20Sopenharmony_ci
43358c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
43368c2ecf20Sopenharmony_cistatic const u8 enc_input082[] __initconst = {
43378c2ecf20Sopenharmony_ci	0x40, 0x8a, 0xe6, 0xef, 0x1c, 0x7e, 0xf0, 0xfb,
43388c2ecf20Sopenharmony_ci	0x2c, 0x2d, 0x61, 0x08, 0x16, 0xfc, 0x78, 0x49,
43398c2ecf20Sopenharmony_ci	0xef, 0xa5, 0x8f, 0x78, 0x27, 0x3f, 0x5f, 0x16,
43408c2ecf20Sopenharmony_ci	0x6e, 0xa6, 0x5f, 0x81, 0xb5, 0x75, 0x74, 0x7d,
43418c2ecf20Sopenharmony_ci	0x03, 0x5b, 0x30, 0x40, 0xfe, 0xde, 0x1e, 0xb9,
43428c2ecf20Sopenharmony_ci	0x45, 0x97, 0x88, 0x66, 0x97, 0x88, 0x40, 0x8e,
43438c2ecf20Sopenharmony_ci	0x00, 0x41, 0x3b, 0x3e, 0x37, 0x6d, 0x15, 0x2d,
43448c2ecf20Sopenharmony_ci	0x20, 0x4a, 0xa2, 0xb7, 0xa8, 0x35, 0x58, 0xfc,
43458c2ecf20Sopenharmony_ci	0xd4, 0x8a, 0x0e, 0xf7, 0xa2, 0x6b, 0x1c, 0xd6,
43468c2ecf20Sopenharmony_ci	0xd3, 0x5d, 0x23, 0xb3, 0xf5, 0xdf, 0xe0, 0xca,
43478c2ecf20Sopenharmony_ci	0x77, 0xa4, 0xce, 0x32, 0xb9, 0x4a, 0xbf, 0x83,
43488c2ecf20Sopenharmony_ci	0xda, 0x2a, 0xef, 0xca, 0xf0, 0x68, 0x38, 0x08,
43498c2ecf20Sopenharmony_ci	0x79, 0xe8, 0x9f, 0xb0, 0xa3, 0x82, 0x95, 0x95,
43508c2ecf20Sopenharmony_ci	0xcf, 0x44, 0xc3, 0x85, 0x2a, 0xe2, 0xcc, 0x66,
43518c2ecf20Sopenharmony_ci	0x2b, 0x68, 0x9f, 0x93, 0x55, 0xd9, 0xc1, 0x83,
43528c2ecf20Sopenharmony_ci	0x80, 0x1f, 0x6a, 0xcc, 0x31, 0x3f, 0x89, 0x07
43538c2ecf20Sopenharmony_ci};
43548c2ecf20Sopenharmony_cistatic const u8 enc_output082[] __initconst = {
43558c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43578c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43588c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43598c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43608c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43618c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43628c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43658c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43668c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43678c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43698c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43708c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43718c2ecf20Sopenharmony_ci	0x65, 0x14, 0x51, 0x8e, 0x0a, 0x26, 0x41, 0x42,
43728c2ecf20Sopenharmony_ci	0xe0, 0xb7, 0x35, 0x1f, 0x96, 0x7f, 0xc2, 0xae
43738c2ecf20Sopenharmony_ci};
43748c2ecf20Sopenharmony_cistatic const u8 enc_assoc082[] __initconst = {
43758c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43778c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43788c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43798c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43818c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43828c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
43838c2ecf20Sopenharmony_ci};
43848c2ecf20Sopenharmony_cistatic const u8 enc_nonce082[] __initconst = {
43858c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0xf7, 0xd5
43868c2ecf20Sopenharmony_ci};
43878c2ecf20Sopenharmony_cistatic const u8 enc_key082[] __initconst = {
43888c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
43898c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
43908c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
43918c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
43928c2ecf20Sopenharmony_ci};
43938c2ecf20Sopenharmony_ci
43948c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
43958c2ecf20Sopenharmony_cistatic const u8 enc_input083[] __initconst = {
43968c2ecf20Sopenharmony_ci	0x0a, 0x0a, 0x24, 0x49, 0x9b, 0xca, 0xde, 0x58,
43978c2ecf20Sopenharmony_ci	0xcf, 0x15, 0x76, 0xc3, 0x12, 0xac, 0xa9, 0x84,
43988c2ecf20Sopenharmony_ci	0x71, 0x8c, 0xb4, 0xcc, 0x7e, 0x01, 0x53, 0xf5,
43998c2ecf20Sopenharmony_ci	0xa9, 0x01, 0x58, 0x10, 0x85, 0x96, 0x44, 0xdf,
44008c2ecf20Sopenharmony_ci	0xc0, 0x21, 0x17, 0x4e, 0x0b, 0x06, 0x0a, 0x39,
44018c2ecf20Sopenharmony_ci	0x74, 0x48, 0xde, 0x8b, 0x48, 0x4a, 0x86, 0x03,
44028c2ecf20Sopenharmony_ci	0xbe, 0x68, 0x0a, 0x69, 0x34, 0xc0, 0x90, 0x6f,
44038c2ecf20Sopenharmony_ci	0x30, 0xdd, 0x17, 0xea, 0xe2, 0xd4, 0xc5, 0xfa,
44048c2ecf20Sopenharmony_ci	0xa7, 0x77, 0xf8, 0xca, 0x53, 0x37, 0x0e, 0x08,
44058c2ecf20Sopenharmony_ci	0x33, 0x1b, 0x88, 0xc3, 0x42, 0xba, 0xc9, 0x59,
44068c2ecf20Sopenharmony_ci	0x78, 0x7b, 0xbb, 0x33, 0x93, 0x0e, 0x3b, 0x56,
44078c2ecf20Sopenharmony_ci	0xbe, 0x86, 0xda, 0x7f, 0x2a, 0x6e, 0xb1, 0xf9,
44088c2ecf20Sopenharmony_ci	0x40, 0x89, 0xd1, 0xd1, 0x81, 0x07, 0x4d, 0x43,
44098c2ecf20Sopenharmony_ci	0x02, 0xf8, 0xe0, 0x55, 0x2d, 0x0d, 0xe1, 0xfa,
44108c2ecf20Sopenharmony_ci	0xb3, 0x06, 0xa2, 0x1b, 0x42, 0xd4, 0xc3, 0xba,
44118c2ecf20Sopenharmony_ci	0x6e, 0x6f, 0x0c, 0xbc, 0xc8, 0x1e, 0x87, 0x7a
44128c2ecf20Sopenharmony_ci};
44138c2ecf20Sopenharmony_cistatic const u8 enc_output083[] __initconst = {
44148c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44158c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44178c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44188c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44198c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44208c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44218c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44228c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44258c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44268c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44298c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44308c2ecf20Sopenharmony_ci	0x4c, 0x19, 0x4d, 0xa6, 0xa9, 0x9f, 0xd6, 0x5b,
44318c2ecf20Sopenharmony_ci	0x40, 0xe9, 0xca, 0xd7, 0x98, 0xf4, 0x4b, 0x19
44328c2ecf20Sopenharmony_ci};
44338c2ecf20Sopenharmony_cistatic const u8 enc_assoc083[] __initconst = {
44348c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44358c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44378c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44388c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
44428c2ecf20Sopenharmony_ci};
44438c2ecf20Sopenharmony_cistatic const u8 enc_nonce083[] __initconst = {
44448c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xfc, 0xe4
44458c2ecf20Sopenharmony_ci};
44468c2ecf20Sopenharmony_cistatic const u8 enc_key083[] __initconst = {
44478c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
44488c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
44498c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
44508c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
44518c2ecf20Sopenharmony_ci};
44528c2ecf20Sopenharmony_ci
44538c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
44548c2ecf20Sopenharmony_cistatic const u8 enc_input084[] __initconst = {
44558c2ecf20Sopenharmony_ci	0x4a, 0x0a, 0xaf, 0xf8, 0x49, 0x47, 0x29, 0x18,
44568c2ecf20Sopenharmony_ci	0x86, 0x91, 0x70, 0x13, 0x40, 0xf3, 0xce, 0x2b,
44578c2ecf20Sopenharmony_ci	0x8a, 0x78, 0xee, 0xd3, 0xa0, 0xf0, 0x65, 0x99,
44588c2ecf20Sopenharmony_ci	0x4b, 0x72, 0x48, 0x4e, 0x79, 0x91, 0xd2, 0x5c,
44598c2ecf20Sopenharmony_ci	0x29, 0xaa, 0x07, 0x5e, 0xb1, 0xfc, 0x16, 0xde,
44608c2ecf20Sopenharmony_ci	0x93, 0xfe, 0x06, 0x90, 0x58, 0x11, 0x2a, 0xb2,
44618c2ecf20Sopenharmony_ci	0x84, 0xa3, 0xed, 0x18, 0x78, 0x03, 0x26, 0xd1,
44628c2ecf20Sopenharmony_ci	0x25, 0x8a, 0x47, 0x22, 0x2f, 0xa6, 0x33, 0xd8,
44638c2ecf20Sopenharmony_ci	0xb2, 0x9f, 0x3b, 0xd9, 0x15, 0x0b, 0x23, 0x9b,
44648c2ecf20Sopenharmony_ci	0x15, 0x46, 0xc2, 0xbb, 0x9b, 0x9f, 0x41, 0x0f,
44658c2ecf20Sopenharmony_ci	0xeb, 0xea, 0xd3, 0x96, 0x00, 0x0e, 0xe4, 0x77,
44668c2ecf20Sopenharmony_ci	0x70, 0x15, 0x32, 0xc3, 0xd0, 0xf5, 0xfb, 0xf8,
44678c2ecf20Sopenharmony_ci	0x95, 0xd2, 0x80, 0x19, 0x6d, 0x2f, 0x73, 0x7c,
44688c2ecf20Sopenharmony_ci	0x5e, 0x9f, 0xec, 0x50, 0xd9, 0x2b, 0xb0, 0xdf,
44698c2ecf20Sopenharmony_ci	0x5d, 0x7e, 0x51, 0x3b, 0xe5, 0xb8, 0xea, 0x97,
44708c2ecf20Sopenharmony_ci	0x13, 0x10, 0xd5, 0xbf, 0x16, 0xba, 0x7a, 0xee
44718c2ecf20Sopenharmony_ci};
44728c2ecf20Sopenharmony_cistatic const u8 enc_output084[] __initconst = {
44738c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44748c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44758c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44778c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44788c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44798c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44818c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44828c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44898c2ecf20Sopenharmony_ci	0xc8, 0xae, 0x77, 0x88, 0xcd, 0x28, 0x74, 0xab,
44908c2ecf20Sopenharmony_ci	0xc1, 0x38, 0x54, 0x1e, 0x11, 0xfd, 0x05, 0x87
44918c2ecf20Sopenharmony_ci};
44928c2ecf20Sopenharmony_cistatic const u8 enc_assoc084[] __initconst = {
44938c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44948c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44958c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44978c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44988c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
44998c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45008c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
45018c2ecf20Sopenharmony_ci};
45028c2ecf20Sopenharmony_cistatic const u8 enc_nonce084[] __initconst = {
45038c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x01, 0x84, 0x86, 0xa8
45048c2ecf20Sopenharmony_ci};
45058c2ecf20Sopenharmony_cistatic const u8 enc_key084[] __initconst = {
45068c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
45078c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
45088c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
45098c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
45108c2ecf20Sopenharmony_ci};
45118c2ecf20Sopenharmony_ci
45128c2ecf20Sopenharmony_ci/* wycheproof - checking for int overflows */
45138c2ecf20Sopenharmony_cistatic const u8 enc_input085[] __initconst = {
45148c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
45158c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
45168c2ecf20Sopenharmony_ci	0x78, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
45178c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
45188c2ecf20Sopenharmony_ci	0x9f, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
45198c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
45208c2ecf20Sopenharmony_ci	0x9c, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
45218c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
45228c2ecf20Sopenharmony_ci	0x47, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
45238c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
45248c2ecf20Sopenharmony_ci	0xd4, 0xd2, 0x06, 0x61, 0x6f, 0x92, 0x93, 0xf6,
45258c2ecf20Sopenharmony_ci	0x5b, 0x45, 0xdb, 0xbc, 0x74, 0xe7, 0xc2, 0xed,
45268c2ecf20Sopenharmony_ci	0xfb, 0xcb, 0xbf, 0x1c, 0xfb, 0x67, 0x9b, 0xb7,
45278c2ecf20Sopenharmony_ci	0x39, 0xa5, 0x86, 0x2d, 0xe2, 0xbc, 0xb9, 0x37,
45288c2ecf20Sopenharmony_ci	0xf7, 0x4d, 0x5b, 0xf8, 0x67, 0x1c, 0x5a, 0x8a,
45298c2ecf20Sopenharmony_ci	0x50, 0x92, 0xf6, 0x1d, 0x54, 0xc9, 0xaa, 0x5b
45308c2ecf20Sopenharmony_ci};
45318c2ecf20Sopenharmony_cistatic const u8 enc_output085[] __initconst = {
45328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45338c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45348c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45358c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45378c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45388c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45418c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45428c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45448c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45458c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45468c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45488c2ecf20Sopenharmony_ci	0x93, 0x3a, 0x51, 0x63, 0xc7, 0xf6, 0x23, 0x68,
45498c2ecf20Sopenharmony_ci	0x32, 0x7b, 0x3f, 0xbc, 0x10, 0x36, 0xc9, 0x43
45508c2ecf20Sopenharmony_ci};
45518c2ecf20Sopenharmony_cistatic const u8 enc_assoc085[] __initconst = {
45528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45538c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45548c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45558c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45578c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45588c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45598c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
45608c2ecf20Sopenharmony_ci};
45618c2ecf20Sopenharmony_cistatic const u8 enc_nonce085[] __initconst = {
45628c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
45638c2ecf20Sopenharmony_ci};
45648c2ecf20Sopenharmony_cistatic const u8 enc_key085[] __initconst = {
45658c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
45668c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
45678c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
45688c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
45698c2ecf20Sopenharmony_ci};
45708c2ecf20Sopenharmony_ci
45718c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
45728c2ecf20Sopenharmony_cistatic const u8 enc_input086[] __initconst = {
45738c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
45748c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
45758c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
45768c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
45778c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
45788c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
45798c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
45808c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
45818c2ecf20Sopenharmony_ci};
45828c2ecf20Sopenharmony_cistatic const u8 enc_output086[] __initconst = {
45838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45898c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45908c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45918c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
45928c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
45938c2ecf20Sopenharmony_ci};
45948c2ecf20Sopenharmony_cistatic const u8 enc_assoc086[] __initconst = {
45958c2ecf20Sopenharmony_ci	0x85, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45978c2ecf20Sopenharmony_ci	0xa6, 0x90, 0x2f, 0xcb, 0xc8, 0x83, 0xbb, 0xc1,
45988c2ecf20Sopenharmony_ci	0x80, 0xb2, 0x56, 0xae, 0x34, 0xad, 0x7f, 0x00
45998c2ecf20Sopenharmony_ci};
46008c2ecf20Sopenharmony_cistatic const u8 enc_nonce086[] __initconst = {
46018c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
46028c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
46038c2ecf20Sopenharmony_ci};
46048c2ecf20Sopenharmony_cistatic const u8 enc_key086[] __initconst = {
46058c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
46068c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
46078c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
46088c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
46098c2ecf20Sopenharmony_ci};
46108c2ecf20Sopenharmony_ci
46118c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
46128c2ecf20Sopenharmony_cistatic const u8 enc_input087[] __initconst = {
46138c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
46148c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
46158c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
46168c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
46178c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
46188c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
46198c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
46208c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
46218c2ecf20Sopenharmony_ci};
46228c2ecf20Sopenharmony_cistatic const u8 enc_output087[] __initconst = {
46238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46258c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46268c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46298c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46308c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46318c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
46328c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
46338c2ecf20Sopenharmony_ci};
46348c2ecf20Sopenharmony_cistatic const u8 enc_assoc087[] __initconst = {
46358c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46378c2ecf20Sopenharmony_ci	0x24, 0x7e, 0x50, 0x64, 0x2a, 0x1c, 0x0a, 0x2f,
46388c2ecf20Sopenharmony_ci	0x8f, 0x77, 0x21, 0x96, 0x09, 0xdb, 0xa9, 0x58
46398c2ecf20Sopenharmony_ci};
46408c2ecf20Sopenharmony_cistatic const u8 enc_nonce087[] __initconst = {
46418c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
46428c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
46438c2ecf20Sopenharmony_ci};
46448c2ecf20Sopenharmony_cistatic const u8 enc_key087[] __initconst = {
46458c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
46468c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
46478c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
46488c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
46498c2ecf20Sopenharmony_ci};
46508c2ecf20Sopenharmony_ci
46518c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
46528c2ecf20Sopenharmony_cistatic const u8 enc_input088[] __initconst = {
46538c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
46548c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
46558c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
46568c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
46578c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
46588c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
46598c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
46608c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
46618c2ecf20Sopenharmony_ci};
46628c2ecf20Sopenharmony_cistatic const u8 enc_output088[] __initconst = {
46638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46658c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46668c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46678c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46698c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46708c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46718c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46728c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
46738c2ecf20Sopenharmony_ci};
46748c2ecf20Sopenharmony_cistatic const u8 enc_assoc088[] __initconst = {
46758c2ecf20Sopenharmony_ci	0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
46778c2ecf20Sopenharmony_ci	0xd9, 0xe7, 0x2c, 0x06, 0x4a, 0xc8, 0x96, 0x1f,
46788c2ecf20Sopenharmony_ci	0x3f, 0xa5, 0x85, 0xe0, 0xe2, 0xab, 0xd6, 0x00
46798c2ecf20Sopenharmony_ci};
46808c2ecf20Sopenharmony_cistatic const u8 enc_nonce088[] __initconst = {
46818c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
46828c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
46838c2ecf20Sopenharmony_ci};
46848c2ecf20Sopenharmony_cistatic const u8 enc_key088[] __initconst = {
46858c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
46868c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
46878c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
46888c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
46898c2ecf20Sopenharmony_ci};
46908c2ecf20Sopenharmony_ci
46918c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
46928c2ecf20Sopenharmony_cistatic const u8 enc_input089[] __initconst = {
46938c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
46948c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
46958c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
46968c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
46978c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
46988c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
46998c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
47008c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
47018c2ecf20Sopenharmony_ci};
47028c2ecf20Sopenharmony_cistatic const u8 enc_output089[] __initconst = {
47038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47058c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47068c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47078c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47098c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47108c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47118c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80,
47128c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80
47138c2ecf20Sopenharmony_ci};
47148c2ecf20Sopenharmony_cistatic const u8 enc_assoc089[] __initconst = {
47158c2ecf20Sopenharmony_ci	0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47178c2ecf20Sopenharmony_ci	0x95, 0xaf, 0x0f, 0x4d, 0x0b, 0x68, 0x6e, 0xae,
47188c2ecf20Sopenharmony_ci	0xcc, 0xca, 0x43, 0x07, 0xd5, 0x96, 0xf5, 0x02
47198c2ecf20Sopenharmony_ci};
47208c2ecf20Sopenharmony_cistatic const u8 enc_nonce089[] __initconst = {
47218c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
47228c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
47238c2ecf20Sopenharmony_ci};
47248c2ecf20Sopenharmony_cistatic const u8 enc_key089[] __initconst = {
47258c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
47268c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
47278c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
47288c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
47298c2ecf20Sopenharmony_ci};
47308c2ecf20Sopenharmony_ci
47318c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
47328c2ecf20Sopenharmony_cistatic const u8 enc_input090[] __initconst = {
47338c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
47348c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
47358c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
47368c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
47378c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
47388c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
47398c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
47408c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
47418c2ecf20Sopenharmony_ci};
47428c2ecf20Sopenharmony_cistatic const u8 enc_output090[] __initconst = {
47438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47448c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47458c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47468c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47488c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47498c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47508c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47518c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f,
47528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f
47538c2ecf20Sopenharmony_ci};
47548c2ecf20Sopenharmony_cistatic const u8 enc_assoc090[] __initconst = {
47558c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47578c2ecf20Sopenharmony_ci	0x85, 0x40, 0xb4, 0x64, 0x35, 0x77, 0x07, 0xbe,
47588c2ecf20Sopenharmony_ci	0x3a, 0x39, 0xd5, 0x5c, 0x34, 0xf8, 0xbc, 0xb3
47598c2ecf20Sopenharmony_ci};
47608c2ecf20Sopenharmony_cistatic const u8 enc_nonce090[] __initconst = {
47618c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
47628c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
47638c2ecf20Sopenharmony_ci};
47648c2ecf20Sopenharmony_cistatic const u8 enc_key090[] __initconst = {
47658c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
47668c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
47678c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
47688c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
47698c2ecf20Sopenharmony_ci};
47708c2ecf20Sopenharmony_ci
47718c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
47728c2ecf20Sopenharmony_cistatic const u8 enc_input091[] __initconst = {
47738c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
47748c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
47758c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
47768c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
47778c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
47788c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
47798c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
47808c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
47818c2ecf20Sopenharmony_ci};
47828c2ecf20Sopenharmony_cistatic const u8 enc_output091[] __initconst = {
47838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47858c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47868c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47888c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47898c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47908c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47918c2ecf20Sopenharmony_ci	0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
47928c2ecf20Sopenharmony_ci	0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
47938c2ecf20Sopenharmony_ci};
47948c2ecf20Sopenharmony_cistatic const u8 enc_assoc091[] __initconst = {
47958c2ecf20Sopenharmony_ci	0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
47978c2ecf20Sopenharmony_ci	0x66, 0x23, 0xd9, 0x90, 0xb8, 0x98, 0xd8, 0x30,
47988c2ecf20Sopenharmony_ci	0xd2, 0x12, 0xaf, 0x23, 0x83, 0x33, 0x07, 0x01
47998c2ecf20Sopenharmony_ci};
48008c2ecf20Sopenharmony_cistatic const u8 enc_nonce091[] __initconst = {
48018c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
48028c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
48038c2ecf20Sopenharmony_ci};
48048c2ecf20Sopenharmony_cistatic const u8 enc_key091[] __initconst = {
48058c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
48068c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
48078c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
48088c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
48098c2ecf20Sopenharmony_ci};
48108c2ecf20Sopenharmony_ci
48118c2ecf20Sopenharmony_ci/* wycheproof - special case tag */
48128c2ecf20Sopenharmony_cistatic const u8 enc_input092[] __initconst = {
48138c2ecf20Sopenharmony_ci	0x9a, 0x49, 0xc4, 0x0f, 0x8b, 0x48, 0xd7, 0xc6,
48148c2ecf20Sopenharmony_ci	0x6d, 0x1d, 0xb4, 0xe5, 0x3f, 0x20, 0xf2, 0xdd,
48158c2ecf20Sopenharmony_ci	0x4a, 0xaa, 0x24, 0x1d, 0xda, 0xb2, 0x6b, 0x5b,
48168c2ecf20Sopenharmony_ci	0xc0, 0xe2, 0x18, 0xb7, 0x2c, 0x33, 0x90, 0xf2,
48178c2ecf20Sopenharmony_ci	0xdf, 0x3e, 0xbd, 0x01, 0x76, 0x70, 0x44, 0x19,
48188c2ecf20Sopenharmony_ci	0x97, 0x2b, 0xcd, 0xbc, 0x6b, 0xbc, 0xb3, 0xe4,
48198c2ecf20Sopenharmony_ci	0xe7, 0x4a, 0x71, 0x52, 0x8e, 0xf5, 0x12, 0x63,
48208c2ecf20Sopenharmony_ci	0xce, 0x24, 0xe0, 0xd5, 0x75, 0xe0, 0xe4, 0x4d
48218c2ecf20Sopenharmony_ci};
48228c2ecf20Sopenharmony_cistatic const u8 enc_output092[] __initconst = {
48238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48258c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48268c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48288c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48298c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48308c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48318c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
48328c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
48338c2ecf20Sopenharmony_ci};
48348c2ecf20Sopenharmony_cistatic const u8 enc_assoc092[] __initconst = {
48358c2ecf20Sopenharmony_ci	0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48378c2ecf20Sopenharmony_ci	0x5f, 0x16, 0xd0, 0x9f, 0x17, 0x78, 0x72, 0x11,
48388c2ecf20Sopenharmony_ci	0xb7, 0xd4, 0x84, 0xe0, 0x24, 0xf8, 0x97, 0x01
48398c2ecf20Sopenharmony_ci};
48408c2ecf20Sopenharmony_cistatic const u8 enc_nonce092[] __initconst = {
48418c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
48428c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b
48438c2ecf20Sopenharmony_ci};
48448c2ecf20Sopenharmony_cistatic const u8 enc_key092[] __initconst = {
48458c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
48468c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
48478c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
48488c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
48498c2ecf20Sopenharmony_ci};
48508c2ecf20Sopenharmony_ci
48518c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
48528c2ecf20Sopenharmony_cistatic const u8 enc_input093[] __initconst = {
48538c2ecf20Sopenharmony_ci	0x00, 0x52, 0x35, 0xd2, 0xa9, 0x19, 0xf2, 0x8d,
48548c2ecf20Sopenharmony_ci	0x3d, 0xb7, 0x66, 0x4a, 0x34, 0xae, 0x6b, 0x44,
48558c2ecf20Sopenharmony_ci	0x4d, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
48568c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
48578c2ecf20Sopenharmony_ci	0x5b, 0x8b, 0x94, 0x50, 0x9e, 0x2b, 0x74, 0xa3,
48588c2ecf20Sopenharmony_ci	0x6d, 0x34, 0x6e, 0x33, 0xd5, 0x72, 0x65, 0x9b,
48598c2ecf20Sopenharmony_ci	0xa9, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
48608c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
48618c2ecf20Sopenharmony_ci	0x83, 0xdc, 0xe9, 0xf3, 0x07, 0x3e, 0xfa, 0xdb,
48628c2ecf20Sopenharmony_ci	0x7d, 0x23, 0xb8, 0x7a, 0xce, 0x35, 0x16, 0x8c
48638c2ecf20Sopenharmony_ci};
48648c2ecf20Sopenharmony_cistatic const u8 enc_output093[] __initconst = {
48658c2ecf20Sopenharmony_ci	0x00, 0x39, 0xe2, 0xfd, 0x2f, 0xd3, 0x12, 0x14,
48668c2ecf20Sopenharmony_ci	0x9e, 0x98, 0x98, 0x80, 0x88, 0x48, 0x13, 0xe7,
48678c2ecf20Sopenharmony_ci	0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48698c2ecf20Sopenharmony_ci	0x3b, 0x0e, 0x86, 0x9a, 0xaa, 0x8e, 0xa4, 0x96,
48708c2ecf20Sopenharmony_ci	0x32, 0xff, 0xff, 0x37, 0xb9, 0xe8, 0xce, 0x00,
48718c2ecf20Sopenharmony_ci	0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48728c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48738c2ecf20Sopenharmony_ci	0x3b, 0x0e, 0x86, 0x9a, 0xaa, 0x8e, 0xa4, 0x96,
48748c2ecf20Sopenharmony_ci	0x32, 0xff, 0xff, 0x37, 0xb9, 0xe8, 0xce, 0x00,
48758c2ecf20Sopenharmony_ci	0xa5, 0x19, 0xac, 0x1a, 0x35, 0xb4, 0xa5, 0x77,
48768c2ecf20Sopenharmony_ci	0x87, 0x51, 0x0a, 0xf7, 0x8d, 0x8d, 0x20, 0x0a
48778c2ecf20Sopenharmony_ci};
48788c2ecf20Sopenharmony_cistatic const u8 enc_assoc093[] __initconst = {
48798c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
48808c2ecf20Sopenharmony_ci};
48818c2ecf20Sopenharmony_cistatic const u8 enc_nonce093[] __initconst = {
48828c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
48838c2ecf20Sopenharmony_ci};
48848c2ecf20Sopenharmony_cistatic const u8 enc_key093[] __initconst = {
48858c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
48868c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
48878c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
48888c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
48898c2ecf20Sopenharmony_ci};
48908c2ecf20Sopenharmony_ci
48918c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
48928c2ecf20Sopenharmony_cistatic const u8 enc_input094[] __initconst = {
48938c2ecf20Sopenharmony_ci	0xd3, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
48948c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
48958c2ecf20Sopenharmony_ci	0xe5, 0xda, 0x78, 0x76, 0x6f, 0xa1, 0x92, 0x90,
48968c2ecf20Sopenharmony_ci	0xc0, 0x31, 0xf7, 0x52, 0x08, 0x50, 0x67, 0x45,
48978c2ecf20Sopenharmony_ci	0xae, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
48988c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
48998c2ecf20Sopenharmony_ci	0x49, 0x6d, 0xde, 0xb0, 0x55, 0x09, 0xc6, 0xef,
49008c2ecf20Sopenharmony_ci	0xff, 0xab, 0x75, 0xeb, 0x2d, 0xf4, 0xab, 0x09,
49018c2ecf20Sopenharmony_ci	0x76, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
49028c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
49038c2ecf20Sopenharmony_ci	0x01, 0x49, 0xef, 0x50, 0x4b, 0x71, 0xb1, 0x20,
49048c2ecf20Sopenharmony_ci	0xca, 0x4f, 0xf3, 0x95, 0x19, 0xc2, 0xc2, 0x10
49058c2ecf20Sopenharmony_ci};
49068c2ecf20Sopenharmony_cistatic const u8 enc_output094[] __initconst = {
49078c2ecf20Sopenharmony_ci	0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49098c2ecf20Sopenharmony_ci	0x62, 0x18, 0xb2, 0x7f, 0x83, 0xb8, 0xb4, 0x66,
49108c2ecf20Sopenharmony_ci	0x02, 0xf6, 0xe1, 0xd8, 0x34, 0x20, 0x7b, 0x02,
49118c2ecf20Sopenharmony_ci	0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49128c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49138c2ecf20Sopenharmony_ci	0x2a, 0x64, 0x16, 0xce, 0xdb, 0x1c, 0xdd, 0x29,
49148c2ecf20Sopenharmony_ci	0x6e, 0xf5, 0xd7, 0xd6, 0x92, 0xda, 0xff, 0x02,
49158c2ecf20Sopenharmony_ci	0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49178c2ecf20Sopenharmony_ci	0x2a, 0x64, 0x16, 0xce, 0xdb, 0x1c, 0xdd, 0x29,
49188c2ecf20Sopenharmony_ci	0x6e, 0xf5, 0xd7, 0xd6, 0x92, 0xda, 0xff, 0x02,
49198c2ecf20Sopenharmony_ci	0x30, 0x2f, 0xe8, 0x2a, 0xb0, 0xa0, 0x9a, 0xf6,
49208c2ecf20Sopenharmony_ci	0x44, 0x00, 0xd0, 0x15, 0xae, 0x83, 0xd9, 0xcc
49218c2ecf20Sopenharmony_ci};
49228c2ecf20Sopenharmony_cistatic const u8 enc_assoc094[] __initconst = {
49238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
49248c2ecf20Sopenharmony_ci};
49258c2ecf20Sopenharmony_cistatic const u8 enc_nonce094[] __initconst = {
49268c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
49278c2ecf20Sopenharmony_ci};
49288c2ecf20Sopenharmony_cistatic const u8 enc_key094[] __initconst = {
49298c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
49308c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
49318c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
49328c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
49338c2ecf20Sopenharmony_ci};
49348c2ecf20Sopenharmony_ci
49358c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
49368c2ecf20Sopenharmony_cistatic const u8 enc_input095[] __initconst = {
49378c2ecf20Sopenharmony_ci	0xe9, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
49388c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
49398c2ecf20Sopenharmony_ci	0x6d, 0xf1, 0x39, 0x4e, 0xdc, 0x53, 0x9b, 0x5b,
49408c2ecf20Sopenharmony_ci	0x3a, 0x09, 0x57, 0xbe, 0x0f, 0xb8, 0x59, 0x46,
49418c2ecf20Sopenharmony_ci	0x80, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
49428c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
49438c2ecf20Sopenharmony_ci	0xd1, 0x76, 0x9f, 0xe8, 0x06, 0xbb, 0xfe, 0xb6,
49448c2ecf20Sopenharmony_ci	0xf5, 0x90, 0x95, 0x0f, 0x2e, 0xac, 0x9e, 0x0a,
49458c2ecf20Sopenharmony_ci	0x58, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
49468c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
49478c2ecf20Sopenharmony_ci	0x99, 0x52, 0xae, 0x08, 0x18, 0xc3, 0x89, 0x79,
49488c2ecf20Sopenharmony_ci	0xc0, 0x74, 0x13, 0x71, 0x1a, 0x9a, 0xf7, 0x13
49498c2ecf20Sopenharmony_ci};
49508c2ecf20Sopenharmony_cistatic const u8 enc_output095[] __initconst = {
49518c2ecf20Sopenharmony_ci	0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49538c2ecf20Sopenharmony_ci	0xea, 0x33, 0xf3, 0x47, 0x30, 0x4a, 0xbd, 0xad,
49548c2ecf20Sopenharmony_ci	0xf8, 0xce, 0x41, 0x34, 0x33, 0xc8, 0x45, 0x01,
49558c2ecf20Sopenharmony_ci	0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49578c2ecf20Sopenharmony_ci	0xb2, 0x7f, 0x57, 0x96, 0x88, 0xae, 0xe5, 0x70,
49588c2ecf20Sopenharmony_ci	0x64, 0xce, 0x37, 0x32, 0x91, 0x82, 0xca, 0x01,
49598c2ecf20Sopenharmony_ci	0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49608c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49618c2ecf20Sopenharmony_ci	0xb2, 0x7f, 0x57, 0x96, 0x88, 0xae, 0xe5, 0x70,
49628c2ecf20Sopenharmony_ci	0x64, 0xce, 0x37, 0x32, 0x91, 0x82, 0xca, 0x01,
49638c2ecf20Sopenharmony_ci	0x98, 0xa7, 0xe8, 0x36, 0xe0, 0xee, 0x4d, 0x02,
49648c2ecf20Sopenharmony_ci	0x35, 0x00, 0xd0, 0x55, 0x7e, 0xc2, 0xcb, 0xe0
49658c2ecf20Sopenharmony_ci};
49668c2ecf20Sopenharmony_cistatic const u8 enc_assoc095[] __initconst = {
49678c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
49688c2ecf20Sopenharmony_ci};
49698c2ecf20Sopenharmony_cistatic const u8 enc_nonce095[] __initconst = {
49708c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
49718c2ecf20Sopenharmony_ci};
49728c2ecf20Sopenharmony_cistatic const u8 enc_key095[] __initconst = {
49738c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
49748c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
49758c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
49768c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
49778c2ecf20Sopenharmony_ci};
49788c2ecf20Sopenharmony_ci
49798c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
49808c2ecf20Sopenharmony_cistatic const u8 enc_input096[] __initconst = {
49818c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
49828c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
49838c2ecf20Sopenharmony_ci	0x64, 0xf9, 0x0f, 0x5b, 0x26, 0x92, 0xb8, 0x60,
49848c2ecf20Sopenharmony_ci	0xd4, 0x59, 0x6f, 0xf4, 0xb3, 0x40, 0x2c, 0x5c,
49858c2ecf20Sopenharmony_ci	0x00, 0xb9, 0xbb, 0x53, 0x70, 0x7a, 0xa6, 0x67,
49868c2ecf20Sopenharmony_ci	0xd3, 0x56, 0xfe, 0x50, 0xc7, 0x19, 0x96, 0x94,
49878c2ecf20Sopenharmony_ci	0x03, 0x35, 0x61, 0xe7, 0xca, 0xca, 0x6d, 0x94,
49888c2ecf20Sopenharmony_ci	0x1d, 0xc3, 0xcd, 0x69, 0x14, 0xad, 0x69, 0x04
49898c2ecf20Sopenharmony_ci};
49908c2ecf20Sopenharmony_cistatic const u8 enc_output096[] __initconst = {
49918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49938c2ecf20Sopenharmony_ci	0xe3, 0x3b, 0xc5, 0x52, 0xca, 0x8b, 0x9e, 0x96,
49948c2ecf20Sopenharmony_ci	0x16, 0x9e, 0x79, 0x7e, 0x8f, 0x30, 0x30, 0x1b,
49958c2ecf20Sopenharmony_ci	0x60, 0x3c, 0xa9, 0x99, 0x44, 0xdf, 0x76, 0x52,
49968c2ecf20Sopenharmony_ci	0x8c, 0x9d, 0x6f, 0x54, 0xab, 0x83, 0x3d, 0x0f,
49978c2ecf20Sopenharmony_ci	0x60, 0x3c, 0xa9, 0x99, 0x44, 0xdf, 0x76, 0x52,
49988c2ecf20Sopenharmony_ci	0x8c, 0x9d, 0x6f, 0x54, 0xab, 0x83, 0x3d, 0x0f,
49998c2ecf20Sopenharmony_ci	0x6a, 0xb8, 0xdc, 0xe2, 0xc5, 0x9d, 0xa4, 0x73,
50008c2ecf20Sopenharmony_ci	0x71, 0x30, 0xb0, 0x25, 0x2f, 0x68, 0xa8, 0xd8
50018c2ecf20Sopenharmony_ci};
50028c2ecf20Sopenharmony_cistatic const u8 enc_assoc096[] __initconst = {
50038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
50048c2ecf20Sopenharmony_ci};
50058c2ecf20Sopenharmony_cistatic const u8 enc_nonce096[] __initconst = {
50068c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
50078c2ecf20Sopenharmony_ci};
50088c2ecf20Sopenharmony_cistatic const u8 enc_key096[] __initconst = {
50098c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
50108c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
50118c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
50128c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
50138c2ecf20Sopenharmony_ci};
50148c2ecf20Sopenharmony_ci
50158c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
50168c2ecf20Sopenharmony_cistatic const u8 enc_input097[] __initconst = {
50178c2ecf20Sopenharmony_ci	0x68, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
50188c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
50198c2ecf20Sopenharmony_ci	0xb0, 0x8f, 0x25, 0x67, 0x5b, 0x9b, 0xcb, 0xf6,
50208c2ecf20Sopenharmony_ci	0xe3, 0x84, 0x07, 0xde, 0x2e, 0xc7, 0x5a, 0x47,
50218c2ecf20Sopenharmony_ci	0x9f, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
50228c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
50238c2ecf20Sopenharmony_ci	0x2d, 0x2a, 0xf7, 0xcd, 0x6b, 0x08, 0x05, 0x01,
50248c2ecf20Sopenharmony_ci	0xd3, 0x1b, 0xa5, 0x4f, 0xb2, 0xeb, 0x75, 0x96,
50258c2ecf20Sopenharmony_ci	0x47, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
50268c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
50278c2ecf20Sopenharmony_ci	0x65, 0x0e, 0xc6, 0x2d, 0x75, 0x70, 0x72, 0xce,
50288c2ecf20Sopenharmony_ci	0xe6, 0xff, 0x23, 0x31, 0x86, 0xdd, 0x1c, 0x8f
50298c2ecf20Sopenharmony_ci};
50308c2ecf20Sopenharmony_cistatic const u8 enc_output097[] __initconst = {
50318c2ecf20Sopenharmony_ci	0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50338c2ecf20Sopenharmony_ci	0x37, 0x4d, 0xef, 0x6e, 0xb7, 0x82, 0xed, 0x00,
50348c2ecf20Sopenharmony_ci	0x21, 0x43, 0x11, 0x54, 0x12, 0xb7, 0x46, 0x00,
50358c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50378c2ecf20Sopenharmony_ci	0x4e, 0x23, 0x3f, 0xb3, 0xe5, 0x1d, 0x1e, 0xc7,
50388c2ecf20Sopenharmony_ci	0x42, 0x45, 0x07, 0x72, 0x0d, 0xc5, 0x21, 0x9d,
50398c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50418c2ecf20Sopenharmony_ci	0x4e, 0x23, 0x3f, 0xb3, 0xe5, 0x1d, 0x1e, 0xc7,
50428c2ecf20Sopenharmony_ci	0x42, 0x45, 0x07, 0x72, 0x0d, 0xc5, 0x21, 0x9d,
50438c2ecf20Sopenharmony_ci	0x04, 0x4d, 0xea, 0x60, 0x88, 0x80, 0x41, 0x2b,
50448c2ecf20Sopenharmony_ci	0xfd, 0xff, 0xcf, 0x35, 0x57, 0x9e, 0x9b, 0x26
50458c2ecf20Sopenharmony_ci};
50468c2ecf20Sopenharmony_cistatic const u8 enc_assoc097[] __initconst = {
50478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
50488c2ecf20Sopenharmony_ci};
50498c2ecf20Sopenharmony_cistatic const u8 enc_nonce097[] __initconst = {
50508c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
50518c2ecf20Sopenharmony_ci};
50528c2ecf20Sopenharmony_cistatic const u8 enc_key097[] __initconst = {
50538c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
50548c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
50558c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
50568c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
50578c2ecf20Sopenharmony_ci};
50588c2ecf20Sopenharmony_ci
50598c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
50608c2ecf20Sopenharmony_cistatic const u8 enc_input098[] __initconst = {
50618c2ecf20Sopenharmony_ci	0x6d, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
50628c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
50638c2ecf20Sopenharmony_ci	0xa1, 0x61, 0xb5, 0xab, 0x04, 0x09, 0x00, 0x62,
50648c2ecf20Sopenharmony_ci	0x9e, 0xfe, 0xff, 0x78, 0xd7, 0xd8, 0x6b, 0x45,
50658c2ecf20Sopenharmony_ci	0x9f, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
50668c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
50678c2ecf20Sopenharmony_ci	0xc6, 0xf8, 0x07, 0x8c, 0xc8, 0xef, 0x12, 0xa0,
50688c2ecf20Sopenharmony_ci	0xff, 0x65, 0x7d, 0x6d, 0x08, 0xdb, 0x10, 0xb8,
50698c2ecf20Sopenharmony_ci	0x47, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
50708c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
50718c2ecf20Sopenharmony_ci	0x8e, 0xdc, 0x36, 0x6c, 0xd6, 0x97, 0x65, 0x6f,
50728c2ecf20Sopenharmony_ci	0xca, 0x81, 0xfb, 0x13, 0x3c, 0xed, 0x79, 0xa1
50738c2ecf20Sopenharmony_ci};
50748c2ecf20Sopenharmony_cistatic const u8 enc_output098[] __initconst = {
50758c2ecf20Sopenharmony_ci	0x6d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50778c2ecf20Sopenharmony_ci	0x26, 0xa3, 0x7f, 0xa2, 0xe8, 0x10, 0x26, 0x94,
50788c2ecf20Sopenharmony_ci	0x5c, 0x39, 0xe9, 0xf2, 0xeb, 0xa8, 0x77, 0x02,
50798c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50818c2ecf20Sopenharmony_ci	0xa5, 0xf1, 0xcf, 0xf2, 0x46, 0xfa, 0x09, 0x66,
50828c2ecf20Sopenharmony_ci	0x6e, 0x3b, 0xdf, 0x50, 0xb7, 0xf5, 0x44, 0xb3,
50838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50848c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50858c2ecf20Sopenharmony_ci	0xa5, 0xf1, 0xcf, 0xf2, 0x46, 0xfa, 0x09, 0x66,
50868c2ecf20Sopenharmony_ci	0x6e, 0x3b, 0xdf, 0x50, 0xb7, 0xf5, 0x44, 0xb3,
50878c2ecf20Sopenharmony_ci	0x1e, 0x6b, 0xea, 0x63, 0x14, 0x54, 0x2e, 0x2e,
50888c2ecf20Sopenharmony_ci	0xf9, 0xff, 0xcf, 0x45, 0x0b, 0x2e, 0x98, 0x2b
50898c2ecf20Sopenharmony_ci};
50908c2ecf20Sopenharmony_cistatic const u8 enc_assoc098[] __initconst = {
50918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
50928c2ecf20Sopenharmony_ci};
50938c2ecf20Sopenharmony_cistatic const u8 enc_nonce098[] __initconst = {
50948c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
50958c2ecf20Sopenharmony_ci};
50968c2ecf20Sopenharmony_cistatic const u8 enc_key098[] __initconst = {
50978c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
50988c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
50998c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
51008c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
51018c2ecf20Sopenharmony_ci};
51028c2ecf20Sopenharmony_ci
51038c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
51048c2ecf20Sopenharmony_cistatic const u8 enc_input099[] __initconst = {
51058c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
51068c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
51078c2ecf20Sopenharmony_ci	0xfc, 0x01, 0xb8, 0x91, 0xe5, 0xf0, 0xf9, 0x12,
51088c2ecf20Sopenharmony_ci	0x8d, 0x7d, 0x1c, 0x57, 0x91, 0x92, 0xb6, 0x98,
51098c2ecf20Sopenharmony_ci	0x63, 0x41, 0x44, 0x15, 0xb6, 0x99, 0x68, 0x95,
51108c2ecf20Sopenharmony_ci	0x9a, 0x72, 0x91, 0xb7, 0xa5, 0xaf, 0x13, 0x48,
51118c2ecf20Sopenharmony_ci	0x60, 0xcd, 0x9e, 0xa1, 0x0c, 0x29, 0xa3, 0x66,
51128c2ecf20Sopenharmony_ci	0x54, 0xe7, 0xa2, 0x8e, 0x76, 0x1b, 0xec, 0xd8
51138c2ecf20Sopenharmony_ci};
51148c2ecf20Sopenharmony_cistatic const u8 enc_output099[] __initconst = {
51158c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51178c2ecf20Sopenharmony_ci	0x7b, 0xc3, 0x72, 0x98, 0x09, 0xe9, 0xdf, 0xe4,
51188c2ecf20Sopenharmony_ci	0x4f, 0xba, 0x0a, 0xdd, 0xad, 0xe2, 0xaa, 0xdf,
51198c2ecf20Sopenharmony_ci	0x03, 0xc4, 0x56, 0xdf, 0x82, 0x3c, 0xb8, 0xa0,
51208c2ecf20Sopenharmony_ci	0xc5, 0xb9, 0x00, 0xb3, 0xc9, 0x35, 0xb8, 0xd3,
51218c2ecf20Sopenharmony_ci	0x03, 0xc4, 0x56, 0xdf, 0x82, 0x3c, 0xb8, 0xa0,
51228c2ecf20Sopenharmony_ci	0xc5, 0xb9, 0x00, 0xb3, 0xc9, 0x35, 0xb8, 0xd3,
51238c2ecf20Sopenharmony_ci	0xed, 0x20, 0x17, 0xc8, 0xdb, 0xa4, 0x77, 0x56,
51248c2ecf20Sopenharmony_ci	0x29, 0x04, 0x9d, 0x78, 0x6e, 0x3b, 0xce, 0xb1
51258c2ecf20Sopenharmony_ci};
51268c2ecf20Sopenharmony_cistatic const u8 enc_assoc099[] __initconst = {
51278c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
51288c2ecf20Sopenharmony_ci};
51298c2ecf20Sopenharmony_cistatic const u8 enc_nonce099[] __initconst = {
51308c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
51318c2ecf20Sopenharmony_ci};
51328c2ecf20Sopenharmony_cistatic const u8 enc_key099[] __initconst = {
51338c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
51348c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
51358c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
51368c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
51378c2ecf20Sopenharmony_ci};
51388c2ecf20Sopenharmony_ci
51398c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
51408c2ecf20Sopenharmony_cistatic const u8 enc_input100[] __initconst = {
51418c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
51428c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
51438c2ecf20Sopenharmony_ci	0x6b, 0x6d, 0xc9, 0xd2, 0x1a, 0x81, 0x9e, 0x70,
51448c2ecf20Sopenharmony_ci	0xb5, 0x77, 0xf4, 0x41, 0x37, 0xd3, 0xd6, 0xbd,
51458c2ecf20Sopenharmony_ci	0x13, 0x35, 0xf5, 0xeb, 0x44, 0x49, 0x40, 0x77,
51468c2ecf20Sopenharmony_ci	0xb2, 0x64, 0x49, 0xa5, 0x4b, 0x6c, 0x7c, 0x75,
51478c2ecf20Sopenharmony_ci	0x10, 0xb9, 0x2f, 0x5f, 0xfe, 0xf9, 0x8b, 0x84,
51488c2ecf20Sopenharmony_ci	0x7c, 0xf1, 0x7a, 0x9c, 0x98, 0xd8, 0x83, 0xe5
51498c2ecf20Sopenharmony_ci};
51508c2ecf20Sopenharmony_cistatic const u8 enc_output100[] __initconst = {
51518c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51538c2ecf20Sopenharmony_ci	0xec, 0xaf, 0x03, 0xdb, 0xf6, 0x98, 0xb8, 0x86,
51548c2ecf20Sopenharmony_ci	0x77, 0xb0, 0xe2, 0xcb, 0x0b, 0xa3, 0xca, 0xfa,
51558c2ecf20Sopenharmony_ci	0x73, 0xb0, 0xe7, 0x21, 0x70, 0xec, 0x90, 0x42,
51568c2ecf20Sopenharmony_ci	0xed, 0xaf, 0xd8, 0xa1, 0x27, 0xf6, 0xd7, 0xee,
51578c2ecf20Sopenharmony_ci	0x73, 0xb0, 0xe7, 0x21, 0x70, 0xec, 0x90, 0x42,
51588c2ecf20Sopenharmony_ci	0xed, 0xaf, 0xd8, 0xa1, 0x27, 0xf6, 0xd7, 0xee,
51598c2ecf20Sopenharmony_ci	0x07, 0x3f, 0x17, 0xcb, 0x67, 0x78, 0x64, 0x59,
51608c2ecf20Sopenharmony_ci	0x25, 0x04, 0x9d, 0x88, 0x22, 0xcb, 0xca, 0xb6
51618c2ecf20Sopenharmony_ci};
51628c2ecf20Sopenharmony_cistatic const u8 enc_assoc100[] __initconst = {
51638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
51648c2ecf20Sopenharmony_ci};
51658c2ecf20Sopenharmony_cistatic const u8 enc_nonce100[] __initconst = {
51668c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
51678c2ecf20Sopenharmony_ci};
51688c2ecf20Sopenharmony_cistatic const u8 enc_key100[] __initconst = {
51698c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
51708c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
51718c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
51728c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
51738c2ecf20Sopenharmony_ci};
51748c2ecf20Sopenharmony_ci
51758c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
51768c2ecf20Sopenharmony_cistatic const u8 enc_input101[] __initconst = {
51778c2ecf20Sopenharmony_ci	0xff, 0xcb, 0x2b, 0x11, 0x06, 0xf8, 0x23, 0x4c,
51788c2ecf20Sopenharmony_ci	0x5e, 0x99, 0xd4, 0xdb, 0x4c, 0x70, 0x48, 0xde,
51798c2ecf20Sopenharmony_ci	0x32, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
51808c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
51818c2ecf20Sopenharmony_ci	0x16, 0xe9, 0x88, 0x4a, 0x11, 0x4f, 0x0e, 0x92,
51828c2ecf20Sopenharmony_ci	0x66, 0xce, 0xa3, 0x88, 0x5f, 0xe3, 0x6b, 0x9f,
51838c2ecf20Sopenharmony_ci	0xd6, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
51848c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
51858c2ecf20Sopenharmony_ci	0xce, 0xbe, 0xf5, 0xe9, 0x88, 0x5a, 0x80, 0xea,
51868c2ecf20Sopenharmony_ci	0x76, 0xd9, 0x75, 0xc1, 0x44, 0xa4, 0x18, 0x88
51878c2ecf20Sopenharmony_ci};
51888c2ecf20Sopenharmony_cistatic const u8 enc_output101[] __initconst = {
51898c2ecf20Sopenharmony_ci	0xff, 0xa0, 0xfc, 0x3e, 0x80, 0x32, 0xc3, 0xd5,
51908c2ecf20Sopenharmony_ci	0xfd, 0xb6, 0x2a, 0x11, 0xf0, 0x96, 0x30, 0x7d,
51918c2ecf20Sopenharmony_ci	0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51938c2ecf20Sopenharmony_ci	0x76, 0x6c, 0x9a, 0x80, 0x25, 0xea, 0xde, 0xa7,
51948c2ecf20Sopenharmony_ci	0x39, 0x05, 0x32, 0x8c, 0x33, 0x79, 0xc0, 0x04,
51958c2ecf20Sopenharmony_ci	0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51978c2ecf20Sopenharmony_ci	0x76, 0x6c, 0x9a, 0x80, 0x25, 0xea, 0xde, 0xa7,
51988c2ecf20Sopenharmony_ci	0x39, 0x05, 0x32, 0x8c, 0x33, 0x79, 0xc0, 0x04,
51998c2ecf20Sopenharmony_ci	0x8b, 0x9b, 0xb4, 0xb4, 0x86, 0x12, 0x89, 0x65,
52008c2ecf20Sopenharmony_ci	0x8c, 0x69, 0x6a, 0x83, 0x40, 0x15, 0x04, 0x05
52018c2ecf20Sopenharmony_ci};
52028c2ecf20Sopenharmony_cistatic const u8 enc_assoc101[] __initconst = {
52038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
52048c2ecf20Sopenharmony_ci};
52058c2ecf20Sopenharmony_cistatic const u8 enc_nonce101[] __initconst = {
52068c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
52078c2ecf20Sopenharmony_ci};
52088c2ecf20Sopenharmony_cistatic const u8 enc_key101[] __initconst = {
52098c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
52108c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
52118c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
52128c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
52138c2ecf20Sopenharmony_ci};
52148c2ecf20Sopenharmony_ci
52158c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
52168c2ecf20Sopenharmony_cistatic const u8 enc_input102[] __initconst = {
52178c2ecf20Sopenharmony_ci	0x6f, 0x9e, 0x70, 0xed, 0x3b, 0x8b, 0xac, 0xa0,
52188c2ecf20Sopenharmony_ci	0x26, 0xe4, 0x6a, 0x5a, 0x09, 0x43, 0x15, 0x8d,
52198c2ecf20Sopenharmony_ci	0x21, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
52208c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
52218c2ecf20Sopenharmony_ci	0x0c, 0x61, 0x2c, 0x5e, 0x8d, 0x89, 0xa8, 0x73,
52228c2ecf20Sopenharmony_ci	0xdb, 0xca, 0xad, 0x5b, 0x73, 0x46, 0x42, 0x9b,
52238c2ecf20Sopenharmony_ci	0xc5, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
52248c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
52258c2ecf20Sopenharmony_ci	0xd4, 0x36, 0x51, 0xfd, 0x14, 0x9c, 0x26, 0x0b,
52268c2ecf20Sopenharmony_ci	0xcb, 0xdd, 0x7b, 0x12, 0x68, 0x01, 0x31, 0x8c
52278c2ecf20Sopenharmony_ci};
52288c2ecf20Sopenharmony_cistatic const u8 enc_output102[] __initconst = {
52298c2ecf20Sopenharmony_ci	0x6f, 0xf5, 0xa7, 0xc2, 0xbd, 0x41, 0x4c, 0x39,
52308c2ecf20Sopenharmony_ci	0x85, 0xcb, 0x94, 0x90, 0xb5, 0xa5, 0x6d, 0x2e,
52318c2ecf20Sopenharmony_ci	0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52338c2ecf20Sopenharmony_ci	0x6c, 0xe4, 0x3e, 0x94, 0xb9, 0x2c, 0x78, 0x46,
52348c2ecf20Sopenharmony_ci	0x84, 0x01, 0x3c, 0x5f, 0x1f, 0xdc, 0xe9, 0x00,
52358c2ecf20Sopenharmony_ci	0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52378c2ecf20Sopenharmony_ci	0x6c, 0xe4, 0x3e, 0x94, 0xb9, 0x2c, 0x78, 0x46,
52388c2ecf20Sopenharmony_ci	0x84, 0x01, 0x3c, 0x5f, 0x1f, 0xdc, 0xe9, 0x00,
52398c2ecf20Sopenharmony_ci	0x8b, 0x3b, 0xbd, 0x51, 0x64, 0x44, 0x59, 0x56,
52408c2ecf20Sopenharmony_ci	0x8d, 0x81, 0xca, 0x1f, 0xa7, 0x2c, 0xe4, 0x04
52418c2ecf20Sopenharmony_ci};
52428c2ecf20Sopenharmony_cistatic const u8 enc_assoc102[] __initconst = {
52438c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
52448c2ecf20Sopenharmony_ci};
52458c2ecf20Sopenharmony_cistatic const u8 enc_nonce102[] __initconst = {
52468c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
52478c2ecf20Sopenharmony_ci};
52488c2ecf20Sopenharmony_cistatic const u8 enc_key102[] __initconst = {
52498c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
52508c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
52518c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
52528c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
52538c2ecf20Sopenharmony_ci};
52548c2ecf20Sopenharmony_ci
52558c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
52568c2ecf20Sopenharmony_cistatic const u8 enc_input103[] __initconst = {
52578c2ecf20Sopenharmony_ci	0x41, 0x2b, 0x08, 0x0a, 0x3e, 0x19, 0xc1, 0x0d,
52588c2ecf20Sopenharmony_ci	0x44, 0xa1, 0xaf, 0x1e, 0xab, 0xde, 0xb4, 0xce,
52598c2ecf20Sopenharmony_ci	0x35, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
52608c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
52618c2ecf20Sopenharmony_ci	0x6b, 0x83, 0x94, 0x33, 0x09, 0x21, 0x48, 0x6c,
52628c2ecf20Sopenharmony_ci	0xa1, 0x1d, 0x29, 0x1c, 0x3e, 0x97, 0xee, 0x9a,
52638c2ecf20Sopenharmony_ci	0xd1, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
52648c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
52658c2ecf20Sopenharmony_ci	0xb3, 0xd4, 0xe9, 0x90, 0x90, 0x34, 0xc6, 0x14,
52668c2ecf20Sopenharmony_ci	0xb1, 0x0a, 0xff, 0x55, 0x25, 0xd0, 0x9d, 0x8d
52678c2ecf20Sopenharmony_ci};
52688c2ecf20Sopenharmony_cistatic const u8 enc_output103[] __initconst = {
52698c2ecf20Sopenharmony_ci	0x41, 0x40, 0xdf, 0x25, 0xb8, 0xd3, 0x21, 0x94,
52708c2ecf20Sopenharmony_ci	0xe7, 0x8e, 0x51, 0xd4, 0x17, 0x38, 0xcc, 0x6d,
52718c2ecf20Sopenharmony_ci	0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52728c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52738c2ecf20Sopenharmony_ci	0x0b, 0x06, 0x86, 0xf9, 0x3d, 0x84, 0x98, 0x59,
52748c2ecf20Sopenharmony_ci	0xfe, 0xd6, 0xb8, 0x18, 0x52, 0x0d, 0x45, 0x01,
52758c2ecf20Sopenharmony_ci	0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52778c2ecf20Sopenharmony_ci	0x0b, 0x06, 0x86, 0xf9, 0x3d, 0x84, 0x98, 0x59,
52788c2ecf20Sopenharmony_ci	0xfe, 0xd6, 0xb8, 0x18, 0x52, 0x0d, 0x45, 0x01,
52798c2ecf20Sopenharmony_ci	0x86, 0xfb, 0xab, 0x2b, 0x4a, 0x94, 0xf4, 0x7a,
52808c2ecf20Sopenharmony_ci	0xa5, 0x6f, 0x0a, 0xea, 0x65, 0xd1, 0x10, 0x08
52818c2ecf20Sopenharmony_ci};
52828c2ecf20Sopenharmony_cistatic const u8 enc_assoc103[] __initconst = {
52838c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
52848c2ecf20Sopenharmony_ci};
52858c2ecf20Sopenharmony_cistatic const u8 enc_nonce103[] __initconst = {
52868c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
52878c2ecf20Sopenharmony_ci};
52888c2ecf20Sopenharmony_cistatic const u8 enc_key103[] __initconst = {
52898c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
52908c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
52918c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
52928c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
52938c2ecf20Sopenharmony_ci};
52948c2ecf20Sopenharmony_ci
52958c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
52968c2ecf20Sopenharmony_cistatic const u8 enc_input104[] __initconst = {
52978c2ecf20Sopenharmony_ci	0xb2, 0x47, 0xa7, 0x47, 0x23, 0x49, 0x1a, 0xac,
52988c2ecf20Sopenharmony_ci	0xac, 0xaa, 0xd7, 0x09, 0xc9, 0x1e, 0x93, 0x2b,
52998c2ecf20Sopenharmony_ci	0x31, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
53008c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
53018c2ecf20Sopenharmony_ci	0x9a, 0xde, 0x04, 0xe7, 0x5b, 0xb7, 0x01, 0xd9,
53028c2ecf20Sopenharmony_ci	0x66, 0x06, 0x01, 0xb3, 0x47, 0x65, 0xde, 0x98,
53038c2ecf20Sopenharmony_ci	0xd5, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
53048c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
53058c2ecf20Sopenharmony_ci	0x42, 0x89, 0x79, 0x44, 0xc2, 0xa2, 0x8f, 0xa1,
53068c2ecf20Sopenharmony_ci	0x76, 0x11, 0xd7, 0xfa, 0x5c, 0x22, 0xad, 0x8f
53078c2ecf20Sopenharmony_ci};
53088c2ecf20Sopenharmony_cistatic const u8 enc_output104[] __initconst = {
53098c2ecf20Sopenharmony_ci	0xb2, 0x2c, 0x70, 0x68, 0xa5, 0x83, 0xfa, 0x35,
53108c2ecf20Sopenharmony_ci	0x0f, 0x85, 0x29, 0xc3, 0x75, 0xf8, 0xeb, 0x88,
53118c2ecf20Sopenharmony_ci	0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53128c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53138c2ecf20Sopenharmony_ci	0xfa, 0x5b, 0x16, 0x2d, 0x6f, 0x12, 0xd1, 0xec,
53148c2ecf20Sopenharmony_ci	0x39, 0xcd, 0x90, 0xb7, 0x2b, 0xff, 0x75, 0x03,
53158c2ecf20Sopenharmony_ci	0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53178c2ecf20Sopenharmony_ci	0xfa, 0x5b, 0x16, 0x2d, 0x6f, 0x12, 0xd1, 0xec,
53188c2ecf20Sopenharmony_ci	0x39, 0xcd, 0x90, 0xb7, 0x2b, 0xff, 0x75, 0x03,
53198c2ecf20Sopenharmony_ci	0xa0, 0x19, 0xac, 0x2e, 0xd6, 0x67, 0xe1, 0x7d,
53208c2ecf20Sopenharmony_ci	0xa1, 0x6f, 0x0a, 0xfa, 0x19, 0x61, 0x0d, 0x0d
53218c2ecf20Sopenharmony_ci};
53228c2ecf20Sopenharmony_cistatic const u8 enc_assoc104[] __initconst = {
53238c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
53248c2ecf20Sopenharmony_ci};
53258c2ecf20Sopenharmony_cistatic const u8 enc_nonce104[] __initconst = {
53268c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
53278c2ecf20Sopenharmony_ci};
53288c2ecf20Sopenharmony_cistatic const u8 enc_key104[] __initconst = {
53298c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
53308c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
53318c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
53328c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
53338c2ecf20Sopenharmony_ci};
53348c2ecf20Sopenharmony_ci
53358c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
53368c2ecf20Sopenharmony_cistatic const u8 enc_input105[] __initconst = {
53378c2ecf20Sopenharmony_ci	0x74, 0x0f, 0x9e, 0x49, 0xf6, 0x10, 0xef, 0xa5,
53388c2ecf20Sopenharmony_ci	0x85, 0xb6, 0x59, 0xca, 0x6e, 0xd8, 0xb4, 0x99,
53398c2ecf20Sopenharmony_ci	0x2d, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
53408c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
53418c2ecf20Sopenharmony_ci	0x41, 0x2d, 0x96, 0xaf, 0xbe, 0x80, 0xec, 0x3e,
53428c2ecf20Sopenharmony_ci	0x79, 0xd4, 0x51, 0xb0, 0x0a, 0x2d, 0xb2, 0x9a,
53438c2ecf20Sopenharmony_ci	0xc9, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
53448c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
53458c2ecf20Sopenharmony_ci	0x99, 0x7a, 0xeb, 0x0c, 0x27, 0x95, 0x62, 0x46,
53468c2ecf20Sopenharmony_ci	0x69, 0xc3, 0x87, 0xf9, 0x11, 0x6a, 0xc1, 0x8d
53478c2ecf20Sopenharmony_ci};
53488c2ecf20Sopenharmony_cistatic const u8 enc_output105[] __initconst = {
53498c2ecf20Sopenharmony_ci	0x74, 0x64, 0x49, 0x66, 0x70, 0xda, 0x0f, 0x3c,
53508c2ecf20Sopenharmony_ci	0x26, 0x99, 0xa7, 0x00, 0xd2, 0x3e, 0xcc, 0x3a,
53518c2ecf20Sopenharmony_ci	0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53538c2ecf20Sopenharmony_ci	0x21, 0xa8, 0x84, 0x65, 0x8a, 0x25, 0x3c, 0x0b,
53548c2ecf20Sopenharmony_ci	0x26, 0x1f, 0xc0, 0xb4, 0x66, 0xb7, 0x19, 0x01,
53558c2ecf20Sopenharmony_ci	0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53578c2ecf20Sopenharmony_ci	0x21, 0xa8, 0x84, 0x65, 0x8a, 0x25, 0x3c, 0x0b,
53588c2ecf20Sopenharmony_ci	0x26, 0x1f, 0xc0, 0xb4, 0x66, 0xb7, 0x19, 0x01,
53598c2ecf20Sopenharmony_ci	0x73, 0x6e, 0x18, 0x18, 0x16, 0x96, 0xa5, 0x88,
53608c2ecf20Sopenharmony_ci	0x9c, 0x31, 0x59, 0xfa, 0xab, 0xab, 0x20, 0xfd
53618c2ecf20Sopenharmony_ci};
53628c2ecf20Sopenharmony_cistatic const u8 enc_assoc105[] __initconst = {
53638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
53648c2ecf20Sopenharmony_ci};
53658c2ecf20Sopenharmony_cistatic const u8 enc_nonce105[] __initconst = {
53668c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
53678c2ecf20Sopenharmony_ci};
53688c2ecf20Sopenharmony_cistatic const u8 enc_key105[] __initconst = {
53698c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
53708c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
53718c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
53728c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
53738c2ecf20Sopenharmony_ci};
53748c2ecf20Sopenharmony_ci
53758c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
53768c2ecf20Sopenharmony_cistatic const u8 enc_input106[] __initconst = {
53778c2ecf20Sopenharmony_ci	0xad, 0xba, 0x5d, 0x10, 0x5b, 0xc8, 0xaa, 0x06,
53788c2ecf20Sopenharmony_ci	0x2c, 0x23, 0x36, 0xcb, 0x88, 0x9d, 0xdb, 0xd5,
53798c2ecf20Sopenharmony_ci	0x37, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
53808c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
53818c2ecf20Sopenharmony_ci	0x17, 0x7c, 0x5f, 0xfe, 0x28, 0x75, 0xf4, 0x68,
53828c2ecf20Sopenharmony_ci	0xf6, 0xc2, 0x96, 0x57, 0x48, 0xf3, 0x59, 0x9a,
53838c2ecf20Sopenharmony_ci	0xd3, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
53848c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
53858c2ecf20Sopenharmony_ci	0xcf, 0x2b, 0x22, 0x5d, 0xb1, 0x60, 0x7a, 0x10,
53868c2ecf20Sopenharmony_ci	0xe6, 0xd5, 0x40, 0x1e, 0x53, 0xb4, 0x2a, 0x8d
53878c2ecf20Sopenharmony_ci};
53888c2ecf20Sopenharmony_cistatic const u8 enc_output106[] __initconst = {
53898c2ecf20Sopenharmony_ci	0xad, 0xd1, 0x8a, 0x3f, 0xdd, 0x02, 0x4a, 0x9f,
53908c2ecf20Sopenharmony_ci	0x8f, 0x0c, 0xc8, 0x01, 0x34, 0x7b, 0xa3, 0x76,
53918c2ecf20Sopenharmony_ci	0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53938c2ecf20Sopenharmony_ci	0x77, 0xf9, 0x4d, 0x34, 0x1c, 0xd0, 0x24, 0x5d,
53948c2ecf20Sopenharmony_ci	0xa9, 0x09, 0x07, 0x53, 0x24, 0x69, 0xf2, 0x01,
53958c2ecf20Sopenharmony_ci	0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53978c2ecf20Sopenharmony_ci	0x77, 0xf9, 0x4d, 0x34, 0x1c, 0xd0, 0x24, 0x5d,
53988c2ecf20Sopenharmony_ci	0xa9, 0x09, 0x07, 0x53, 0x24, 0x69, 0xf2, 0x01,
53998c2ecf20Sopenharmony_ci	0xba, 0xd5, 0x8f, 0x10, 0xa9, 0x1e, 0x6a, 0x88,
54008c2ecf20Sopenharmony_ci	0x9a, 0xba, 0x32, 0xfd, 0x17, 0xd8, 0x33, 0x1a
54018c2ecf20Sopenharmony_ci};
54028c2ecf20Sopenharmony_cistatic const u8 enc_assoc106[] __initconst = {
54038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
54048c2ecf20Sopenharmony_ci};
54058c2ecf20Sopenharmony_cistatic const u8 enc_nonce106[] __initconst = {
54068c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
54078c2ecf20Sopenharmony_ci};
54088c2ecf20Sopenharmony_cistatic const u8 enc_key106[] __initconst = {
54098c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
54108c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
54118c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
54128c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
54138c2ecf20Sopenharmony_ci};
54148c2ecf20Sopenharmony_ci
54158c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
54168c2ecf20Sopenharmony_cistatic const u8 enc_input107[] __initconst = {
54178c2ecf20Sopenharmony_ci	0xfe, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
54188c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
54198c2ecf20Sopenharmony_ci	0xc0, 0x01, 0xed, 0xc5, 0xda, 0x44, 0x2e, 0x71,
54208c2ecf20Sopenharmony_ci	0x9b, 0xce, 0x9a, 0xbe, 0x27, 0x3a, 0xf1, 0x44,
54218c2ecf20Sopenharmony_ci	0xb4, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
54228c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
54238c2ecf20Sopenharmony_ci	0x48, 0x02, 0x5f, 0x41, 0xfa, 0x4e, 0x33, 0x6c,
54248c2ecf20Sopenharmony_ci	0x78, 0x69, 0x57, 0xa2, 0xa7, 0xc4, 0x93, 0x0a,
54258c2ecf20Sopenharmony_ci	0x6c, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
54268c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
54278c2ecf20Sopenharmony_ci	0x00, 0x26, 0x6e, 0xa1, 0xe4, 0x36, 0x44, 0xa3,
54288c2ecf20Sopenharmony_ci	0x4d, 0x8d, 0xd1, 0xdc, 0x93, 0xf2, 0xfa, 0x13
54298c2ecf20Sopenharmony_ci};
54308c2ecf20Sopenharmony_cistatic const u8 enc_output107[] __initconst = {
54318c2ecf20Sopenharmony_ci	0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54328c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54338c2ecf20Sopenharmony_ci	0x47, 0xc3, 0x27, 0xcc, 0x36, 0x5d, 0x08, 0x87,
54348c2ecf20Sopenharmony_ci	0x59, 0x09, 0x8c, 0x34, 0x1b, 0x4a, 0xed, 0x03,
54358c2ecf20Sopenharmony_ci	0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54378c2ecf20Sopenharmony_ci	0x2b, 0x0b, 0x97, 0x3f, 0x74, 0x5b, 0x28, 0xaa,
54388c2ecf20Sopenharmony_ci	0xe9, 0x37, 0xf5, 0x9f, 0x18, 0xea, 0xc7, 0x01,
54398c2ecf20Sopenharmony_ci	0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54418c2ecf20Sopenharmony_ci	0x2b, 0x0b, 0x97, 0x3f, 0x74, 0x5b, 0x28, 0xaa,
54428c2ecf20Sopenharmony_ci	0xe9, 0x37, 0xf5, 0x9f, 0x18, 0xea, 0xc7, 0x01,
54438c2ecf20Sopenharmony_ci	0xd6, 0x8c, 0xe1, 0x74, 0x07, 0x9a, 0xdd, 0x02,
54448c2ecf20Sopenharmony_ci	0x8d, 0xd0, 0x5c, 0xf8, 0x14, 0x63, 0x04, 0x88
54458c2ecf20Sopenharmony_ci};
54468c2ecf20Sopenharmony_cistatic const u8 enc_assoc107[] __initconst = {
54478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
54488c2ecf20Sopenharmony_ci};
54498c2ecf20Sopenharmony_cistatic const u8 enc_nonce107[] __initconst = {
54508c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
54518c2ecf20Sopenharmony_ci};
54528c2ecf20Sopenharmony_cistatic const u8 enc_key107[] __initconst = {
54538c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
54548c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
54558c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
54568c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
54578c2ecf20Sopenharmony_ci};
54588c2ecf20Sopenharmony_ci
54598c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
54608c2ecf20Sopenharmony_cistatic const u8 enc_input108[] __initconst = {
54618c2ecf20Sopenharmony_ci	0xb5, 0x13, 0xb0, 0x6a, 0xb9, 0xac, 0x14, 0x43,
54628c2ecf20Sopenharmony_ci	0x5a, 0xcb, 0x8a, 0xa3, 0xa3, 0x7a, 0xfd, 0xb6,
54638c2ecf20Sopenharmony_ci	0x54, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
54648c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
54658c2ecf20Sopenharmony_ci	0x61, 0x95, 0x01, 0x93, 0xb1, 0xbf, 0x03, 0x11,
54668c2ecf20Sopenharmony_ci	0xff, 0x11, 0x79, 0x89, 0xae, 0xd9, 0xa9, 0x99,
54678c2ecf20Sopenharmony_ci	0xb0, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
54688c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
54698c2ecf20Sopenharmony_ci	0xb9, 0xc2, 0x7c, 0x30, 0x28, 0xaa, 0x8d, 0x69,
54708c2ecf20Sopenharmony_ci	0xef, 0x06, 0xaf, 0xc0, 0xb5, 0x9e, 0xda, 0x8e
54718c2ecf20Sopenharmony_ci};
54728c2ecf20Sopenharmony_cistatic const u8 enc_output108[] __initconst = {
54738c2ecf20Sopenharmony_ci	0xb5, 0x78, 0x67, 0x45, 0x3f, 0x66, 0xf4, 0xda,
54748c2ecf20Sopenharmony_ci	0xf9, 0xe4, 0x74, 0x69, 0x1f, 0x9c, 0x85, 0x15,
54758c2ecf20Sopenharmony_ci	0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54778c2ecf20Sopenharmony_ci	0x01, 0x10, 0x13, 0x59, 0x85, 0x1a, 0xd3, 0x24,
54788c2ecf20Sopenharmony_ci	0xa0, 0xda, 0xe8, 0x8d, 0xc2, 0x43, 0x02, 0x02,
54798c2ecf20Sopenharmony_ci	0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
54818c2ecf20Sopenharmony_ci	0x01, 0x10, 0x13, 0x59, 0x85, 0x1a, 0xd3, 0x24,
54828c2ecf20Sopenharmony_ci	0xa0, 0xda, 0xe8, 0x8d, 0xc2, 0x43, 0x02, 0x02,
54838c2ecf20Sopenharmony_ci	0xaa, 0x48, 0xa3, 0x88, 0x7d, 0x4b, 0x05, 0x96,
54848c2ecf20Sopenharmony_ci	0x99, 0xc2, 0xfd, 0xf9, 0xc6, 0x78, 0x7e, 0x0a
54858c2ecf20Sopenharmony_ci};
54868c2ecf20Sopenharmony_cistatic const u8 enc_assoc108[] __initconst = {
54878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
54888c2ecf20Sopenharmony_ci};
54898c2ecf20Sopenharmony_cistatic const u8 enc_nonce108[] __initconst = {
54908c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
54918c2ecf20Sopenharmony_ci};
54928c2ecf20Sopenharmony_cistatic const u8 enc_key108[] __initconst = {
54938c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
54948c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
54958c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
54968c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
54978c2ecf20Sopenharmony_ci};
54988c2ecf20Sopenharmony_ci
54998c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
55008c2ecf20Sopenharmony_cistatic const u8 enc_input109[] __initconst = {
55018c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
55028c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
55038c2ecf20Sopenharmony_ci	0xd4, 0xf1, 0x09, 0xe8, 0x14, 0xce, 0xa8, 0x5a,
55048c2ecf20Sopenharmony_ci	0x08, 0xc0, 0x11, 0xd8, 0x50, 0xdd, 0x1d, 0xcb,
55058c2ecf20Sopenharmony_ci	0xcf, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
55068c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
55078c2ecf20Sopenharmony_ci	0x53, 0x40, 0xb8, 0x5a, 0x9a, 0xa0, 0x82, 0x96,
55088c2ecf20Sopenharmony_ci	0xb7, 0x7a, 0x5f, 0xc3, 0x96, 0x1f, 0x66, 0x0f,
55098c2ecf20Sopenharmony_ci	0x17, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
55108c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
55118c2ecf20Sopenharmony_ci	0x1b, 0x64, 0x89, 0xba, 0x84, 0xd8, 0xf5, 0x59,
55128c2ecf20Sopenharmony_ci	0x82, 0x9e, 0xd9, 0xbd, 0xa2, 0x29, 0x0f, 0x16
55138c2ecf20Sopenharmony_ci};
55148c2ecf20Sopenharmony_cistatic const u8 enc_output109[] __initconst = {
55158c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55178c2ecf20Sopenharmony_ci	0x53, 0x33, 0xc3, 0xe1, 0xf8, 0xd7, 0x8e, 0xac,
55188c2ecf20Sopenharmony_ci	0xca, 0x07, 0x07, 0x52, 0x6c, 0xad, 0x01, 0x8c,
55198c2ecf20Sopenharmony_ci	0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55208c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55218c2ecf20Sopenharmony_ci	0x30, 0x49, 0x70, 0x24, 0x14, 0xb5, 0x99, 0x50,
55228c2ecf20Sopenharmony_ci	0x26, 0x24, 0xfd, 0xfe, 0x29, 0x31, 0x32, 0x04,
55238c2ecf20Sopenharmony_ci	0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55258c2ecf20Sopenharmony_ci	0x30, 0x49, 0x70, 0x24, 0x14, 0xb5, 0x99, 0x50,
55268c2ecf20Sopenharmony_ci	0x26, 0x24, 0xfd, 0xfe, 0x29, 0x31, 0x32, 0x04,
55278c2ecf20Sopenharmony_ci	0xb9, 0x36, 0xa8, 0x17, 0xf2, 0x21, 0x1a, 0xf1,
55288c2ecf20Sopenharmony_ci	0x29, 0xe2, 0xcf, 0x16, 0x0f, 0xd4, 0x2b, 0xcb
55298c2ecf20Sopenharmony_ci};
55308c2ecf20Sopenharmony_cistatic const u8 enc_assoc109[] __initconst = {
55318c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
55328c2ecf20Sopenharmony_ci};
55338c2ecf20Sopenharmony_cistatic const u8 enc_nonce109[] __initconst = {
55348c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
55358c2ecf20Sopenharmony_ci};
55368c2ecf20Sopenharmony_cistatic const u8 enc_key109[] __initconst = {
55378c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
55388c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
55398c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
55408c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
55418c2ecf20Sopenharmony_ci};
55428c2ecf20Sopenharmony_ci
55438c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
55448c2ecf20Sopenharmony_cistatic const u8 enc_input110[] __initconst = {
55458c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
55468c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
55478c2ecf20Sopenharmony_ci	0xdf, 0x4c, 0x62, 0x03, 0x2d, 0x41, 0x19, 0xb5,
55488c2ecf20Sopenharmony_ci	0x88, 0x47, 0x7e, 0x99, 0x92, 0x5a, 0x56, 0xd9,
55498c2ecf20Sopenharmony_ci	0xd6, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
55508c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
55518c2ecf20Sopenharmony_ci	0xfa, 0x84, 0xf0, 0x64, 0x55, 0x36, 0x42, 0x1b,
55528c2ecf20Sopenharmony_ci	0x2b, 0xb9, 0x24, 0x6e, 0xc2, 0x19, 0xed, 0x0b,
55538c2ecf20Sopenharmony_ci	0x0e, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
55548c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
55558c2ecf20Sopenharmony_ci	0xb2, 0xa0, 0xc1, 0x84, 0x4b, 0x4e, 0x35, 0xd4,
55568c2ecf20Sopenharmony_ci	0x1e, 0x5d, 0xa2, 0x10, 0xf6, 0x2f, 0x84, 0x12
55578c2ecf20Sopenharmony_ci};
55588c2ecf20Sopenharmony_cistatic const u8 enc_output110[] __initconst = {
55598c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55608c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55618c2ecf20Sopenharmony_ci	0x58, 0x8e, 0xa8, 0x0a, 0xc1, 0x58, 0x3f, 0x43,
55628c2ecf20Sopenharmony_ci	0x4a, 0x80, 0x68, 0x13, 0xae, 0x2a, 0x4a, 0x9e,
55638c2ecf20Sopenharmony_ci	0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55658c2ecf20Sopenharmony_ci	0x99, 0x8d, 0x38, 0x1a, 0xdb, 0x23, 0x59, 0xdd,
55668c2ecf20Sopenharmony_ci	0xba, 0xe7, 0x86, 0x53, 0x7d, 0x37, 0xb9, 0x00,
55678c2ecf20Sopenharmony_ci	0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
55698c2ecf20Sopenharmony_ci	0x99, 0x8d, 0x38, 0x1a, 0xdb, 0x23, 0x59, 0xdd,
55708c2ecf20Sopenharmony_ci	0xba, 0xe7, 0x86, 0x53, 0x7d, 0x37, 0xb9, 0x00,
55718c2ecf20Sopenharmony_ci	0x9f, 0x7a, 0xc4, 0x35, 0x1f, 0x6b, 0x91, 0xe6,
55728c2ecf20Sopenharmony_ci	0x30, 0x97, 0xa7, 0x13, 0x11, 0x5d, 0x05, 0xbe
55738c2ecf20Sopenharmony_ci};
55748c2ecf20Sopenharmony_cistatic const u8 enc_assoc110[] __initconst = {
55758c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
55768c2ecf20Sopenharmony_ci};
55778c2ecf20Sopenharmony_cistatic const u8 enc_nonce110[] __initconst = {
55788c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
55798c2ecf20Sopenharmony_ci};
55808c2ecf20Sopenharmony_cistatic const u8 enc_key110[] __initconst = {
55818c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
55828c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
55838c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
55848c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
55858c2ecf20Sopenharmony_ci};
55868c2ecf20Sopenharmony_ci
55878c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
55888c2ecf20Sopenharmony_cistatic const u8 enc_input111[] __initconst = {
55898c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
55908c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
55918c2ecf20Sopenharmony_ci	0x13, 0xf8, 0x0a, 0x00, 0x6d, 0xc1, 0xbb, 0xda,
55928c2ecf20Sopenharmony_ci	0xd6, 0x39, 0xa9, 0x2f, 0xc7, 0xec, 0xa6, 0x55,
55938c2ecf20Sopenharmony_ci	0xf7, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
55948c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
55958c2ecf20Sopenharmony_ci	0x63, 0x48, 0xb8, 0xfd, 0x29, 0xbf, 0x96, 0xd5,
55968c2ecf20Sopenharmony_ci	0x63, 0xa5, 0x17, 0xe2, 0x7d, 0x7b, 0xfc, 0x0f,
55978c2ecf20Sopenharmony_ci	0x2f, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
55988c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
55998c2ecf20Sopenharmony_ci	0x2b, 0x6c, 0x89, 0x1d, 0x37, 0xc7, 0xe1, 0x1a,
56008c2ecf20Sopenharmony_ci	0x56, 0x41, 0x91, 0x9c, 0x49, 0x4d, 0x95, 0x16
56018c2ecf20Sopenharmony_ci};
56028c2ecf20Sopenharmony_cistatic const u8 enc_output111[] __initconst = {
56038c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56058c2ecf20Sopenharmony_ci	0x94, 0x3a, 0xc0, 0x09, 0x81, 0xd8, 0x9d, 0x2c,
56068c2ecf20Sopenharmony_ci	0x14, 0xfe, 0xbf, 0xa5, 0xfb, 0x9c, 0xba, 0x12,
56078c2ecf20Sopenharmony_ci	0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56098c2ecf20Sopenharmony_ci	0x00, 0x41, 0x70, 0x83, 0xa7, 0xaa, 0x8d, 0x13,
56108c2ecf20Sopenharmony_ci	0xf2, 0xfb, 0xb5, 0xdf, 0xc2, 0x55, 0xa8, 0x04,
56118c2ecf20Sopenharmony_ci	0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56128c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56138c2ecf20Sopenharmony_ci	0x00, 0x41, 0x70, 0x83, 0xa7, 0xaa, 0x8d, 0x13,
56148c2ecf20Sopenharmony_ci	0xf2, 0xfb, 0xb5, 0xdf, 0xc2, 0x55, 0xa8, 0x04,
56158c2ecf20Sopenharmony_ci	0x9a, 0x18, 0xa8, 0x28, 0x07, 0x02, 0x69, 0xf4,
56168c2ecf20Sopenharmony_ci	0x47, 0x00, 0xd0, 0x09, 0xe7, 0x17, 0x1c, 0xc9
56178c2ecf20Sopenharmony_ci};
56188c2ecf20Sopenharmony_cistatic const u8 enc_assoc111[] __initconst = {
56198c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
56208c2ecf20Sopenharmony_ci};
56218c2ecf20Sopenharmony_cistatic const u8 enc_nonce111[] __initconst = {
56228c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
56238c2ecf20Sopenharmony_ci};
56248c2ecf20Sopenharmony_cistatic const u8 enc_key111[] __initconst = {
56258c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
56268c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
56278c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
56288c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
56298c2ecf20Sopenharmony_ci};
56308c2ecf20Sopenharmony_ci
56318c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
56328c2ecf20Sopenharmony_cistatic const u8 enc_input112[] __initconst = {
56338c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
56348c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
56358c2ecf20Sopenharmony_ci	0x82, 0xe5, 0x9b, 0x45, 0x82, 0x91, 0x50, 0x38,
56368c2ecf20Sopenharmony_ci	0xf9, 0x33, 0x81, 0x1e, 0x65, 0x2d, 0xc6, 0x6a,
56378c2ecf20Sopenharmony_ci	0xfc, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
56388c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
56398c2ecf20Sopenharmony_ci	0xb6, 0x71, 0xc8, 0xca, 0xc2, 0x70, 0xc2, 0x65,
56408c2ecf20Sopenharmony_ci	0xa0, 0xac, 0x2f, 0x53, 0x57, 0x99, 0x88, 0x0a,
56418c2ecf20Sopenharmony_ci	0x24, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
56428c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
56438c2ecf20Sopenharmony_ci	0xfe, 0x55, 0xf9, 0x2a, 0xdc, 0x08, 0xb5, 0xaa,
56448c2ecf20Sopenharmony_ci	0x95, 0x48, 0xa9, 0x2d, 0x63, 0xaf, 0xe1, 0x13
56458c2ecf20Sopenharmony_ci};
56468c2ecf20Sopenharmony_cistatic const u8 enc_output112[] __initconst = {
56478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56488c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56498c2ecf20Sopenharmony_ci	0x05, 0x27, 0x51, 0x4c, 0x6e, 0x88, 0x76, 0xce,
56508c2ecf20Sopenharmony_ci	0x3b, 0xf4, 0x97, 0x94, 0x59, 0x5d, 0xda, 0x2d,
56518c2ecf20Sopenharmony_ci	0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56528c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56538c2ecf20Sopenharmony_ci	0xd5, 0x78, 0x00, 0xb4, 0x4c, 0x65, 0xd9, 0xa3,
56548c2ecf20Sopenharmony_ci	0x31, 0xf2, 0x8d, 0x6e, 0xe8, 0xb7, 0xdc, 0x01,
56558c2ecf20Sopenharmony_ci	0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56568c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56578c2ecf20Sopenharmony_ci	0xd5, 0x78, 0x00, 0xb4, 0x4c, 0x65, 0xd9, 0xa3,
56588c2ecf20Sopenharmony_ci	0x31, 0xf2, 0x8d, 0x6e, 0xe8, 0xb7, 0xdc, 0x01,
56598c2ecf20Sopenharmony_ci	0xb4, 0x36, 0xa8, 0x2b, 0x93, 0xd5, 0x55, 0xf7,
56608c2ecf20Sopenharmony_ci	0x43, 0x00, 0xd0, 0x19, 0x9b, 0xa7, 0x18, 0xce
56618c2ecf20Sopenharmony_ci};
56628c2ecf20Sopenharmony_cistatic const u8 enc_assoc112[] __initconst = {
56638c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
56648c2ecf20Sopenharmony_ci};
56658c2ecf20Sopenharmony_cistatic const u8 enc_nonce112[] __initconst = {
56668c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
56678c2ecf20Sopenharmony_ci};
56688c2ecf20Sopenharmony_cistatic const u8 enc_key112[] __initconst = {
56698c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
56708c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
56718c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
56728c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
56738c2ecf20Sopenharmony_ci};
56748c2ecf20Sopenharmony_ci
56758c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
56768c2ecf20Sopenharmony_cistatic const u8 enc_input113[] __initconst = {
56778c2ecf20Sopenharmony_ci	0xff, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
56788c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
56798c2ecf20Sopenharmony_ci	0xf1, 0xd1, 0x28, 0x87, 0xb7, 0x21, 0x69, 0x86,
56808c2ecf20Sopenharmony_ci	0xa1, 0x2d, 0x79, 0x09, 0x8b, 0x6d, 0xe6, 0x0f,
56818c2ecf20Sopenharmony_ci	0xc0, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
56828c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
56838c2ecf20Sopenharmony_ci	0xa7, 0xc7, 0x58, 0x99, 0xf3, 0xe6, 0x0a, 0xf1,
56848c2ecf20Sopenharmony_ci	0xfc, 0xb6, 0xc7, 0x30, 0x7d, 0x87, 0x59, 0x0f,
56858c2ecf20Sopenharmony_ci	0x18, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
56868c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
56878c2ecf20Sopenharmony_ci	0xef, 0xe3, 0x69, 0x79, 0xed, 0x9e, 0x7d, 0x3e,
56888c2ecf20Sopenharmony_ci	0xc9, 0x52, 0x41, 0x4e, 0x49, 0xb1, 0x30, 0x16
56898c2ecf20Sopenharmony_ci};
56908c2ecf20Sopenharmony_cistatic const u8 enc_output113[] __initconst = {
56918c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56928c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56938c2ecf20Sopenharmony_ci	0x76, 0x13, 0xe2, 0x8e, 0x5b, 0x38, 0x4f, 0x70,
56948c2ecf20Sopenharmony_ci	0x63, 0xea, 0x6f, 0x83, 0xb7, 0x1d, 0xfa, 0x48,
56958c2ecf20Sopenharmony_ci	0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56968c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56978c2ecf20Sopenharmony_ci	0xc4, 0xce, 0x90, 0xe7, 0x7d, 0xf3, 0x11, 0x37,
56988c2ecf20Sopenharmony_ci	0x6d, 0xe8, 0x65, 0x0d, 0xc2, 0xa9, 0x0d, 0x04,
56998c2ecf20Sopenharmony_ci	0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57008c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57018c2ecf20Sopenharmony_ci	0xc4, 0xce, 0x90, 0xe7, 0x7d, 0xf3, 0x11, 0x37,
57028c2ecf20Sopenharmony_ci	0x6d, 0xe8, 0x65, 0x0d, 0xc2, 0xa9, 0x0d, 0x04,
57038c2ecf20Sopenharmony_ci	0xce, 0x54, 0xa8, 0x2e, 0x1f, 0xa9, 0x42, 0xfa,
57048c2ecf20Sopenharmony_ci	0x3f, 0x00, 0xd0, 0x29, 0x4f, 0x37, 0x15, 0xd3
57058c2ecf20Sopenharmony_ci};
57068c2ecf20Sopenharmony_cistatic const u8 enc_assoc113[] __initconst = {
57078c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
57088c2ecf20Sopenharmony_ci};
57098c2ecf20Sopenharmony_cistatic const u8 enc_nonce113[] __initconst = {
57108c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
57118c2ecf20Sopenharmony_ci};
57128c2ecf20Sopenharmony_cistatic const u8 enc_key113[] __initconst = {
57138c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
57148c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
57158c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
57168c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
57178c2ecf20Sopenharmony_ci};
57188c2ecf20Sopenharmony_ci
57198c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
57208c2ecf20Sopenharmony_cistatic const u8 enc_input114[] __initconst = {
57218c2ecf20Sopenharmony_ci	0xcb, 0xf1, 0xda, 0x9e, 0x0b, 0xa9, 0x37, 0x73,
57228c2ecf20Sopenharmony_ci	0x74, 0xe6, 0x9e, 0x1c, 0x0e, 0x60, 0x0c, 0xfc,
57238c2ecf20Sopenharmony_ci	0x34, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
57248c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
57258c2ecf20Sopenharmony_ci	0xbe, 0x3f, 0xa6, 0x6b, 0x6c, 0xe7, 0x80, 0x8a,
57268c2ecf20Sopenharmony_ci	0xa3, 0xe4, 0x59, 0x49, 0xf9, 0x44, 0x64, 0x9f,
57278c2ecf20Sopenharmony_ci	0xd0, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
57288c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
57298c2ecf20Sopenharmony_ci	0x66, 0x68, 0xdb, 0xc8, 0xf5, 0xf2, 0x0e, 0xf2,
57308c2ecf20Sopenharmony_ci	0xb3, 0xf3, 0x8f, 0x00, 0xe2, 0x03, 0x17, 0x88
57318c2ecf20Sopenharmony_ci};
57328c2ecf20Sopenharmony_cistatic const u8 enc_output114[] __initconst = {
57338c2ecf20Sopenharmony_ci	0xcb, 0x9a, 0x0d, 0xb1, 0x8d, 0x63, 0xd7, 0xea,
57348c2ecf20Sopenharmony_ci	0xd7, 0xc9, 0x60, 0xd6, 0xb2, 0x86, 0x74, 0x5f,
57358c2ecf20Sopenharmony_ci	0xb3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57368c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57378c2ecf20Sopenharmony_ci	0xde, 0xba, 0xb4, 0xa1, 0x58, 0x42, 0x50, 0xbf,
57388c2ecf20Sopenharmony_ci	0xfc, 0x2f, 0xc8, 0x4d, 0x95, 0xde, 0xcf, 0x04,
57398c2ecf20Sopenharmony_ci	0xb3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57408c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57418c2ecf20Sopenharmony_ci	0xde, 0xba, 0xb4, 0xa1, 0x58, 0x42, 0x50, 0xbf,
57428c2ecf20Sopenharmony_ci	0xfc, 0x2f, 0xc8, 0x4d, 0x95, 0xde, 0xcf, 0x04,
57438c2ecf20Sopenharmony_ci	0x23, 0x83, 0xab, 0x0b, 0x79, 0x92, 0x05, 0x69,
57448c2ecf20Sopenharmony_ci	0x9b, 0x51, 0x0a, 0xa7, 0x09, 0xbf, 0x31, 0xf1
57458c2ecf20Sopenharmony_ci};
57468c2ecf20Sopenharmony_cistatic const u8 enc_assoc114[] __initconst = {
57478c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
57488c2ecf20Sopenharmony_ci};
57498c2ecf20Sopenharmony_cistatic const u8 enc_nonce114[] __initconst = {
57508c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
57518c2ecf20Sopenharmony_ci};
57528c2ecf20Sopenharmony_cistatic const u8 enc_key114[] __initconst = {
57538c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
57548c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
57558c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
57568c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
57578c2ecf20Sopenharmony_ci};
57588c2ecf20Sopenharmony_ci
57598c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
57608c2ecf20Sopenharmony_cistatic const u8 enc_input115[] __initconst = {
57618c2ecf20Sopenharmony_ci	0x8f, 0x27, 0x86, 0x94, 0xc4, 0xe9, 0xda, 0xeb,
57628c2ecf20Sopenharmony_ci	0xd5, 0x8d, 0x3e, 0x5b, 0x96, 0x6e, 0x8b, 0x68,
57638c2ecf20Sopenharmony_ci	0x42, 0x3d, 0x35, 0xf6, 0x13, 0xe6, 0xd9, 0x09,
57648c2ecf20Sopenharmony_ci	0x3d, 0x38, 0xe9, 0x75, 0xc3, 0x8f, 0xe3, 0xb8,
57658c2ecf20Sopenharmony_ci	0x06, 0x53, 0xe7, 0xa3, 0x31, 0x71, 0x88, 0x33,
57668c2ecf20Sopenharmony_ci	0xac, 0xc3, 0xb9, 0xad, 0xff, 0x1c, 0x31, 0x98,
57678c2ecf20Sopenharmony_ci	0xa6, 0xf6, 0x37, 0x81, 0x71, 0xea, 0xe4, 0x39,
57688c2ecf20Sopenharmony_ci	0x6e, 0xa1, 0x5d, 0xc2, 0x40, 0xd1, 0xab, 0xf4,
57698c2ecf20Sopenharmony_ci	0xde, 0x04, 0x9a, 0x00, 0xa8, 0x64, 0x06, 0x4b,
57708c2ecf20Sopenharmony_ci	0xbc, 0xd4, 0x6f, 0xe4, 0xe4, 0x5b, 0x42, 0x8f
57718c2ecf20Sopenharmony_ci};
57728c2ecf20Sopenharmony_cistatic const u8 enc_output115[] __initconst = {
57738c2ecf20Sopenharmony_ci	0x8f, 0x4c, 0x51, 0xbb, 0x42, 0x23, 0x3a, 0x72,
57748c2ecf20Sopenharmony_ci	0x76, 0xa2, 0xc0, 0x91, 0x2a, 0x88, 0xf3, 0xcb,
57758c2ecf20Sopenharmony_ci	0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57768c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57778c2ecf20Sopenharmony_ci	0x66, 0xd6, 0xf5, 0x69, 0x05, 0xd4, 0x58, 0x06,
57788c2ecf20Sopenharmony_ci	0xf3, 0x08, 0x28, 0xa9, 0x93, 0x86, 0x9a, 0x03,
57798c2ecf20Sopenharmony_ci	0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57808c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57818c2ecf20Sopenharmony_ci	0x66, 0xd6, 0xf5, 0x69, 0x05, 0xd4, 0x58, 0x06,
57828c2ecf20Sopenharmony_ci	0xf3, 0x08, 0x28, 0xa9, 0x93, 0x86, 0x9a, 0x03,
57838c2ecf20Sopenharmony_ci	0x8b, 0xfb, 0xab, 0x17, 0xa9, 0xe0, 0xb8, 0x74,
57848c2ecf20Sopenharmony_ci	0x8b, 0x51, 0x0a, 0xe7, 0xd9, 0xfd, 0x23, 0x05
57858c2ecf20Sopenharmony_ci};
57868c2ecf20Sopenharmony_cistatic const u8 enc_assoc115[] __initconst = {
57878c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
57888c2ecf20Sopenharmony_ci};
57898c2ecf20Sopenharmony_cistatic const u8 enc_nonce115[] __initconst = {
57908c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
57918c2ecf20Sopenharmony_ci};
57928c2ecf20Sopenharmony_cistatic const u8 enc_key115[] __initconst = {
57938c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
57948c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
57958c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
57968c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
57978c2ecf20Sopenharmony_ci};
57988c2ecf20Sopenharmony_ci
57998c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
58008c2ecf20Sopenharmony_cistatic const u8 enc_input116[] __initconst = {
58018c2ecf20Sopenharmony_ci	0xd5, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
58028c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
58038c2ecf20Sopenharmony_ci	0x9a, 0x22, 0xd7, 0x0a, 0x48, 0xe2, 0x4f, 0xdd,
58048c2ecf20Sopenharmony_ci	0xcd, 0xd4, 0x41, 0x9d, 0xe6, 0x4c, 0x8f, 0x44,
58058c2ecf20Sopenharmony_ci	0xfc, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
58068c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
58078c2ecf20Sopenharmony_ci	0x77, 0xb5, 0xc9, 0x07, 0xd9, 0xc9, 0xe1, 0xea,
58088c2ecf20Sopenharmony_ci	0x51, 0x85, 0x1a, 0x20, 0x4a, 0xad, 0x9f, 0x0a,
58098c2ecf20Sopenharmony_ci	0x24, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
58108c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
58118c2ecf20Sopenharmony_ci	0x3f, 0x91, 0xf8, 0xe7, 0xc7, 0xb1, 0x96, 0x25,
58128c2ecf20Sopenharmony_ci	0x64, 0x61, 0x9c, 0x5e, 0x7e, 0x9b, 0xf6, 0x13
58138c2ecf20Sopenharmony_ci};
58148c2ecf20Sopenharmony_cistatic const u8 enc_output116[] __initconst = {
58158c2ecf20Sopenharmony_ci	0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58168c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58178c2ecf20Sopenharmony_ci	0x1d, 0xe0, 0x1d, 0x03, 0xa4, 0xfb, 0x69, 0x2b,
58188c2ecf20Sopenharmony_ci	0x0f, 0x13, 0x57, 0x17, 0xda, 0x3c, 0x93, 0x03,
58198c2ecf20Sopenharmony_ci	0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58208c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58218c2ecf20Sopenharmony_ci	0x14, 0xbc, 0x01, 0x79, 0x57, 0xdc, 0xfa, 0x2c,
58228c2ecf20Sopenharmony_ci	0xc0, 0xdb, 0xb8, 0x1d, 0xf5, 0x83, 0xcb, 0x01,
58238c2ecf20Sopenharmony_ci	0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58248c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58258c2ecf20Sopenharmony_ci	0x14, 0xbc, 0x01, 0x79, 0x57, 0xdc, 0xfa, 0x2c,
58268c2ecf20Sopenharmony_ci	0xc0, 0xdb, 0xb8, 0x1d, 0xf5, 0x83, 0xcb, 0x01,
58278c2ecf20Sopenharmony_ci	0x49, 0xbc, 0x6e, 0x9f, 0xc5, 0x1c, 0x4d, 0x50,
58288c2ecf20Sopenharmony_ci	0x30, 0x36, 0x64, 0x4d, 0x84, 0x27, 0x73, 0xd2
58298c2ecf20Sopenharmony_ci};
58308c2ecf20Sopenharmony_cistatic const u8 enc_assoc116[] __initconst = {
58318c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
58328c2ecf20Sopenharmony_ci};
58338c2ecf20Sopenharmony_cistatic const u8 enc_nonce116[] __initconst = {
58348c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
58358c2ecf20Sopenharmony_ci};
58368c2ecf20Sopenharmony_cistatic const u8 enc_key116[] __initconst = {
58378c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
58388c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
58398c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
58408c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
58418c2ecf20Sopenharmony_ci};
58428c2ecf20Sopenharmony_ci
58438c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
58448c2ecf20Sopenharmony_cistatic const u8 enc_input117[] __initconst = {
58458c2ecf20Sopenharmony_ci	0xdb, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
58468c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
58478c2ecf20Sopenharmony_ci	0x75, 0xd5, 0x64, 0x3a, 0xa5, 0xaf, 0x93, 0x4d,
58488c2ecf20Sopenharmony_ci	0x8c, 0xce, 0x39, 0x2c, 0xc3, 0xee, 0xdb, 0x47,
58498c2ecf20Sopenharmony_ci	0xc0, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
58508c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
58518c2ecf20Sopenharmony_ci	0x60, 0x1b, 0x5a, 0xd2, 0x06, 0x7f, 0x28, 0x06,
58528c2ecf20Sopenharmony_ci	0x6a, 0x8f, 0x32, 0x81, 0x71, 0x5b, 0xa8, 0x08,
58538c2ecf20Sopenharmony_ci	0x18, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
58548c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
58558c2ecf20Sopenharmony_ci	0x28, 0x3f, 0x6b, 0x32, 0x18, 0x07, 0x5f, 0xc9,
58568c2ecf20Sopenharmony_ci	0x5f, 0x6b, 0xb4, 0xff, 0x45, 0x6d, 0xc1, 0x11
58578c2ecf20Sopenharmony_ci};
58588c2ecf20Sopenharmony_cistatic const u8 enc_output117[] __initconst = {
58598c2ecf20Sopenharmony_ci	0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58608c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58618c2ecf20Sopenharmony_ci	0xf2, 0x17, 0xae, 0x33, 0x49, 0xb6, 0xb5, 0xbb,
58628c2ecf20Sopenharmony_ci	0x4e, 0x09, 0x2f, 0xa6, 0xff, 0x9e, 0xc7, 0x00,
58638c2ecf20Sopenharmony_ci	0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58648c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58658c2ecf20Sopenharmony_ci	0x03, 0x12, 0x92, 0xac, 0x88, 0x6a, 0x33, 0xc0,
58668c2ecf20Sopenharmony_ci	0xfb, 0xd1, 0x90, 0xbc, 0xce, 0x75, 0xfc, 0x03,
58678c2ecf20Sopenharmony_ci	0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58688c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58698c2ecf20Sopenharmony_ci	0x03, 0x12, 0x92, 0xac, 0x88, 0x6a, 0x33, 0xc0,
58708c2ecf20Sopenharmony_ci	0xfb, 0xd1, 0x90, 0xbc, 0xce, 0x75, 0xfc, 0x03,
58718c2ecf20Sopenharmony_ci	0x63, 0xda, 0x6e, 0xa2, 0x51, 0xf0, 0x39, 0x53,
58728c2ecf20Sopenharmony_ci	0x2c, 0x36, 0x64, 0x5d, 0x38, 0xb7, 0x6f, 0xd7
58738c2ecf20Sopenharmony_ci};
58748c2ecf20Sopenharmony_cistatic const u8 enc_assoc117[] __initconst = {
58758c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
58768c2ecf20Sopenharmony_ci};
58778c2ecf20Sopenharmony_cistatic const u8 enc_nonce117[] __initconst = {
58788c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
58798c2ecf20Sopenharmony_ci};
58808c2ecf20Sopenharmony_cistatic const u8 enc_key117[] __initconst = {
58818c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
58828c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
58838c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
58848c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
58858c2ecf20Sopenharmony_ci};
58868c2ecf20Sopenharmony_ci
58878c2ecf20Sopenharmony_ci/* wycheproof - edge case intermediate sums in poly1305 */
58888c2ecf20Sopenharmony_cistatic const u8 enc_input118[] __initconst = {
58898c2ecf20Sopenharmony_ci	0x93, 0x94, 0x28, 0xd0, 0x79, 0x35, 0x1f, 0x66,
58908c2ecf20Sopenharmony_ci	0x5c, 0xd0, 0x01, 0x35, 0x43, 0x19, 0x87, 0x5c,
58918c2ecf20Sopenharmony_ci	0x62, 0x48, 0x39, 0x60, 0x42, 0x16, 0xe4, 0x03,
58928c2ecf20Sopenharmony_ci	0xeb, 0xcc, 0x6a, 0xf5, 0x59, 0xec, 0x8b, 0x43,
58938c2ecf20Sopenharmony_ci	0x97, 0x7a, 0xed, 0x35, 0xcb, 0x5a, 0x2f, 0xca,
58948c2ecf20Sopenharmony_ci	0xa0, 0x34, 0x6e, 0xfb, 0x93, 0x65, 0x54, 0x64,
58958c2ecf20Sopenharmony_ci	0xd8, 0xc8, 0xc3, 0xfa, 0x1a, 0x9e, 0x47, 0x4a,
58968c2ecf20Sopenharmony_ci	0xbe, 0x52, 0xd0, 0x2c, 0x81, 0x87, 0xe9, 0x0f,
58978c2ecf20Sopenharmony_ci	0x4f, 0x2d, 0x90, 0x96, 0x52, 0x4f, 0xa1, 0xb2,
58988c2ecf20Sopenharmony_ci	0xb0, 0x23, 0xb8, 0xb2, 0x88, 0x22, 0x27, 0x73,
58998c2ecf20Sopenharmony_ci	0x90, 0xec, 0xf2, 0x1a, 0x04, 0xe6, 0x30, 0x85,
59008c2ecf20Sopenharmony_ci	0x8b, 0xb6, 0x56, 0x52, 0xb5, 0xb1, 0x80, 0x16
59018c2ecf20Sopenharmony_ci};
59028c2ecf20Sopenharmony_cistatic const u8 enc_output118[] __initconst = {
59038c2ecf20Sopenharmony_ci	0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59048c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59058c2ecf20Sopenharmony_ci	0xe5, 0x8a, 0xf3, 0x69, 0xae, 0x0f, 0xc2, 0xf5,
59068c2ecf20Sopenharmony_ci	0x29, 0x0b, 0x7c, 0x7f, 0x65, 0x9c, 0x97, 0x04,
59078c2ecf20Sopenharmony_ci	0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59088c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59098c2ecf20Sopenharmony_ci	0xbb, 0xc1, 0x0b, 0x84, 0x94, 0x8b, 0x5c, 0x8c,
59108c2ecf20Sopenharmony_ci	0x2f, 0x0c, 0x72, 0x11, 0x3e, 0xa9, 0xbd, 0x04,
59118c2ecf20Sopenharmony_ci	0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59128c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59138c2ecf20Sopenharmony_ci	0xbb, 0xc1, 0x0b, 0x84, 0x94, 0x8b, 0x5c, 0x8c,
59148c2ecf20Sopenharmony_ci	0x2f, 0x0c, 0x72, 0x11, 0x3e, 0xa9, 0xbd, 0x04,
59158c2ecf20Sopenharmony_ci	0x73, 0xeb, 0x27, 0x24, 0xb5, 0xc4, 0x05, 0xf0,
59168c2ecf20Sopenharmony_ci	0x4d, 0x00, 0xd0, 0xf1, 0x58, 0x40, 0xa1, 0xc1
59178c2ecf20Sopenharmony_ci};
59188c2ecf20Sopenharmony_cistatic const u8 enc_assoc118[] __initconst = {
59198c2ecf20Sopenharmony_ci	0xff, 0xff, 0xff, 0xff
59208c2ecf20Sopenharmony_ci};
59218c2ecf20Sopenharmony_cistatic const u8 enc_nonce118[] __initconst = {
59228c2ecf20Sopenharmony_ci	0x00, 0x00, 0x00, 0x00, 0x06, 0x4c, 0x2d, 0x52
59238c2ecf20Sopenharmony_ci};
59248c2ecf20Sopenharmony_cistatic const u8 enc_key118[] __initconst = {
59258c2ecf20Sopenharmony_ci	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
59268c2ecf20Sopenharmony_ci	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
59278c2ecf20Sopenharmony_ci	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
59288c2ecf20Sopenharmony_ci	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f
59298c2ecf20Sopenharmony_ci};
59308c2ecf20Sopenharmony_ci
59318c2ecf20Sopenharmony_cistatic const struct chacha20poly1305_testvec
59328c2ecf20Sopenharmony_cichacha20poly1305_enc_vectors[] __initconst = {
59338c2ecf20Sopenharmony_ci	{ enc_input001, enc_output001, enc_assoc001, enc_nonce001, enc_key001,
59348c2ecf20Sopenharmony_ci	  sizeof(enc_input001), sizeof(enc_assoc001), sizeof(enc_nonce001) },
59358c2ecf20Sopenharmony_ci	{ enc_input002, enc_output002, enc_assoc002, enc_nonce002, enc_key002,
59368c2ecf20Sopenharmony_ci	  sizeof(enc_input002), sizeof(enc_assoc002), sizeof(enc_nonce002) },
59378c2ecf20Sopenharmony_ci	{ enc_input003, enc_output003, enc_assoc003, enc_nonce003, enc_key003,
59388c2ecf20Sopenharmony_ci	  sizeof(enc_input003), sizeof(enc_assoc003), sizeof(enc_nonce003) },
59398c2ecf20Sopenharmony_ci	{ enc_input004, enc_output004, enc_assoc004, enc_nonce004, enc_key004,
59408c2ecf20Sopenharmony_ci	  sizeof(enc_input004), sizeof(enc_assoc004), sizeof(enc_nonce004) },
59418c2ecf20Sopenharmony_ci	{ enc_input005, enc_output005, enc_assoc005, enc_nonce005, enc_key005,
59428c2ecf20Sopenharmony_ci	  sizeof(enc_input005), sizeof(enc_assoc005), sizeof(enc_nonce005) },
59438c2ecf20Sopenharmony_ci	{ enc_input006, enc_output006, enc_assoc006, enc_nonce006, enc_key006,
59448c2ecf20Sopenharmony_ci	  sizeof(enc_input006), sizeof(enc_assoc006), sizeof(enc_nonce006) },
59458c2ecf20Sopenharmony_ci	{ enc_input007, enc_output007, enc_assoc007, enc_nonce007, enc_key007,
59468c2ecf20Sopenharmony_ci	  sizeof(enc_input007), sizeof(enc_assoc007), sizeof(enc_nonce007) },
59478c2ecf20Sopenharmony_ci	{ enc_input008, enc_output008, enc_assoc008, enc_nonce008, enc_key008,
59488c2ecf20Sopenharmony_ci	  sizeof(enc_input008), sizeof(enc_assoc008), sizeof(enc_nonce008) },
59498c2ecf20Sopenharmony_ci	{ enc_input009, enc_output009, enc_assoc009, enc_nonce009, enc_key009,
59508c2ecf20Sopenharmony_ci	  sizeof(enc_input009), sizeof(enc_assoc009), sizeof(enc_nonce009) },
59518c2ecf20Sopenharmony_ci	{ enc_input010, enc_output010, enc_assoc010, enc_nonce010, enc_key010,
59528c2ecf20Sopenharmony_ci	  sizeof(enc_input010), sizeof(enc_assoc010), sizeof(enc_nonce010) },
59538c2ecf20Sopenharmony_ci	{ enc_input011, enc_output011, enc_assoc011, enc_nonce011, enc_key011,
59548c2ecf20Sopenharmony_ci	  sizeof(enc_input011), sizeof(enc_assoc011), sizeof(enc_nonce011) },
59558c2ecf20Sopenharmony_ci	{ enc_input012, enc_output012, enc_assoc012, enc_nonce012, enc_key012,
59568c2ecf20Sopenharmony_ci	  sizeof(enc_input012), sizeof(enc_assoc012), sizeof(enc_nonce012) },
59578c2ecf20Sopenharmony_ci	{ enc_input013, enc_output013, enc_assoc013, enc_nonce013, enc_key013,
59588c2ecf20Sopenharmony_ci	  sizeof(enc_input013), sizeof(enc_assoc013), sizeof(enc_nonce013) },
59598c2ecf20Sopenharmony_ci	{ enc_input014, enc_output014, enc_assoc014, enc_nonce014, enc_key014,
59608c2ecf20Sopenharmony_ci	  sizeof(enc_input014), sizeof(enc_assoc014), sizeof(enc_nonce014) },
59618c2ecf20Sopenharmony_ci	{ enc_input015, enc_output015, enc_assoc015, enc_nonce015, enc_key015,
59628c2ecf20Sopenharmony_ci	  sizeof(enc_input015), sizeof(enc_assoc015), sizeof(enc_nonce015) },
59638c2ecf20Sopenharmony_ci	{ enc_input016, enc_output016, enc_assoc016, enc_nonce016, enc_key016,
59648c2ecf20Sopenharmony_ci	  sizeof(enc_input016), sizeof(enc_assoc016), sizeof(enc_nonce016) },
59658c2ecf20Sopenharmony_ci	{ enc_input017, enc_output017, enc_assoc017, enc_nonce017, enc_key017,
59668c2ecf20Sopenharmony_ci	  sizeof(enc_input017), sizeof(enc_assoc017), sizeof(enc_nonce017) },
59678c2ecf20Sopenharmony_ci	{ enc_input018, enc_output018, enc_assoc018, enc_nonce018, enc_key018,
59688c2ecf20Sopenharmony_ci	  sizeof(enc_input018), sizeof(enc_assoc018), sizeof(enc_nonce018) },
59698c2ecf20Sopenharmony_ci	{ enc_input019, enc_output019, enc_assoc019, enc_nonce019, enc_key019,
59708c2ecf20Sopenharmony_ci	  sizeof(enc_input019), sizeof(enc_assoc019), sizeof(enc_nonce019) },
59718c2ecf20Sopenharmony_ci	{ enc_input020, enc_output020, enc_assoc020, enc_nonce020, enc_key020,
59728c2ecf20Sopenharmony_ci	  sizeof(enc_input020), sizeof(enc_assoc020), sizeof(enc_nonce020) },
59738c2ecf20Sopenharmony_ci	{ enc_input021, enc_output021, enc_assoc021, enc_nonce021, enc_key021,
59748c2ecf20Sopenharmony_ci	  sizeof(enc_input021), sizeof(enc_assoc021), sizeof(enc_nonce021) },
59758c2ecf20Sopenharmony_ci	{ enc_input022, enc_output022, enc_assoc022, enc_nonce022, enc_key022,
59768c2ecf20Sopenharmony_ci	  sizeof(enc_input022), sizeof(enc_assoc022), sizeof(enc_nonce022) },
59778c2ecf20Sopenharmony_ci	{ enc_input023, enc_output023, enc_assoc023, enc_nonce023, enc_key023,
59788c2ecf20Sopenharmony_ci	  sizeof(enc_input023), sizeof(enc_assoc023), sizeof(enc_nonce023) },
59798c2ecf20Sopenharmony_ci	{ enc_input024, enc_output024, enc_assoc024, enc_nonce024, enc_key024,
59808c2ecf20Sopenharmony_ci	  sizeof(enc_input024), sizeof(enc_assoc024), sizeof(enc_nonce024) },
59818c2ecf20Sopenharmony_ci	{ enc_input025, enc_output025, enc_assoc025, enc_nonce025, enc_key025,
59828c2ecf20Sopenharmony_ci	  sizeof(enc_input025), sizeof(enc_assoc025), sizeof(enc_nonce025) },
59838c2ecf20Sopenharmony_ci	{ enc_input026, enc_output026, enc_assoc026, enc_nonce026, enc_key026,
59848c2ecf20Sopenharmony_ci	  sizeof(enc_input026), sizeof(enc_assoc026), sizeof(enc_nonce026) },
59858c2ecf20Sopenharmony_ci	{ enc_input027, enc_output027, enc_assoc027, enc_nonce027, enc_key027,
59868c2ecf20Sopenharmony_ci	  sizeof(enc_input027), sizeof(enc_assoc027), sizeof(enc_nonce027) },
59878c2ecf20Sopenharmony_ci	{ enc_input028, enc_output028, enc_assoc028, enc_nonce028, enc_key028,
59888c2ecf20Sopenharmony_ci	  sizeof(enc_input028), sizeof(enc_assoc028), sizeof(enc_nonce028) },
59898c2ecf20Sopenharmony_ci	{ enc_input029, enc_output029, enc_assoc029, enc_nonce029, enc_key029,
59908c2ecf20Sopenharmony_ci	  sizeof(enc_input029), sizeof(enc_assoc029), sizeof(enc_nonce029) },
59918c2ecf20Sopenharmony_ci	{ enc_input030, enc_output030, enc_assoc030, enc_nonce030, enc_key030,
59928c2ecf20Sopenharmony_ci	  sizeof(enc_input030), sizeof(enc_assoc030), sizeof(enc_nonce030) },
59938c2ecf20Sopenharmony_ci	{ enc_input031, enc_output031, enc_assoc031, enc_nonce031, enc_key031,
59948c2ecf20Sopenharmony_ci	  sizeof(enc_input031), sizeof(enc_assoc031), sizeof(enc_nonce031) },
59958c2ecf20Sopenharmony_ci	{ enc_input032, enc_output032, enc_assoc032, enc_nonce032, enc_key032,
59968c2ecf20Sopenharmony_ci	  sizeof(enc_input032), sizeof(enc_assoc032), sizeof(enc_nonce032) },
59978c2ecf20Sopenharmony_ci	{ enc_input033, enc_output033, enc_assoc033, enc_nonce033, enc_key033,
59988c2ecf20Sopenharmony_ci	  sizeof(enc_input033), sizeof(enc_assoc033), sizeof(enc_nonce033) },
59998c2ecf20Sopenharmony_ci	{ enc_input034, enc_output034, enc_assoc034, enc_nonce034, enc_key034,
60008c2ecf20Sopenharmony_ci	  sizeof(enc_input034), sizeof(enc_assoc034), sizeof(enc_nonce034) },
60018c2ecf20Sopenharmony_ci	{ enc_input035, enc_output035, enc_assoc035, enc_nonce035, enc_key035,
60028c2ecf20Sopenharmony_ci	  sizeof(enc_input035), sizeof(enc_assoc035), sizeof(enc_nonce035) },
60038c2ecf20Sopenharmony_ci	{ enc_input036, enc_output036, enc_assoc036, enc_nonce036, enc_key036,
60048c2ecf20Sopenharmony_ci	  sizeof(enc_input036), sizeof(enc_assoc036), sizeof(enc_nonce036) },
60058c2ecf20Sopenharmony_ci	{ enc_input037, enc_output037, enc_assoc037, enc_nonce037, enc_key037,
60068c2ecf20Sopenharmony_ci	  sizeof(enc_input037), sizeof(enc_assoc037), sizeof(enc_nonce037) },
60078c2ecf20Sopenharmony_ci	{ enc_input038, enc_output038, enc_assoc038, enc_nonce038, enc_key038,
60088c2ecf20Sopenharmony_ci	  sizeof(enc_input038), sizeof(enc_assoc038), sizeof(enc_nonce038) },
60098c2ecf20Sopenharmony_ci	{ enc_input039, enc_output039, enc_assoc039, enc_nonce039, enc_key039,
60108c2ecf20Sopenharmony_ci	  sizeof(enc_input039), sizeof(enc_assoc039), sizeof(enc_nonce039) },
60118c2ecf20Sopenharmony_ci	{ enc_input040, enc_output040, enc_assoc040, enc_nonce040, enc_key040,
60128c2ecf20Sopenharmony_ci	  sizeof(enc_input040), sizeof(enc_assoc040), sizeof(enc_nonce040) },
60138c2ecf20Sopenharmony_ci	{ enc_input041, enc_output041, enc_assoc041, enc_nonce041, enc_key041,
60148c2ecf20Sopenharmony_ci	  sizeof(enc_input041), sizeof(enc_assoc041), sizeof(enc_nonce041) },
60158c2ecf20Sopenharmony_ci	{ enc_input042, enc_output042, enc_assoc042, enc_nonce042, enc_key042,
60168c2ecf20Sopenharmony_ci	  sizeof(enc_input042), sizeof(enc_assoc042), sizeof(enc_nonce042) },
60178c2ecf20Sopenharmony_ci	{ enc_input043, enc_output043, enc_assoc043, enc_nonce043, enc_key043,
60188c2ecf20Sopenharmony_ci	  sizeof(enc_input043), sizeof(enc_assoc043), sizeof(enc_nonce043) },
60198c2ecf20Sopenharmony_ci	{ enc_input044, enc_output044, enc_assoc044, enc_nonce044, enc_key044,
60208c2ecf20Sopenharmony_ci	  sizeof(enc_input044), sizeof(enc_assoc044), sizeof(enc_nonce044) },
60218c2ecf20Sopenharmony_ci	{ enc_input045, enc_output045, enc_assoc045, enc_nonce045, enc_key045,
60228c2ecf20Sopenharmony_ci	  sizeof(enc_input045), sizeof(enc_assoc045), sizeof(enc_nonce045) },
60238c2ecf20Sopenharmony_ci	{ enc_input046, enc_output046, enc_assoc046, enc_nonce046, enc_key046,
60248c2ecf20Sopenharmony_ci	  sizeof(enc_input046), sizeof(enc_assoc046), sizeof(enc_nonce046) },
60258c2ecf20Sopenharmony_ci	{ enc_input047, enc_output047, enc_assoc047, enc_nonce047, enc_key047,
60268c2ecf20Sopenharmony_ci	  sizeof(enc_input047), sizeof(enc_assoc047), sizeof(enc_nonce047) },
60278c2ecf20Sopenharmony_ci	{ enc_input048, enc_output048, enc_assoc048, enc_nonce048, enc_key048,
60288c2ecf20Sopenharmony_ci	  sizeof(enc_input048), sizeof(enc_assoc048), sizeof(enc_nonce048) },
60298c2ecf20Sopenharmony_ci	{ enc_input049, enc_output049, enc_assoc049, enc_nonce049, enc_key049,
60308c2ecf20Sopenharmony_ci	  sizeof(enc_input049), sizeof(enc_assoc049), sizeof(enc_nonce049) },
60318c2ecf20Sopenharmony_ci	{ enc_input050, enc_output050, enc_assoc050, enc_nonce050, enc_key050,
60328c2ecf20Sopenharmony_ci	  sizeof(enc_input050), sizeof(enc_assoc050), sizeof(enc_nonce050) },
60338c2ecf20Sopenharmony_ci	{ enc_input051, enc_output051, enc_assoc051, enc_nonce051, enc_key051,
60348c2ecf20Sopenharmony_ci	  sizeof(enc_input051), sizeof(enc_assoc051), sizeof(enc_nonce051) },
60358c2ecf20Sopenharmony_ci	{ enc_input052, enc_output052, enc_assoc052, enc_nonce052, enc_key052,
60368c2ecf20Sopenharmony_ci	  sizeof(enc_input052), sizeof(enc_assoc052), sizeof(enc_nonce052) },
60378c2ecf20Sopenharmony_ci	{ enc_input053, enc_output053, enc_assoc053, enc_nonce053, enc_key053,
60388c2ecf20Sopenharmony_ci	  sizeof(enc_input053), sizeof(enc_assoc053), sizeof(enc_nonce053) },
60398c2ecf20Sopenharmony_ci	{ enc_input054, enc_output054, enc_assoc054, enc_nonce054, enc_key054,
60408c2ecf20Sopenharmony_ci	  sizeof(enc_input054), sizeof(enc_assoc054), sizeof(enc_nonce054) },
60418c2ecf20Sopenharmony_ci	{ enc_input055, enc_output055, enc_assoc055, enc_nonce055, enc_key055,
60428c2ecf20Sopenharmony_ci	  sizeof(enc_input055), sizeof(enc_assoc055), sizeof(enc_nonce055) },
60438c2ecf20Sopenharmony_ci	{ enc_input056, enc_output056, enc_assoc056, enc_nonce056, enc_key056,
60448c2ecf20Sopenharmony_ci	  sizeof(enc_input056), sizeof(enc_assoc056), sizeof(enc_nonce056) },
60458c2ecf20Sopenharmony_ci	{ enc_input057, enc_output057, enc_assoc057, enc_nonce057, enc_key057,
60468c2ecf20Sopenharmony_ci	  sizeof(enc_input057), sizeof(enc_assoc057), sizeof(enc_nonce057) },
60478c2ecf20Sopenharmony_ci	{ enc_input058, enc_output058, enc_assoc058, enc_nonce058, enc_key058,
60488c2ecf20Sopenharmony_ci	  sizeof(enc_input058), sizeof(enc_assoc058), sizeof(enc_nonce058) },
60498c2ecf20Sopenharmony_ci	{ enc_input059, enc_output059, enc_assoc059, enc_nonce059, enc_key059,
60508c2ecf20Sopenharmony_ci	  sizeof(enc_input059), sizeof(enc_assoc059), sizeof(enc_nonce059) },
60518c2ecf20Sopenharmony_ci	{ enc_input060, enc_output060, enc_assoc060, enc_nonce060, enc_key060,
60528c2ecf20Sopenharmony_ci	  sizeof(enc_input060), sizeof(enc_assoc060), sizeof(enc_nonce060) },
60538c2ecf20Sopenharmony_ci	{ enc_input061, enc_output061, enc_assoc061, enc_nonce061, enc_key061,
60548c2ecf20Sopenharmony_ci	  sizeof(enc_input061), sizeof(enc_assoc061), sizeof(enc_nonce061) },
60558c2ecf20Sopenharmony_ci	{ enc_input062, enc_output062, enc_assoc062, enc_nonce062, enc_key062,
60568c2ecf20Sopenharmony_ci	  sizeof(enc_input062), sizeof(enc_assoc062), sizeof(enc_nonce062) },
60578c2ecf20Sopenharmony_ci	{ enc_input063, enc_output063, enc_assoc063, enc_nonce063, enc_key063,
60588c2ecf20Sopenharmony_ci	  sizeof(enc_input063), sizeof(enc_assoc063), sizeof(enc_nonce063) },
60598c2ecf20Sopenharmony_ci	{ enc_input064, enc_output064, enc_assoc064, enc_nonce064, enc_key064,
60608c2ecf20Sopenharmony_ci	  sizeof(enc_input064), sizeof(enc_assoc064), sizeof(enc_nonce064) },
60618c2ecf20Sopenharmony_ci	{ enc_input065, enc_output065, enc_assoc065, enc_nonce065, enc_key065,
60628c2ecf20Sopenharmony_ci	  sizeof(enc_input065), sizeof(enc_assoc065), sizeof(enc_nonce065) },
60638c2ecf20Sopenharmony_ci	{ enc_input066, enc_output066, enc_assoc066, enc_nonce066, enc_key066,
60648c2ecf20Sopenharmony_ci	  sizeof(enc_input066), sizeof(enc_assoc066), sizeof(enc_nonce066) },
60658c2ecf20Sopenharmony_ci	{ enc_input067, enc_output067, enc_assoc067, enc_nonce067, enc_key067,
60668c2ecf20Sopenharmony_ci	  sizeof(enc_input067), sizeof(enc_assoc067), sizeof(enc_nonce067) },
60678c2ecf20Sopenharmony_ci	{ enc_input068, enc_output068, enc_assoc068, enc_nonce068, enc_key068,
60688c2ecf20Sopenharmony_ci	  sizeof(enc_input068), sizeof(enc_assoc068), sizeof(enc_nonce068) },
60698c2ecf20Sopenharmony_ci	{ enc_input069, enc_output069, enc_assoc069, enc_nonce069, enc_key069,
60708c2ecf20Sopenharmony_ci	  sizeof(enc_input069), sizeof(enc_assoc069), sizeof(enc_nonce069) },
60718c2ecf20Sopenharmony_ci	{ enc_input070, enc_output070, enc_assoc070, enc_nonce070, enc_key070,
60728c2ecf20Sopenharmony_ci	  sizeof(enc_input070), sizeof(enc_assoc070), sizeof(enc_nonce070) },
60738c2ecf20Sopenharmony_ci	{ enc_input071, enc_output071, enc_assoc071, enc_nonce071, enc_key071,
60748c2ecf20Sopenharmony_ci	  sizeof(enc_input071), sizeof(enc_assoc071), sizeof(enc_nonce071) },
60758c2ecf20Sopenharmony_ci	{ enc_input072, enc_output072, enc_assoc072, enc_nonce072, enc_key072,
60768c2ecf20Sopenharmony_ci	  sizeof(enc_input072), sizeof(enc_assoc072), sizeof(enc_nonce072) },
60778c2ecf20Sopenharmony_ci	{ enc_input073, enc_output073, enc_assoc073, enc_nonce073, enc_key073,
60788c2ecf20Sopenharmony_ci	  sizeof(enc_input073), sizeof(enc_assoc073), sizeof(enc_nonce073) },
60798c2ecf20Sopenharmony_ci	{ enc_input074, enc_output074, enc_assoc074, enc_nonce074, enc_key074,
60808c2ecf20Sopenharmony_ci	  sizeof(enc_input074), sizeof(enc_assoc074), sizeof(enc_nonce074) },
60818c2ecf20Sopenharmony_ci	{ enc_input075, enc_output075, enc_assoc075, enc_nonce075, enc_key075,
60828c2ecf20Sopenharmony_ci	  sizeof(enc_input075), sizeof(enc_assoc075), sizeof(enc_nonce075) },
60838c2ecf20Sopenharmony_ci	{ enc_input076, enc_output076, enc_assoc076, enc_nonce076, enc_key076,
60848c2ecf20Sopenharmony_ci	  sizeof(enc_input076), sizeof(enc_assoc076), sizeof(enc_nonce076) },
60858c2ecf20Sopenharmony_ci	{ enc_input077, enc_output077, enc_assoc077, enc_nonce077, enc_key077,
60868c2ecf20Sopenharmony_ci	  sizeof(enc_input077), sizeof(enc_assoc077), sizeof(enc_nonce077) },
60878c2ecf20Sopenharmony_ci	{ enc_input078, enc_output078, enc_assoc078, enc_nonce078, enc_key078,
60888c2ecf20Sopenharmony_ci	  sizeof(enc_input078), sizeof(enc_assoc078), sizeof(enc_nonce078) },
60898c2ecf20Sopenharmony_ci	{ enc_input079, enc_output079, enc_assoc079, enc_nonce079, enc_key079,
60908c2ecf20Sopenharmony_ci	  sizeof(enc_input079), sizeof(enc_assoc079), sizeof(enc_nonce079) },
60918c2ecf20Sopenharmony_ci	{ enc_input080, enc_output080, enc_assoc080, enc_nonce080, enc_key080,
60928c2ecf20Sopenharmony_ci	  sizeof(enc_input080), sizeof(enc_assoc080), sizeof(enc_nonce080) },
60938c2ecf20Sopenharmony_ci	{ enc_input081, enc_output081, enc_assoc081, enc_nonce081, enc_key081,
60948c2ecf20Sopenharmony_ci	  sizeof(enc_input081), sizeof(enc_assoc081), sizeof(enc_nonce081) },
60958c2ecf20Sopenharmony_ci	{ enc_input082, enc_output082, enc_assoc082, enc_nonce082, enc_key082,
60968c2ecf20Sopenharmony_ci	  sizeof(enc_input082), sizeof(enc_assoc082), sizeof(enc_nonce082) },
60978c2ecf20Sopenharmony_ci	{ enc_input083, enc_output083, enc_assoc083, enc_nonce083, enc_key083,
60988c2ecf20Sopenharmony_ci	  sizeof(enc_input083), sizeof(enc_assoc083), sizeof(enc_nonce083) },
60998c2ecf20Sopenharmony_ci	{ enc_input084, enc_output084, enc_assoc084, enc_nonce084, enc_key084,
61008c2ecf20Sopenharmony_ci	  sizeof(enc_input084), sizeof(enc_assoc084), sizeof(enc_nonce084) },
61018c2ecf20Sopenharmony_ci	{ enc_input085, enc_output085, enc_assoc085, enc_nonce085, enc_key085,
61028c2ecf20Sopenharmony_ci	  sizeof(enc_input085), sizeof(enc_assoc085), sizeof(enc_nonce085) },
61038c2ecf20Sopenharmony_ci	{ enc_input086, enc_output086, enc_assoc086, enc_nonce086, enc_key086,
61048c2ecf20Sopenharmony_ci	  sizeof(enc_input086), sizeof(enc_assoc086), sizeof(enc_nonce086) },
61058c2ecf20Sopenharmony_ci	{ enc_input087, enc_output087, enc_assoc087, enc_nonce087, enc_key087,
61068c2ecf20Sopenharmony_ci	  sizeof(enc_input087), sizeof(enc_assoc087), sizeof(enc_nonce087) },
61078c2ecf20Sopenharmony_ci	{ enc_input088, enc_output088, enc_assoc088, enc_nonce088, enc_key088,
61088c2ecf20Sopenharmony_ci	  sizeof(enc_input088), sizeof(enc_assoc088), sizeof(enc_nonce088) },
61098c2ecf20Sopenharmony_ci	{ enc_input089, enc_output089, enc_assoc089, enc_nonce089, enc_key089,
61108c2ecf20Sopenharmony_ci	  sizeof(enc_input089), sizeof(enc_assoc089), sizeof(enc_nonce089) },
61118c2ecf20Sopenharmony_ci	{ enc_input090, enc_output090, enc_assoc090, enc_nonce090, enc_key090,
61128c2ecf20Sopenharmony_ci	  sizeof(enc_input090), sizeof(enc_assoc090), sizeof(enc_nonce090) },
61138c2ecf20Sopenharmony_ci	{ enc_input091, enc_output091, enc_assoc091, enc_nonce091, enc_key091,
61148c2ecf20Sopenharmony_ci	  sizeof(enc_input091), sizeof(enc_assoc091), sizeof(enc_nonce091) },
61158c2ecf20Sopenharmony_ci	{ enc_input092, enc_output092, enc_assoc092, enc_nonce092, enc_key092,
61168c2ecf20Sopenharmony_ci	  sizeof(enc_input092), sizeof(enc_assoc092), sizeof(enc_nonce092) },
61178c2ecf20Sopenharmony_ci	{ enc_input093, enc_output093, enc_assoc093, enc_nonce093, enc_key093,
61188c2ecf20Sopenharmony_ci	  sizeof(enc_input093), sizeof(enc_assoc093), sizeof(enc_nonce093) },
61198c2ecf20Sopenharmony_ci	{ enc_input094, enc_output094, enc_assoc094, enc_nonce094, enc_key094,
61208c2ecf20Sopenharmony_ci	  sizeof(enc_input094), sizeof(enc_assoc094), sizeof(enc_nonce094) },
61218c2ecf20Sopenharmony_ci	{ enc_input095, enc_output095, enc_assoc095, enc_nonce095, enc_key095,
61228c2ecf20Sopenharmony_ci	  sizeof(enc_input095), sizeof(enc_assoc095), sizeof(enc_nonce095) },
61238c2ecf20Sopenharmony_ci	{ enc_input096, enc_output096, enc_assoc096, enc_nonce096, enc_key096,
61248c2ecf20Sopenharmony_ci	  sizeof(enc_input096), sizeof(enc_assoc096), sizeof(enc_nonce096) },
61258c2ecf20Sopenharmony_ci	{ enc_input097, enc_output097, enc_assoc097, enc_nonce097, enc_key097,
61268c2ecf20Sopenharmony_ci	  sizeof(enc_input097), sizeof(enc_assoc097), sizeof(enc_nonce097) },
61278c2ecf20Sopenharmony_ci	{ enc_input098, enc_output098, enc_assoc098, enc_nonce098, enc_key098,
61288c2ecf20Sopenharmony_ci	  sizeof(enc_input098), sizeof(enc_assoc098), sizeof(enc_nonce098) },
61298c2ecf20Sopenharmony_ci	{ enc_input099, enc_output099, enc_assoc099, enc_nonce099, enc_key099,
61308c2ecf20Sopenharmony_ci	  sizeof(enc_input099), sizeof(enc_assoc099), sizeof(enc_nonce099) },
61318c2ecf20Sopenharmony_ci	{ enc_input100, enc_output100, enc_assoc100, enc_nonce100, enc_key100,
61328c2ecf20Sopenharmony_ci	  sizeof(enc_input100), sizeof(enc_assoc100), sizeof(enc_nonce100) },
61338c2ecf20Sopenharmony_ci	{ enc_input101, enc_output101, enc_assoc101, enc_nonce101, enc_key101,
61348c2ecf20Sopenharmony_ci	  sizeof(enc_input101), sizeof(enc_assoc101), sizeof(enc_nonce101) },
61358c2ecf20Sopenharmony_ci	{ enc_input102, enc_output102, enc_assoc102, enc_nonce102, enc_key102,
61368c2ecf20Sopenharmony_ci	  sizeof(enc_input102), sizeof(enc_assoc102), sizeof(enc_nonce102) },
61378c2ecf20Sopenharmony_ci	{ enc_input103, enc_output103, enc_assoc103, enc_nonce103, enc_key103,
61388c2ecf20Sopenharmony_ci	  sizeof(enc_input103), sizeof(enc_assoc103), sizeof(enc_nonce103) },
61398c2ecf20Sopenharmony_ci	{ enc_input104, enc_output104, enc_assoc104, enc_nonce104, enc_key104,
61408c2ecf20Sopenharmony_ci	  sizeof(enc_input104), sizeof(enc_assoc104), sizeof(enc_nonce104) },
61418c2ecf20Sopenharmony_ci	{ enc_input105, enc_output105, enc_assoc105, enc_nonce105, enc_key105,
61428c2ecf20Sopenharmony_ci	  sizeof(enc_input105), sizeof(enc_assoc105), sizeof(enc_nonce105) },
61438c2ecf20Sopenharmony_ci	{ enc_input106, enc_output106, enc_assoc106, enc_nonce106, enc_key106,
61448c2ecf20Sopenharmony_ci	  sizeof(enc_input106), sizeof(enc_assoc106), sizeof(enc_nonce106) },
61458c2ecf20Sopenharmony_ci	{ enc_input107, enc_output107, enc_assoc107, enc_nonce107, enc_key107,
61468c2ecf20Sopenharmony_ci	  sizeof(enc_input107), sizeof(enc_assoc107), sizeof(enc_nonce107) },
61478c2ecf20Sopenharmony_ci	{ enc_input108, enc_output108, enc_assoc108, enc_nonce108, enc_key108,
61488c2ecf20Sopenharmony_ci	  sizeof(enc_input108), sizeof(enc_assoc108), sizeof(enc_nonce108) },
61498c2ecf20Sopenharmony_ci	{ enc_input109, enc_output109, enc_assoc109, enc_nonce109, enc_key109,
61508c2ecf20Sopenharmony_ci	  sizeof(enc_input109), sizeof(enc_assoc109), sizeof(enc_nonce109) },
61518c2ecf20Sopenharmony_ci	{ enc_input110, enc_output110, enc_assoc110, enc_nonce110, enc_key110,
61528c2ecf20Sopenharmony_ci	  sizeof(enc_input110), sizeof(enc_assoc110), sizeof(enc_nonce110) },
61538c2ecf20Sopenharmony_ci	{ enc_input111, enc_output111, enc_assoc111, enc_nonce111, enc_key111,
61548c2ecf20Sopenharmony_ci	  sizeof(enc_input111), sizeof(enc_assoc111), sizeof(enc_nonce111) },
61558c2ecf20Sopenharmony_ci	{ enc_input112, enc_output112, enc_assoc112, enc_nonce112, enc_key112,
61568c2ecf20Sopenharmony_ci	  sizeof(enc_input112), sizeof(enc_assoc112), sizeof(enc_nonce112) },
61578c2ecf20Sopenharmony_ci	{ enc_input113, enc_output113, enc_assoc113, enc_nonce113, enc_key113,
61588c2ecf20Sopenharmony_ci	  sizeof(enc_input113), sizeof(enc_assoc113), sizeof(enc_nonce113) },
61598c2ecf20Sopenharmony_ci	{ enc_input114, enc_output114, enc_assoc114, enc_nonce114, enc_key114,
61608c2ecf20Sopenharmony_ci	  sizeof(enc_input114), sizeof(enc_assoc114), sizeof(enc_nonce114) },
61618c2ecf20Sopenharmony_ci	{ enc_input115, enc_output115, enc_assoc115, enc_nonce115, enc_key115,
61628c2ecf20Sopenharmony_ci	  sizeof(enc_input115), sizeof(enc_assoc115), sizeof(enc_nonce115) },
61638c2ecf20Sopenharmony_ci	{ enc_input116, enc_output116, enc_assoc116, enc_nonce116, enc_key116,
61648c2ecf20Sopenharmony_ci	  sizeof(enc_input116), sizeof(enc_assoc116), sizeof(enc_nonce116) },
61658c2ecf20Sopenharmony_ci	{ enc_input117, enc_output117, enc_assoc117, enc_nonce117, enc_key117,
61668c2ecf20Sopenharmony_ci	  sizeof(enc_input117), sizeof(enc_assoc117), sizeof(enc_nonce117) },
61678c2ecf20Sopenharmony_ci	{ enc_input118, enc_output118, enc_assoc118, enc_nonce118, enc_key118,
61688c2ecf20Sopenharmony_ci	  sizeof(enc_input118), sizeof(enc_assoc118), sizeof(enc_nonce118) }
61698c2ecf20Sopenharmony_ci};
61708c2ecf20Sopenharmony_ci
61718c2ecf20Sopenharmony_cistatic const u8 dec_input001[] __initconst = {
61728c2ecf20Sopenharmony_ci	0x64, 0xa0, 0x86, 0x15, 0x75, 0x86, 0x1a, 0xf4,
61738c2ecf20Sopenharmony_ci	0x60, 0xf0, 0x62, 0xc7, 0x9b, 0xe6, 0x43, 0xbd,
61748c2ecf20Sopenharmony_ci	0x5e, 0x80, 0x5c, 0xfd, 0x34, 0x5c, 0xf3, 0x89,
61758c2ecf20Sopenharmony_ci	0xf1, 0x08, 0x67, 0x0a, 0xc7, 0x6c, 0x8c, 0xb2,
61768c2ecf20Sopenharmony_ci	0x4c, 0x6c, 0xfc, 0x18, 0x75, 0x5d, 0x43, 0xee,
61778c2ecf20Sopenharmony_ci	0xa0, 0x9e, 0xe9, 0x4e, 0x38, 0x2d, 0x26, 0xb0,
61788c2ecf20Sopenharmony_ci	0xbd, 0xb7, 0xb7, 0x3c, 0x32, 0x1b, 0x01, 0x00,
61798c2ecf20Sopenharmony_ci	0xd4, 0xf0, 0x3b, 0x7f, 0x35, 0x58, 0x94, 0xcf,
61808c2ecf20Sopenharmony_ci	0x33, 0x2f, 0x83, 0x0e, 0x71, 0x0b, 0x97, 0xce,
61818c2ecf20Sopenharmony_ci	0x98, 0xc8, 0xa8, 0x4a, 0xbd, 0x0b, 0x94, 0x81,
61828c2ecf20Sopenharmony_ci	0x14, 0xad, 0x17, 0x6e, 0x00, 0x8d, 0x33, 0xbd,
61838c2ecf20Sopenharmony_ci	0x60, 0xf9, 0x82, 0xb1, 0xff, 0x37, 0xc8, 0x55,
61848c2ecf20Sopenharmony_ci	0x97, 0x97, 0xa0, 0x6e, 0xf4, 0xf0, 0xef, 0x61,
61858c2ecf20Sopenharmony_ci	0xc1, 0x86, 0x32, 0x4e, 0x2b, 0x35, 0x06, 0x38,
61868c2ecf20Sopenharmony_ci	0x36, 0x06, 0x90, 0x7b, 0x6a, 0x7c, 0x02, 0xb0,
61878c2ecf20Sopenharmony_ci	0xf9, 0xf6, 0x15, 0x7b, 0x53, 0xc8, 0x67, 0xe4,
61888c2ecf20Sopenharmony_ci	0xb9, 0x16, 0x6c, 0x76, 0x7b, 0x80, 0x4d, 0x46,
61898c2ecf20Sopenharmony_ci	0xa5, 0x9b, 0x52, 0x16, 0xcd, 0xe7, 0xa4, 0xe9,
61908c2ecf20Sopenharmony_ci	0x90, 0x40, 0xc5, 0xa4, 0x04, 0x33, 0x22, 0x5e,
61918c2ecf20Sopenharmony_ci	0xe2, 0x82, 0xa1, 0xb0, 0xa0, 0x6c, 0x52, 0x3e,
61928c2ecf20Sopenharmony_ci	0xaf, 0x45, 0x34, 0xd7, 0xf8, 0x3f, 0xa1, 0x15,
61938c2ecf20Sopenharmony_ci	0x5b, 0x00, 0x47, 0x71, 0x8c, 0xbc, 0x54, 0x6a,
61948c2ecf20Sopenharmony_ci	0x0d, 0x07, 0x2b, 0x04, 0xb3, 0x56, 0x4e, 0xea,
61958c2ecf20Sopenharmony_ci	0x1b, 0x42, 0x22, 0x73, 0xf5, 0x48, 0x27, 0x1a,
61968c2ecf20Sopenharmony_ci	0x0b, 0xb2, 0x31, 0x60, 0x53, 0xfa, 0x76, 0x99,
61978c2ecf20Sopenharmony_ci	0x19, 0x55, 0xeb, 0xd6, 0x31, 0x59, 0x43, 0x4e,
61988c2ecf20Sopenharmony_ci	0xce, 0xbb, 0x4e, 0x46, 0x6d, 0xae, 0x5a, 0x10,
61998c2ecf20Sopenharmony_ci	0x73, 0xa6, 0x72, 0x76, 0x27, 0x09, 0x7a, 0x10,
62008c2ecf20Sopenharmony_ci	0x49, 0xe6, 0x17, 0xd9, 0x1d, 0x36, 0x10, 0x94,
62018c2ecf20Sopenharmony_ci	0xfa, 0x68, 0xf0, 0xff, 0x77, 0x98, 0x71, 0x30,
62028c2ecf20Sopenharmony_ci	0x30, 0x5b, 0xea, 0xba, 0x2e, 0xda, 0x04, 0xdf,
62038c2ecf20Sopenharmony_ci	0x99, 0x7b, 0x71, 0x4d, 0x6c, 0x6f, 0x2c, 0x29,
62048c2ecf20Sopenharmony_ci	0xa6, 0xad, 0x5c, 0xb4, 0x02, 0x2b, 0x02, 0x70,
62058c2ecf20Sopenharmony_ci	0x9b, 0xee, 0xad, 0x9d, 0x67, 0x89, 0x0c, 0xbb,
62068c2ecf20Sopenharmony_ci	0x22, 0x39, 0x23, 0x36, 0xfe, 0xa1, 0x85, 0x1f,
62078c2ecf20Sopenharmony_ci	0x38
62088c2ecf20Sopenharmony_ci};
62098c2ecf20Sopenharmony_cistatic const u8 dec_output001[] __initconst = {
62108c2ecf20Sopenharmony_ci	0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74,
62118c2ecf20Sopenharmony_ci	0x2d, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x20,
62128c2ecf20Sopenharmony_ci	0x61, 0x72, 0x65, 0x20, 0x64, 0x72, 0x61, 0x66,
62138c2ecf20Sopenharmony_ci	0x74, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
62148c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x69,
62158c2ecf20Sopenharmony_ci	0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x20,
62168c2ecf20Sopenharmony_ci	0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x20,
62178c2ecf20Sopenharmony_ci	0x6f, 0x66, 0x20, 0x73, 0x69, 0x78, 0x20, 0x6d,
62188c2ecf20Sopenharmony_ci	0x6f, 0x6e, 0x74, 0x68, 0x73, 0x20, 0x61, 0x6e,
62198c2ecf20Sopenharmony_ci	0x64, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65,
62208c2ecf20Sopenharmony_ci	0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
62218c2ecf20Sopenharmony_ci	0x2c, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63,
62228c2ecf20Sopenharmony_ci	0x65, 0x64, 0x2c, 0x20, 0x6f, 0x72, 0x20, 0x6f,
62238c2ecf20Sopenharmony_ci	0x62, 0x73, 0x6f, 0x6c, 0x65, 0x74, 0x65, 0x64,
62248c2ecf20Sopenharmony_ci	0x20, 0x62, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65,
62258c2ecf20Sopenharmony_ci	0x72, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
62268c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x61, 0x74, 0x20, 0x61,
62278c2ecf20Sopenharmony_ci	0x6e, 0x79, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2e,
62288c2ecf20Sopenharmony_ci	0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x69,
62298c2ecf20Sopenharmony_ci	0x6e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x70, 0x72,
62308c2ecf20Sopenharmony_ci	0x69, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20,
62318c2ecf20Sopenharmony_ci	0x75, 0x73, 0x65, 0x20, 0x49, 0x6e, 0x74, 0x65,
62328c2ecf20Sopenharmony_ci	0x72, 0x6e, 0x65, 0x74, 0x2d, 0x44, 0x72, 0x61,
62338c2ecf20Sopenharmony_ci	0x66, 0x74, 0x73, 0x20, 0x61, 0x73, 0x20, 0x72,
62348c2ecf20Sopenharmony_ci	0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
62358c2ecf20Sopenharmony_ci	0x20, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
62368c2ecf20Sopenharmony_ci	0x6c, 0x20, 0x6f, 0x72, 0x20, 0x74, 0x6f, 0x20,
62378c2ecf20Sopenharmony_ci	0x63, 0x69, 0x74, 0x65, 0x20, 0x74, 0x68, 0x65,
62388c2ecf20Sopenharmony_ci	0x6d, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20,
62398c2ecf20Sopenharmony_ci	0x74, 0x68, 0x61, 0x6e, 0x20, 0x61, 0x73, 0x20,
62408c2ecf20Sopenharmony_ci	0x2f, 0xe2, 0x80, 0x9c, 0x77, 0x6f, 0x72, 0x6b,
62418c2ecf20Sopenharmony_ci	0x20, 0x69, 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x67,
62428c2ecf20Sopenharmony_ci	0x72, 0x65, 0x73, 0x73, 0x2e, 0x2f, 0xe2, 0x80,
62438c2ecf20Sopenharmony_ci	0x9d
62448c2ecf20Sopenharmony_ci};
62458c2ecf20Sopenharmony_cistatic const u8 dec_assoc001[] __initconst = {
62468c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x00, 0x00, 0x00, 0x00,
62478c2ecf20Sopenharmony_ci	0x00, 0x00, 0x4e, 0x91
62488c2ecf20Sopenharmony_ci};
62498c2ecf20Sopenharmony_cistatic const u8 dec_nonce001[] __initconst = {
62508c2ecf20Sopenharmony_ci	0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08
62518c2ecf20Sopenharmony_ci};
62528c2ecf20Sopenharmony_cistatic const u8 dec_key001[] __initconst = {
62538c2ecf20Sopenharmony_ci	0x1c, 0x92, 0x40, 0xa5, 0xeb, 0x55, 0xd3, 0x8a,
62548c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x04, 0xf6, 0xb5, 0xf0,
62558c2ecf20Sopenharmony_ci	0x47, 0x39, 0x17, 0xc1, 0x40, 0x2b, 0x80, 0x09,
62568c2ecf20Sopenharmony_ci	0x9d, 0xca, 0x5c, 0xbc, 0x20, 0x70, 0x75, 0xc0
62578c2ecf20Sopenharmony_ci};
62588c2ecf20Sopenharmony_ci
62598c2ecf20Sopenharmony_cistatic const u8 dec_input002[] __initconst = {
62608c2ecf20Sopenharmony_ci	0xea, 0xe0, 0x1e, 0x9e, 0x2c, 0x91, 0xaa, 0xe1,
62618c2ecf20Sopenharmony_ci	0xdb, 0x5d, 0x99, 0x3f, 0x8a, 0xf7, 0x69, 0x92
62628c2ecf20Sopenharmony_ci};
62638c2ecf20Sopenharmony_cistatic const u8 dec_output002[] __initconst = { };
62648c2ecf20Sopenharmony_cistatic const u8 dec_assoc002[] __initconst = { };
62658c2ecf20Sopenharmony_cistatic const u8 dec_nonce002[] __initconst = {
62668c2ecf20Sopenharmony_ci	0xca, 0xbf, 0x33, 0x71, 0x32, 0x45, 0x77, 0x8e
62678c2ecf20Sopenharmony_ci};
62688c2ecf20Sopenharmony_cistatic const u8 dec_key002[] __initconst = {
62698c2ecf20Sopenharmony_ci	0x4c, 0xf5, 0x96, 0x83, 0x38, 0xe6, 0xae, 0x7f,
62708c2ecf20Sopenharmony_ci	0x2d, 0x29, 0x25, 0x76, 0xd5, 0x75, 0x27, 0x86,
62718c2ecf20Sopenharmony_ci	0x91, 0x9a, 0x27, 0x7a, 0xfb, 0x46, 0xc5, 0xef,
62728c2ecf20Sopenharmony_ci	0x94, 0x81, 0x79, 0x57, 0x14, 0x59, 0x40, 0x68
62738c2ecf20Sopenharmony_ci};
62748c2ecf20Sopenharmony_ci
62758c2ecf20Sopenharmony_cistatic const u8 dec_input003[] __initconst = {
62768c2ecf20Sopenharmony_ci	0xdd, 0x6b, 0x3b, 0x82, 0xce, 0x5a, 0xbd, 0xd6,
62778c2ecf20Sopenharmony_ci	0xa9, 0x35, 0x83, 0xd8, 0x8c, 0x3d, 0x85, 0x77
62788c2ecf20Sopenharmony_ci};
62798c2ecf20Sopenharmony_cistatic const u8 dec_output003[] __initconst = { };
62808c2ecf20Sopenharmony_cistatic const u8 dec_assoc003[] __initconst = {
62818c2ecf20Sopenharmony_ci	0x33, 0x10, 0x41, 0x12, 0x1f, 0xf3, 0xd2, 0x6b
62828c2ecf20Sopenharmony_ci};
62838c2ecf20Sopenharmony_cistatic const u8 dec_nonce003[] __initconst = {
62848c2ecf20Sopenharmony_ci	0x3d, 0x86, 0xb5, 0x6b, 0xc8, 0xa3, 0x1f, 0x1d
62858c2ecf20Sopenharmony_ci};
62868c2ecf20Sopenharmony_cistatic const u8 dec_key003[] __initconst = {
62878c2ecf20Sopenharmony_ci	0x2d, 0xb0, 0x5d, 0x40, 0xc8, 0xed, 0x44, 0x88,
62888c2ecf20Sopenharmony_ci	0x34, 0xd1, 0x13, 0xaf, 0x57, 0xa1, 0xeb, 0x3a,
62898c2ecf20Sopenharmony_ci	0x2a, 0x80, 0x51, 0x36, 0xec, 0x5b, 0xbc, 0x08,
62908c2ecf20Sopenharmony_ci	0x93, 0x84, 0x21, 0xb5, 0x13, 0x88, 0x3c, 0x0d
62918c2ecf20Sopenharmony_ci};
62928c2ecf20Sopenharmony_ci
62938c2ecf20Sopenharmony_cistatic const u8 dec_input004[] __initconst = {
62948c2ecf20Sopenharmony_ci	0xb7, 0x1b, 0xb0, 0x73, 0x59, 0xb0, 0x84, 0xb2,
62958c2ecf20Sopenharmony_ci	0x6d, 0x8e, 0xab, 0x94, 0x31, 0xa1, 0xae, 0xac,
62968c2ecf20Sopenharmony_ci	0x89
62978c2ecf20Sopenharmony_ci};
62988c2ecf20Sopenharmony_cistatic const u8 dec_output004[] __initconst = {
62998c2ecf20Sopenharmony_ci	0xa4
63008c2ecf20Sopenharmony_ci};
63018c2ecf20Sopenharmony_cistatic const u8 dec_assoc004[] __initconst = {
63028c2ecf20Sopenharmony_ci	0x6a, 0xe2, 0xad, 0x3f, 0x88, 0x39, 0x5a, 0x40
63038c2ecf20Sopenharmony_ci};
63048c2ecf20Sopenharmony_cistatic const u8 dec_nonce004[] __initconst = {
63058c2ecf20Sopenharmony_ci	0xd2, 0x32, 0x1f, 0x29, 0x28, 0xc6, 0xc4, 0xc4
63068c2ecf20Sopenharmony_ci};
63078c2ecf20Sopenharmony_cistatic const u8 dec_key004[] __initconst = {
63088c2ecf20Sopenharmony_ci	0x4b, 0x28, 0x4b, 0xa3, 0x7b, 0xbe, 0xe9, 0xf8,
63098c2ecf20Sopenharmony_ci	0x31, 0x80, 0x82, 0xd7, 0xd8, 0xe8, 0xb5, 0xa1,
63108c2ecf20Sopenharmony_ci	0xe2, 0x18, 0x18, 0x8a, 0x9c, 0xfa, 0xa3, 0x3d,
63118c2ecf20Sopenharmony_ci	0x25, 0x71, 0x3e, 0x40, 0xbc, 0x54, 0x7a, 0x3e
63128c2ecf20Sopenharmony_ci};
63138c2ecf20Sopenharmony_ci
63148c2ecf20Sopenharmony_cistatic const u8 dec_input005[] __initconst = {
63158c2ecf20Sopenharmony_ci	0xbf, 0xe1, 0x5b, 0x0b, 0xdb, 0x6b, 0xf5, 0x5e,
63168c2ecf20Sopenharmony_ci	0x6c, 0x5d, 0x84, 0x44, 0x39, 0x81, 0xc1, 0x9c,
63178c2ecf20Sopenharmony_ci	0xac
63188c2ecf20Sopenharmony_ci};
63198c2ecf20Sopenharmony_cistatic const u8 dec_output005[] __initconst = {
63208c2ecf20Sopenharmony_ci	0x2d
63218c2ecf20Sopenharmony_ci};
63228c2ecf20Sopenharmony_cistatic const u8 dec_assoc005[] __initconst = { };
63238c2ecf20Sopenharmony_cistatic const u8 dec_nonce005[] __initconst = {
63248c2ecf20Sopenharmony_ci	0x20, 0x1c, 0xaa, 0x5f, 0x9c, 0xbf, 0x92, 0x30
63258c2ecf20Sopenharmony_ci};
63268c2ecf20Sopenharmony_cistatic const u8 dec_key005[] __initconst = {
63278c2ecf20Sopenharmony_ci	0x66, 0xca, 0x9c, 0x23, 0x2a, 0x4b, 0x4b, 0x31,
63288c2ecf20Sopenharmony_ci	0x0e, 0x92, 0x89, 0x8b, 0xf4, 0x93, 0xc7, 0x87,
63298c2ecf20Sopenharmony_ci	0x98, 0xa3, 0xd8, 0x39, 0xf8, 0xf4, 0xa7, 0x01,
63308c2ecf20Sopenharmony_ci	0xc0, 0x2e, 0x0a, 0xa6, 0x7e, 0x5a, 0x78, 0x87
63318c2ecf20Sopenharmony_ci};
63328c2ecf20Sopenharmony_ci
63338c2ecf20Sopenharmony_cistatic const u8 dec_input006[] __initconst = {
63348c2ecf20Sopenharmony_ci	0x8b, 0x06, 0xd3, 0x31, 0xb0, 0x93, 0x45, 0xb1,
63358c2ecf20Sopenharmony_ci	0x75, 0x6e, 0x26, 0xf9, 0x67, 0xbc, 0x90, 0x15,
63368c2ecf20Sopenharmony_ci	0x81, 0x2c, 0xb5, 0xf0, 0xc6, 0x2b, 0xc7, 0x8c,
63378c2ecf20Sopenharmony_ci	0x56, 0xd1, 0xbf, 0x69, 0x6c, 0x07, 0xa0, 0xda,
63388c2ecf20Sopenharmony_ci	0x65, 0x27, 0xc9, 0x90, 0x3d, 0xef, 0x4b, 0x11,
63398c2ecf20Sopenharmony_ci	0x0f, 0x19, 0x07, 0xfd, 0x29, 0x92, 0xd9, 0xc8,
63408c2ecf20Sopenharmony_ci	0xf7, 0x99, 0x2e, 0x4a, 0xd0, 0xb8, 0x2c, 0xdc,
63418c2ecf20Sopenharmony_ci	0x93, 0xf5, 0x9e, 0x33, 0x78, 0xd1, 0x37, 0xc3,
63428c2ecf20Sopenharmony_ci	0x66, 0xd7, 0x5e, 0xbc, 0x44, 0xbf, 0x53, 0xa5,
63438c2ecf20Sopenharmony_ci	0xbc, 0xc4, 0xcb, 0x7b, 0x3a, 0x8e, 0x7f, 0x02,
63448c2ecf20Sopenharmony_ci	0xbd, 0xbb, 0xe7, 0xca, 0xa6, 0x6c, 0x6b, 0x93,
63458c2ecf20Sopenharmony_ci	0x21, 0x93, 0x10, 0x61, 0xe7, 0x69, 0xd0, 0x78,
63468c2ecf20Sopenharmony_ci	0xf3, 0x07, 0x5a, 0x1a, 0x8f, 0x73, 0xaa, 0xb1,
63478c2ecf20Sopenharmony_ci	0x4e, 0xd3, 0xda, 0x4f, 0xf3, 0x32, 0xe1, 0x66,
63488c2ecf20Sopenharmony_ci	0x3e, 0x6c, 0xc6, 0x13, 0xba, 0x06, 0x5b, 0xfc,
63498c2ecf20Sopenharmony_ci	0x6a, 0xe5, 0x6f, 0x60, 0xfb, 0x07, 0x40, 0xb0,
63508c2ecf20Sopenharmony_ci	0x8c, 0x9d, 0x84, 0x43, 0x6b, 0xc1, 0xf7, 0x8d,
63518c2ecf20Sopenharmony_ci	0x8d, 0x31, 0xf7, 0x7a, 0x39, 0x4d, 0x8f, 0x9a,
63528c2ecf20Sopenharmony_ci	0xeb
63538c2ecf20Sopenharmony_ci};
63548c2ecf20Sopenharmony_cistatic const u8 dec_output006[] __initconst = {
63558c2ecf20Sopenharmony_ci	0x33, 0x2f, 0x94, 0xc1, 0xa4, 0xef, 0xcc, 0x2a,
63568c2ecf20Sopenharmony_ci	0x5b, 0xa6, 0xe5, 0x8f, 0x1d, 0x40, 0xf0, 0x92,
63578c2ecf20Sopenharmony_ci	0x3c, 0xd9, 0x24, 0x11, 0xa9, 0x71, 0xf9, 0x37,
63588c2ecf20Sopenharmony_ci	0x14, 0x99, 0xfa, 0xbe, 0xe6, 0x80, 0xde, 0x50,
63598c2ecf20Sopenharmony_ci	0xc9, 0x96, 0xd4, 0xb0, 0xec, 0x9e, 0x17, 0xec,
63608c2ecf20Sopenharmony_ci	0xd2, 0x5e, 0x72, 0x99, 0xfc, 0x0a, 0xe1, 0xcb,
63618c2ecf20Sopenharmony_ci	0x48, 0xd2, 0x85, 0xdd, 0x2f, 0x90, 0xe0, 0x66,
63628c2ecf20Sopenharmony_ci	0x3b, 0xe6, 0x20, 0x74, 0xbe, 0x23, 0x8f, 0xcb,
63638c2ecf20Sopenharmony_ci	0xb4, 0xe4, 0xda, 0x48, 0x40, 0xa6, 0xd1, 0x1b,
63648c2ecf20Sopenharmony_ci	0xc7, 0x42, 0xce, 0x2f, 0x0c, 0xa6, 0x85, 0x6e,
63658c2ecf20Sopenharmony_ci	0x87, 0x37, 0x03, 0xb1, 0x7c, 0x25, 0x96, 0xa3,
63668c2ecf20Sopenharmony_ci	0x05, 0xd8, 0xb0, 0xf4, 0xed, 0xea, 0xc2, 0xf0,
63678c2ecf20Sopenharmony_ci	0x31, 0x98, 0x6c, 0xd1, 0x14, 0x25, 0xc0, 0xcb,
63688c2ecf20Sopenharmony_ci	0x01, 0x74, 0xd0, 0x82, 0xf4, 0x36, 0xf5, 0x41,
63698c2ecf20Sopenharmony_ci	0xd5, 0xdc, 0xca, 0xc5, 0xbb, 0x98, 0xfe, 0xfc,
63708c2ecf20Sopenharmony_ci	0x69, 0x21, 0x70, 0xd8, 0xa4, 0x4b, 0xc8, 0xde,
63718c2ecf20Sopenharmony_ci	0x8f
63728c2ecf20Sopenharmony_ci};
63738c2ecf20Sopenharmony_cistatic const u8 dec_assoc006[] __initconst = {
63748c2ecf20Sopenharmony_ci	0x70, 0xd3, 0x33, 0xf3, 0x8b, 0x18, 0x0b
63758c2ecf20Sopenharmony_ci};
63768c2ecf20Sopenharmony_cistatic const u8 dec_nonce006[] __initconst = {
63778c2ecf20Sopenharmony_ci	0xdf, 0x51, 0x84, 0x82, 0x42, 0x0c, 0x75, 0x9c
63788c2ecf20Sopenharmony_ci};
63798c2ecf20Sopenharmony_cistatic const u8 dec_key006[] __initconst = {
63808c2ecf20Sopenharmony_ci	0x68, 0x7b, 0x8d, 0x8e, 0xe3, 0xc4, 0xdd, 0xae,
63818c2ecf20Sopenharmony_ci	0xdf, 0x72, 0x7f, 0x53, 0x72, 0x25, 0x1e, 0x78,
63828c2ecf20Sopenharmony_ci	0x91, 0xcb, 0x69, 0x76, 0x1f, 0x49, 0x93, 0xf9,
63838c2ecf20Sopenharmony_ci	0x6f, 0x21, 0xcc, 0x39, 0x9c, 0xad, 0xb1, 0x01
63848c2ecf20Sopenharmony_ci};
63858c2ecf20Sopenharmony_ci
63868c2ecf20Sopenharmony_cistatic const u8 dec_input007[] __initconst = {
63878c2ecf20Sopenharmony_ci	0x85, 0x04, 0xc2, 0xed, 0x8d, 0xfd, 0x97, 0x5c,
63888c2ecf20Sopenharmony_ci	0xd2, 0xb7, 0xe2, 0xc1, 0x6b, 0xa3, 0xba, 0xf8,
63898c2ecf20Sopenharmony_ci	0xc9, 0x50, 0xc3, 0xc6, 0xa5, 0xe3, 0xa4, 0x7c,
63908c2ecf20Sopenharmony_ci	0xc3, 0x23, 0x49, 0x5e, 0xa9, 0xb9, 0x32, 0xeb,
63918c2ecf20Sopenharmony_ci	0x8a, 0x7c, 0xca, 0xe5, 0xec, 0xfb, 0x7c, 0xc0,
63928c2ecf20Sopenharmony_ci	0xcb, 0x7d, 0xdc, 0x2c, 0x9d, 0x92, 0x55, 0x21,
63938c2ecf20Sopenharmony_ci	0x0a, 0xc8, 0x43, 0x63, 0x59, 0x0a, 0x31, 0x70,
63948c2ecf20Sopenharmony_ci	0x82, 0x67, 0x41, 0x03, 0xf8, 0xdf, 0xf2, 0xac,
63958c2ecf20Sopenharmony_ci	0xa7, 0x02, 0xd4, 0xd5, 0x8a, 0x2d, 0xc8, 0x99,
63968c2ecf20Sopenharmony_ci	0x19, 0x66, 0xd0, 0xf6, 0x88, 0x2c, 0x77, 0xd9,
63978c2ecf20Sopenharmony_ci	0xd4, 0x0d, 0x6c, 0xbd, 0x98, 0xde, 0xe7, 0x7f,
63988c2ecf20Sopenharmony_ci	0xad, 0x7e, 0x8a, 0xfb, 0xe9, 0x4b, 0xe5, 0xf7,
63998c2ecf20Sopenharmony_ci	0xe5, 0x50, 0xa0, 0x90, 0x3f, 0xd6, 0x22, 0x53,
64008c2ecf20Sopenharmony_ci	0xe3, 0xfe, 0x1b, 0xcc, 0x79, 0x3b, 0xec, 0x12,
64018c2ecf20Sopenharmony_ci	0x47, 0x52, 0xa7, 0xd6, 0x04, 0xe3, 0x52, 0xe6,
64028c2ecf20Sopenharmony_ci	0x93, 0x90, 0x91, 0x32, 0x73, 0x79, 0xb8, 0xd0,
64038c2ecf20Sopenharmony_ci	0x31, 0xde, 0x1f, 0x9f, 0x2f, 0x05, 0x38, 0x54,
64048c2ecf20Sopenharmony_ci	0x2f, 0x35, 0x04, 0x39, 0xe0, 0xa7, 0xba, 0xc6,
64058c2ecf20Sopenharmony_ci	0x52, 0xf6, 0x37, 0x65, 0x4c, 0x07, 0xa9, 0x7e,
64068c2ecf20Sopenharmony_ci	0xb3, 0x21, 0x6f, 0x74, 0x8c, 0xc9, 0xde, 0xdb,
64078c2ecf20Sopenharmony_ci	0x65, 0x1b, 0x9b, 0xaa, 0x60, 0xb1, 0x03, 0x30,
64088c2ecf20Sopenharmony_ci	0x6b, 0xb2, 0x03, 0xc4, 0x1c, 0x04, 0xf8, 0x0f,
64098c2ecf20Sopenharmony_ci	0x64, 0xaf, 0x46, 0xe4, 0x65, 0x99, 0x49, 0xe2,
64108c2ecf20Sopenharmony_ci	0xea, 0xce, 0x78, 0x00, 0xd8, 0x8b, 0xd5, 0x2e,
64118c2ecf20Sopenharmony_ci	0xcf, 0xfc, 0x40, 0x49, 0xe8, 0x58, 0xdc, 0x34,
64128c2ecf20Sopenharmony_ci	0x9c, 0x8c, 0x61, 0xbf, 0x0a, 0x8e, 0xec, 0x39,
64138c2ecf20Sopenharmony_ci	0xa9, 0x30, 0x05, 0x5a, 0xd2, 0x56, 0x01, 0xc7,
64148c2ecf20Sopenharmony_ci	0xda, 0x8f, 0x4e, 0xbb, 0x43, 0xa3, 0x3a, 0xf9,
64158c2ecf20Sopenharmony_ci	0x15, 0x2a, 0xd0, 0xa0, 0x7a, 0x87, 0x34, 0x82,
64168c2ecf20Sopenharmony_ci	0xfe, 0x8a, 0xd1, 0x2d, 0x5e, 0xc7, 0xbf, 0x04,
64178c2ecf20Sopenharmony_ci	0x53, 0x5f, 0x3b, 0x36, 0xd4, 0x25, 0x5c, 0x34,
64188c2ecf20Sopenharmony_ci	0x7a, 0x8d, 0xd5, 0x05, 0xce, 0x72, 0xca, 0xef,
64198c2ecf20Sopenharmony_ci	0x7a, 0x4b, 0xbc, 0xb0, 0x10, 0x5c, 0x96, 0x42,
64208c2ecf20Sopenharmony_ci	0x3a, 0x00, 0x98, 0xcd, 0x15, 0xe8, 0xb7, 0x53
64218c2ecf20Sopenharmony_ci};
64228c2ecf20Sopenharmony_cistatic const u8 dec_output007[] __initconst = {
64238c2ecf20Sopenharmony_ci	0x9b, 0x18, 0xdb, 0xdd, 0x9a, 0x0f, 0x3e, 0xa5,
64248c2ecf20Sopenharmony_ci	0x15, 0x17, 0xde, 0xdf, 0x08, 0x9d, 0x65, 0x0a,
64258c2ecf20Sopenharmony_ci	0x67, 0x30, 0x12, 0xe2, 0x34, 0x77, 0x4b, 0xc1,
64268c2ecf20Sopenharmony_ci	0xd9, 0xc6, 0x1f, 0xab, 0xc6, 0x18, 0x50, 0x17,
64278c2ecf20Sopenharmony_ci	0xa7, 0x9d, 0x3c, 0xa6, 0xc5, 0x35, 0x8c, 0x1c,
64288c2ecf20Sopenharmony_ci	0xc0, 0xa1, 0x7c, 0x9f, 0x03, 0x89, 0xca, 0xe1,
64298c2ecf20Sopenharmony_ci	0xe6, 0xe9, 0xd4, 0xd3, 0x88, 0xdb, 0xb4, 0x51,
64308c2ecf20Sopenharmony_ci	0x9d, 0xec, 0xb4, 0xfc, 0x52, 0xee, 0x6d, 0xf1,
64318c2ecf20Sopenharmony_ci	0x75, 0x42, 0xc6, 0xfd, 0xbd, 0x7a, 0x8e, 0x86,
64328c2ecf20Sopenharmony_ci	0xfc, 0x44, 0xb3, 0x4f, 0xf3, 0xea, 0x67, 0x5a,
64338c2ecf20Sopenharmony_ci	0x41, 0x13, 0xba, 0xb0, 0xdc, 0xe1, 0xd3, 0x2a,
64348c2ecf20Sopenharmony_ci	0x7c, 0x22, 0xb3, 0xca, 0xac, 0x6a, 0x37, 0x98,
64358c2ecf20Sopenharmony_ci	0x3e, 0x1d, 0x40, 0x97, 0xf7, 0x9b, 0x1d, 0x36,
64368c2ecf20Sopenharmony_ci	0x6b, 0xb3, 0x28, 0xbd, 0x60, 0x82, 0x47, 0x34,
64378c2ecf20Sopenharmony_ci	0xaa, 0x2f, 0x7d, 0xe9, 0xa8, 0x70, 0x81, 0x57,
64388c2ecf20Sopenharmony_ci	0xd4, 0xb9, 0x77, 0x0a, 0x9d, 0x29, 0xa7, 0x84,
64398c2ecf20Sopenharmony_ci	0x52, 0x4f, 0xc2, 0x4a, 0x40, 0x3b, 0x3c, 0xd4,
64408c2ecf20Sopenharmony_ci	0xc9, 0x2a, 0xdb, 0x4a, 0x53, 0xc4, 0xbe, 0x80,
64418c2ecf20Sopenharmony_ci	0xe9, 0x51, 0x7f, 0x8f, 0xc7, 0xa2, 0xce, 0x82,
64428c2ecf20Sopenharmony_ci	0x5c, 0x91, 0x1e, 0x74, 0xd9, 0xd0, 0xbd, 0xd5,
64438c2ecf20Sopenharmony_ci	0xf3, 0xfd, 0xda, 0x4d, 0x25, 0xb4, 0xbb, 0x2d,
64448c2ecf20Sopenharmony_ci	0xac, 0x2f, 0x3d, 0x71, 0x85, 0x7b, 0xcf, 0x3c,
64458c2ecf20Sopenharmony_ci	0x7b, 0x3e, 0x0e, 0x22, 0x78, 0x0c, 0x29, 0xbf,
64468c2ecf20Sopenharmony_ci	0xe4, 0xf4, 0x57, 0xb3, 0xcb, 0x49, 0xa0, 0xfc,
64478c2ecf20Sopenharmony_ci	0x1e, 0x05, 0x4e, 0x16, 0xbc, 0xd5, 0xa8, 0xa3,
64488c2ecf20Sopenharmony_ci	0xee, 0x05, 0x35, 0xc6, 0x7c, 0xab, 0x60, 0x14,
64498c2ecf20Sopenharmony_ci	0x55, 0x1a, 0x8e, 0xc5, 0x88, 0x5d, 0xd5, 0x81,
64508c2ecf20Sopenharmony_ci	0xc2, 0x81, 0xa5, 0xc4, 0x60, 0xdb, 0xaf, 0x77,
64518c2ecf20Sopenharmony_ci	0x91, 0xe1, 0xce, 0xa2, 0x7e, 0x7f, 0x42, 0xe3,
64528c2ecf20Sopenharmony_ci	0xb0, 0x13, 0x1c, 0x1f, 0x25, 0x60, 0x21, 0xe2,
64538c2ecf20Sopenharmony_ci	0x40, 0x5f, 0x99, 0xb7, 0x73, 0xec, 0x9b, 0x2b,
64548c2ecf20Sopenharmony_ci	0xf0, 0x65, 0x11, 0xc8, 0xd0, 0x0a, 0x9f, 0xd3
64558c2ecf20Sopenharmony_ci};
64568c2ecf20Sopenharmony_cistatic const u8 dec_assoc007[] __initconst = { };
64578c2ecf20Sopenharmony_cistatic const u8 dec_nonce007[] __initconst = {
64588c2ecf20Sopenharmony_ci	0xde, 0x7b, 0xef, 0xc3, 0x65, 0x1b, 0x68, 0xb0
64598c2ecf20Sopenharmony_ci};
64608c2ecf20Sopenharmony_cistatic const u8 dec_key007[] __initconst = {
64618c2ecf20Sopenharmony_ci	0x8d, 0xb8, 0x91, 0x48, 0xf0, 0xe7, 0x0a, 0xbd,
64628c2ecf20Sopenharmony_ci	0xf9, 0x3f, 0xcd, 0xd9, 0xa0, 0x1e, 0x42, 0x4c,
64638c2ecf20Sopenharmony_ci	0xe7, 0xde, 0x25, 0x3d, 0xa3, 0xd7, 0x05, 0x80,
64648c2ecf20Sopenharmony_ci	0x8d, 0xf2, 0x82, 0xac, 0x44, 0x16, 0x51, 0x01
64658c2ecf20Sopenharmony_ci};
64668c2ecf20Sopenharmony_ci
64678c2ecf20Sopenharmony_cistatic const u8 dec_input008[] __initconst = {
64688c2ecf20Sopenharmony_ci	0x14, 0xf6, 0x41, 0x37, 0xa6, 0xd4, 0x27, 0xcd,
64698c2ecf20Sopenharmony_ci	0xdb, 0x06, 0x3e, 0x9a, 0x4e, 0xab, 0xd5, 0xb1,
64708c2ecf20Sopenharmony_ci	0x1e, 0x6b, 0xd2, 0xbc, 0x11, 0xf4, 0x28, 0x93,
64718c2ecf20Sopenharmony_ci	0x63, 0x54, 0xef, 0xbb, 0x5e, 0x1d, 0x3a, 0x1d,
64728c2ecf20Sopenharmony_ci	0x37, 0x3c, 0x0a, 0x6c, 0x1e, 0xc2, 0xd1, 0x2c,
64738c2ecf20Sopenharmony_ci	0xb5, 0xa3, 0xb5, 0x7b, 0xb8, 0x8f, 0x25, 0xa6,
64748c2ecf20Sopenharmony_ci	0x1b, 0x61, 0x1c, 0xec, 0x28, 0x58, 0x26, 0xa4,
64758c2ecf20Sopenharmony_ci	0xa8, 0x33, 0x28, 0x25, 0x5c, 0x45, 0x05, 0xe5,
64768c2ecf20Sopenharmony_ci	0x6c, 0x99, 0xe5, 0x45, 0xc4, 0xa2, 0x03, 0x84,
64778c2ecf20Sopenharmony_ci	0x03, 0x73, 0x1e, 0x8c, 0x49, 0xac, 0x20, 0xdd,
64788c2ecf20Sopenharmony_ci	0x8d, 0xb3, 0xc4, 0xf5, 0xe7, 0x4f, 0xf1, 0xed,
64798c2ecf20Sopenharmony_ci	0xa1, 0x98, 0xde, 0xa4, 0x96, 0xdd, 0x2f, 0xab,
64808c2ecf20Sopenharmony_ci	0xab, 0x97, 0xcf, 0x3e, 0xd2, 0x9e, 0xb8, 0x13,
64818c2ecf20Sopenharmony_ci	0x07, 0x28, 0x29, 0x19, 0xaf, 0xfd, 0xf2, 0x49,
64828c2ecf20Sopenharmony_ci	0x43, 0xea, 0x49, 0x26, 0x91, 0xc1, 0x07, 0xd6,
64838c2ecf20Sopenharmony_ci	0xbb, 0x81, 0x75, 0x35, 0x0d, 0x24, 0x7f, 0xc8,
64848c2ecf20Sopenharmony_ci	0xda, 0xd4, 0xb7, 0xeb, 0xe8, 0x5c, 0x09, 0xa2,
64858c2ecf20Sopenharmony_ci	0x2f, 0xdc, 0x28, 0x7d, 0x3a, 0x03, 0xfa, 0x94,
64868c2ecf20Sopenharmony_ci	0xb5, 0x1d, 0x17, 0x99, 0x36, 0xc3, 0x1c, 0x18,
64878c2ecf20Sopenharmony_ci	0x34, 0xe3, 0x9f, 0xf5, 0x55, 0x7c, 0xb0, 0x60,
64888c2ecf20Sopenharmony_ci	0x9d, 0xff, 0xac, 0xd4, 0x61, 0xf2, 0xad, 0xf8,
64898c2ecf20Sopenharmony_ci	0xce, 0xc7, 0xbe, 0x5c, 0xd2, 0x95, 0xa8, 0x4b,
64908c2ecf20Sopenharmony_ci	0x77, 0x13, 0x19, 0x59, 0x26, 0xc9, 0xb7, 0x8f,
64918c2ecf20Sopenharmony_ci	0x6a, 0xcb, 0x2d, 0x37, 0x91, 0xea, 0x92, 0x9c,
64928c2ecf20Sopenharmony_ci	0x94, 0x5b, 0xda, 0x0b, 0xce, 0xfe, 0x30, 0x20,
64938c2ecf20Sopenharmony_ci	0xf8, 0x51, 0xad, 0xf2, 0xbe, 0xe7, 0xc7, 0xff,
64948c2ecf20Sopenharmony_ci	0xb3, 0x33, 0x91, 0x6a, 0xc9, 0x1a, 0x41, 0xc9,
64958c2ecf20Sopenharmony_ci	0x0f, 0xf3, 0x10, 0x0e, 0xfd, 0x53, 0xff, 0x6c,
64968c2ecf20Sopenharmony_ci	0x16, 0x52, 0xd9, 0xf3, 0xf7, 0x98, 0x2e, 0xc9,
64978c2ecf20Sopenharmony_ci	0x07, 0x31, 0x2c, 0x0c, 0x72, 0xd7, 0xc5, 0xc6,
64988c2ecf20Sopenharmony_ci	0x08, 0x2a, 0x7b, 0xda, 0xbd, 0x7e, 0x02, 0xea,
64998c2ecf20Sopenharmony_ci	0x1a, 0xbb, 0xf2, 0x04, 0x27, 0x61, 0x28, 0x8e,
65008c2ecf20Sopenharmony_ci	0xf5, 0x04, 0x03, 0x1f, 0x4c, 0x07, 0x55, 0x82,
65018c2ecf20Sopenharmony_ci	0xec, 0x1e, 0xd7, 0x8b, 0x2f, 0x65, 0x56, 0xd1,
65028c2ecf20Sopenharmony_ci	0xd9, 0x1e, 0x3c, 0xe9, 0x1f, 0x5e, 0x98, 0x70,
65038c2ecf20Sopenharmony_ci	0x38, 0x4a, 0x8c, 0x49, 0xc5, 0x43, 0xa0, 0xa1,
65048c2ecf20Sopenharmony_ci	0x8b, 0x74, 0x9d, 0x4c, 0x62, 0x0d, 0x10, 0x0c,
65058c2ecf20Sopenharmony_ci	0xf4, 0x6c, 0x8f, 0xe0, 0xaa, 0x9a, 0x8d, 0xb7,
65068c2ecf20Sopenharmony_ci	0xe0, 0xbe, 0x4c, 0x87, 0xf1, 0x98, 0x2f, 0xcc,
65078c2ecf20Sopenharmony_ci	0xed, 0xc0, 0x52, 0x29, 0xdc, 0x83, 0xf8, 0xfc,
65088c2ecf20Sopenharmony_ci	0x2c, 0x0e, 0xa8, 0x51, 0x4d, 0x80, 0x0d, 0xa3,
65098c2ecf20Sopenharmony_ci	0xfe, 0xd8, 0x37, 0xe7, 0x41, 0x24, 0xfc, 0xfb,
65108c2ecf20Sopenharmony_ci	0x75, 0xe3, 0x71, 0x7b, 0x57, 0x45, 0xf5, 0x97,
65118c2ecf20Sopenharmony_ci	0x73, 0x65, 0x63, 0x14, 0x74, 0xb8, 0x82, 0x9f,
65128c2ecf20Sopenharmony_ci	0xf8, 0x60, 0x2f, 0x8a, 0xf2, 0x4e, 0xf1, 0x39,
65138c2ecf20Sopenharmony_ci	0xda, 0x33, 0x91, 0xf8, 0x36, 0xe0, 0x8d, 0x3f,
65148c2ecf20Sopenharmony_ci	0x1f, 0x3b, 0x56, 0xdc, 0xa0, 0x8f, 0x3c, 0x9d,
65158c2ecf20Sopenharmony_ci	0x71, 0x52, 0xa7, 0xb8, 0xc0, 0xa5, 0xc6, 0xa2,
65168c2ecf20Sopenharmony_ci	0x73, 0xda, 0xf4, 0x4b, 0x74, 0x5b, 0x00, 0x3d,
65178c2ecf20Sopenharmony_ci	0x99, 0xd7, 0x96, 0xba, 0xe6, 0xe1, 0xa6, 0x96,
65188c2ecf20Sopenharmony_ci	0x38, 0xad, 0xb3, 0xc0, 0xd2, 0xba, 0x91, 0x6b,
65198c2ecf20Sopenharmony_ci	0xf9, 0x19, 0xdd, 0x3b, 0xbe, 0xbe, 0x9c, 0x20,
65208c2ecf20Sopenharmony_ci	0x50, 0xba, 0xa1, 0xd0, 0xce, 0x11, 0xbd, 0x95,
65218c2ecf20Sopenharmony_ci	0xd8, 0xd1, 0xdd, 0x33, 0x85, 0x74, 0xdc, 0xdb,
65228c2ecf20Sopenharmony_ci	0x66, 0x76, 0x44, 0xdc, 0x03, 0x74, 0x48, 0x35,
65238c2ecf20Sopenharmony_ci	0x98, 0xb1, 0x18, 0x47, 0x94, 0x7d, 0xff, 0x62,
65248c2ecf20Sopenharmony_ci	0xe4, 0x58, 0x78, 0xab, 0xed, 0x95, 0x36, 0xd9,
65258c2ecf20Sopenharmony_ci	0x84, 0x91, 0x82, 0x64, 0x41, 0xbb, 0x58, 0xe6,
65268c2ecf20Sopenharmony_ci	0x1c, 0x20, 0x6d, 0x15, 0x6b, 0x13, 0x96, 0xe8,
65278c2ecf20Sopenharmony_ci	0x35, 0x7f, 0xdc, 0x40, 0x2c, 0xe9, 0xbc, 0x8a,
65288c2ecf20Sopenharmony_ci	0x4f, 0x92, 0xec, 0x06, 0x2d, 0x50, 0xdf, 0x93,
65298c2ecf20Sopenharmony_ci	0x5d, 0x65, 0x5a, 0xa8, 0xfc, 0x20, 0x50, 0x14,
65308c2ecf20Sopenharmony_ci	0xa9, 0x8a, 0x7e, 0x1d, 0x08, 0x1f, 0xe2, 0x99,
65318c2ecf20Sopenharmony_ci	0xd0, 0xbe, 0xfb, 0x3a, 0x21, 0x9d, 0xad, 0x86,
65328c2ecf20Sopenharmony_ci	0x54, 0xfd, 0x0d, 0x98, 0x1c, 0x5a, 0x6f, 0x1f,
65338c2ecf20Sopenharmony_ci	0x9a, 0x40, 0xcd, 0xa2, 0xff, 0x6a, 0xf1, 0x54
65348c2ecf20Sopenharmony_ci};
65358c2ecf20Sopenharmony_cistatic const u8 dec_output008[] __initconst = {
65368c2ecf20Sopenharmony_ci	0xc3, 0x09, 0x94, 0x62, 0xe6, 0x46, 0x2e, 0x10,
65378c2ecf20Sopenharmony_ci	0xbe, 0x00, 0xe4, 0xfc, 0xf3, 0x40, 0xa3, 0xe2,
65388c2ecf20Sopenharmony_ci	0x0f, 0xc2, 0x8b, 0x28, 0xdc, 0xba, 0xb4, 0x3c,
65398c2ecf20Sopenharmony_ci	0xe4, 0x21, 0x58, 0x61, 0xcd, 0x8b, 0xcd, 0xfb,
65408c2ecf20Sopenharmony_ci	0xac, 0x94, 0xa1, 0x45, 0xf5, 0x1c, 0xe1, 0x12,
65418c2ecf20Sopenharmony_ci	0xe0, 0x3b, 0x67, 0x21, 0x54, 0x5e, 0x8c, 0xaa,
65428c2ecf20Sopenharmony_ci	0xcf, 0xdb, 0xb4, 0x51, 0xd4, 0x13, 0xda, 0xe6,
65438c2ecf20Sopenharmony_ci	0x83, 0x89, 0xb6, 0x92, 0xe9, 0x21, 0x76, 0xa4,
65448c2ecf20Sopenharmony_ci	0x93, 0x7d, 0x0e, 0xfd, 0x96, 0x36, 0x03, 0x91,
65458c2ecf20Sopenharmony_ci	0x43, 0x5c, 0x92, 0x49, 0x62, 0x61, 0x7b, 0xeb,
65468c2ecf20Sopenharmony_ci	0x43, 0x89, 0xb8, 0x12, 0x20, 0x43, 0xd4, 0x47,
65478c2ecf20Sopenharmony_ci	0x06, 0x84, 0xee, 0x47, 0xe9, 0x8a, 0x73, 0x15,
65488c2ecf20Sopenharmony_ci	0x0f, 0x72, 0xcf, 0xed, 0xce, 0x96, 0xb2, 0x7f,
65498c2ecf20Sopenharmony_ci	0x21, 0x45, 0x76, 0xeb, 0x26, 0x28, 0x83, 0x6a,
65508c2ecf20Sopenharmony_ci	0xad, 0xaa, 0xa6, 0x81, 0xd8, 0x55, 0xb1, 0xa3,
65518c2ecf20Sopenharmony_ci	0x85, 0xb3, 0x0c, 0xdf, 0xf1, 0x69, 0x2d, 0x97,
65528c2ecf20Sopenharmony_ci	0x05, 0x2a, 0xbc, 0x7c, 0x7b, 0x25, 0xf8, 0x80,
65538c2ecf20Sopenharmony_ci	0x9d, 0x39, 0x25, 0xf3, 0x62, 0xf0, 0x66, 0x5e,
65548c2ecf20Sopenharmony_ci	0xf4, 0xa0, 0xcf, 0xd8, 0xfd, 0x4f, 0xb1, 0x1f,
65558c2ecf20Sopenharmony_ci	0x60, 0x3a, 0x08, 0x47, 0xaf, 0xe1, 0xf6, 0x10,
65568c2ecf20Sopenharmony_ci	0x77, 0x09, 0xa7, 0x27, 0x8f, 0x9a, 0x97, 0x5a,
65578c2ecf20Sopenharmony_ci	0x26, 0xfa, 0xfe, 0x41, 0x32, 0x83, 0x10, 0xe0,
65588c2ecf20Sopenharmony_ci	0x1d, 0xbf, 0x64, 0x0d, 0xf4, 0x1c, 0x32, 0x35,
65598c2ecf20Sopenharmony_ci	0xe5, 0x1b, 0x36, 0xef, 0xd4, 0x4a, 0x93, 0x4d,
65608c2ecf20Sopenharmony_ci	0x00, 0x7c, 0xec, 0x02, 0x07, 0x8b, 0x5d, 0x7d,
65618c2ecf20Sopenharmony_ci	0x1b, 0x0e, 0xd1, 0xa6, 0xa5, 0x5d, 0x7d, 0x57,
65628c2ecf20Sopenharmony_ci	0x88, 0xa8, 0xcc, 0x81, 0xb4, 0x86, 0x4e, 0xb4,
65638c2ecf20Sopenharmony_ci	0x40, 0xe9, 0x1d, 0xc3, 0xb1, 0x24, 0x3e, 0x7f,
65648c2ecf20Sopenharmony_ci	0xcc, 0x8a, 0x24, 0x9b, 0xdf, 0x6d, 0xf0, 0x39,
65658c2ecf20Sopenharmony_ci	0x69, 0x3e, 0x4c, 0xc0, 0x96, 0xe4, 0x13, 0xda,
65668c2ecf20Sopenharmony_ci	0x90, 0xda, 0xf4, 0x95, 0x66, 0x8b, 0x17, 0x17,
65678c2ecf20Sopenharmony_ci	0xfe, 0x39, 0x43, 0x25, 0xaa, 0xda, 0xa0, 0x43,
65688c2ecf20Sopenharmony_ci	0x3c, 0xb1, 0x41, 0x02, 0xa3, 0xf0, 0xa7, 0x19,
65698c2ecf20Sopenharmony_ci	0x59, 0xbc, 0x1d, 0x7d, 0x6c, 0x6d, 0x91, 0x09,
65708c2ecf20Sopenharmony_ci	0x5c, 0xb7, 0x5b, 0x01, 0xd1, 0x6f, 0x17, 0x21,
65718c2ecf20Sopenharmony_ci	0x97, 0xbf, 0x89, 0x71, 0xa5, 0xb0, 0x6e, 0x07,
65728c2ecf20Sopenharmony_ci	0x45, 0xfd, 0x9d, 0xea, 0x07, 0xf6, 0x7a, 0x9f,
65738c2ecf20Sopenharmony_ci	0x10, 0x18, 0x22, 0x30, 0x73, 0xac, 0xd4, 0x6b,
65748c2ecf20Sopenharmony_ci	0x72, 0x44, 0xed, 0xd9, 0x19, 0x9b, 0x2d, 0x4a,
65758c2ecf20Sopenharmony_ci	0x41, 0xdd, 0xd1, 0x85, 0x5e, 0x37, 0x19, 0xed,
65768c2ecf20Sopenharmony_ci	0xd2, 0x15, 0x8f, 0x5e, 0x91, 0xdb, 0x33, 0xf2,
65778c2ecf20Sopenharmony_ci	0xe4, 0xdb, 0xff, 0x98, 0xfb, 0xa3, 0xb5, 0xca,
65788c2ecf20Sopenharmony_ci	0x21, 0x69, 0x08, 0xe7, 0x8a, 0xdf, 0x90, 0xff,
65798c2ecf20Sopenharmony_ci	0x3e, 0xe9, 0x20, 0x86, 0x3c, 0xe9, 0xfc, 0x0b,
65808c2ecf20Sopenharmony_ci	0xfe, 0x5c, 0x61, 0xaa, 0x13, 0x92, 0x7f, 0x7b,
65818c2ecf20Sopenharmony_ci	0xec, 0xe0, 0x6d, 0xa8, 0x23, 0x22, 0xf6, 0x6b,
65828c2ecf20Sopenharmony_ci	0x77, 0xc4, 0xfe, 0x40, 0x07, 0x3b, 0xb6, 0xf6,
65838c2ecf20Sopenharmony_ci	0x8e, 0x5f, 0xd4, 0xb9, 0xb7, 0x0f, 0x21, 0x04,
65848c2ecf20Sopenharmony_ci	0xef, 0x83, 0x63, 0x91, 0x69, 0x40, 0xa3, 0x48,
65858c2ecf20Sopenharmony_ci	0x5c, 0xd2, 0x60, 0xf9, 0x4f, 0x6c, 0x47, 0x8b,
65868c2ecf20Sopenharmony_ci	0x3b, 0xb1, 0x9f, 0x8e, 0xee, 0x16, 0x8a, 0x13,
65878c2ecf20Sopenharmony_ci	0xfc, 0x46, 0x17, 0xc3, 0xc3, 0x32, 0x56, 0xf8,
65888c2ecf20Sopenharmony_ci	0x3c, 0x85, 0x3a, 0xb6, 0x3e, 0xaa, 0x89, 0x4f,
65898c2ecf20Sopenharmony_ci	0xb3, 0xdf, 0x38, 0xfd, 0xf1, 0xe4, 0x3a, 0xc0,
65908c2ecf20Sopenharmony_ci	0xe6, 0x58, 0xb5, 0x8f, 0xc5, 0x29, 0xa2, 0x92,
65918c2ecf20Sopenharmony_ci	0x4a, 0xb6, 0xa0, 0x34, 0x7f, 0xab, 0xb5, 0x8a,
65928c2ecf20Sopenharmony_ci	0x90, 0xa1, 0xdb, 0x4d, 0xca, 0xb6, 0x2c, 0x41,
65938c2ecf20Sopenharmony_ci	0x3c, 0xf7, 0x2b, 0x21, 0xc3, 0xfd, 0xf4, 0x17,
65948c2ecf20Sopenharmony_ci	0x5c, 0xb5, 0x33, 0x17, 0x68, 0x2b, 0x08, 0x30,
65958c2ecf20Sopenharmony_ci	0xf3, 0xf7, 0x30, 0x3c, 0x96, 0xe6, 0x6a, 0x20,
65968c2ecf20Sopenharmony_ci	0x97, 0xe7, 0x4d, 0x10, 0x5f, 0x47, 0x5f, 0x49,
65978c2ecf20Sopenharmony_ci	0x96, 0x09, 0xf0, 0x27, 0x91, 0xc8, 0xf8, 0x5a,
65988c2ecf20Sopenharmony_ci	0x2e, 0x79, 0xb5, 0xe2, 0xb8, 0xe8, 0xb9, 0x7b,
65998c2ecf20Sopenharmony_ci	0xd5, 0x10, 0xcb, 0xff, 0x5d, 0x14, 0x73, 0xf3
66008c2ecf20Sopenharmony_ci};
66018c2ecf20Sopenharmony_cistatic const u8 dec_assoc008[] __initconst = { };
66028c2ecf20Sopenharmony_cistatic const u8 dec_nonce008[] __initconst = {
66038c2ecf20Sopenharmony_ci	0x0e, 0x0d, 0x57, 0xbb, 0x7b, 0x40, 0x54, 0x02
66048c2ecf20Sopenharmony_ci};
66058c2ecf20Sopenharmony_cistatic const u8 dec_key008[] __initconst = {
66068c2ecf20Sopenharmony_ci	0xf2, 0xaa, 0x4f, 0x99, 0xfd, 0x3e, 0xa8, 0x53,
66078c2ecf20Sopenharmony_ci	0xc1, 0x44, 0xe9, 0x81, 0x18, 0xdc, 0xf5, 0xf0,
66088c2ecf20Sopenharmony_ci	0x3e, 0x44, 0x15, 0x59, 0xe0, 0xc5, 0x44, 0x86,
66098c2ecf20Sopenharmony_ci	0xc3, 0x91, 0xa8, 0x75, 0xc0, 0x12, 0x46, 0xba
66108c2ecf20Sopenharmony_ci};
66118c2ecf20Sopenharmony_ci
66128c2ecf20Sopenharmony_cistatic const u8 dec_input009[] __initconst = {
66138c2ecf20Sopenharmony_ci	0xfd, 0x81, 0x8d, 0xd0, 0x3d, 0xb4, 0xd5, 0xdf,
66148c2ecf20Sopenharmony_ci	0xd3, 0x42, 0x47, 0x5a, 0x6d, 0x19, 0x27, 0x66,
66158c2ecf20Sopenharmony_ci	0x4b, 0x2e, 0x0c, 0x27, 0x9c, 0x96, 0x4c, 0x72,
66168c2ecf20Sopenharmony_ci	0x02, 0xa3, 0x65, 0xc3, 0xb3, 0x6f, 0x2e, 0xbd,
66178c2ecf20Sopenharmony_ci	0x63, 0x8a, 0x4a, 0x5d, 0x29, 0xa2, 0xd0, 0x28,
66188c2ecf20Sopenharmony_ci	0x48, 0xc5, 0x3d, 0x98, 0xa3, 0xbc, 0xe0, 0xbe,
66198c2ecf20Sopenharmony_ci	0x3b, 0x3f, 0xe6, 0x8a, 0xa4, 0x7f, 0x53, 0x06,
66208c2ecf20Sopenharmony_ci	0xfa, 0x7f, 0x27, 0x76, 0x72, 0x31, 0xa1, 0xf5,
66218c2ecf20Sopenharmony_ci	0xd6, 0x0c, 0x52, 0x47, 0xba, 0xcd, 0x4f, 0xd7,
66228c2ecf20Sopenharmony_ci	0xeb, 0x05, 0x48, 0x0d, 0x7c, 0x35, 0x4a, 0x09,
66238c2ecf20Sopenharmony_ci	0xc9, 0x76, 0x71, 0x02, 0xa3, 0xfb, 0xb7, 0x1a,
66248c2ecf20Sopenharmony_ci	0x65, 0xb7, 0xed, 0x98, 0xc6, 0x30, 0x8a, 0x00,
66258c2ecf20Sopenharmony_ci	0xae, 0xa1, 0x31, 0xe5, 0xb5, 0x9e, 0x6d, 0x62,
66268c2ecf20Sopenharmony_ci	0xda, 0xda, 0x07, 0x0f, 0x38, 0x38, 0xd3, 0xcb,
66278c2ecf20Sopenharmony_ci	0xc1, 0xb0, 0xad, 0xec, 0x72, 0xec, 0xb1, 0xa2,
66288c2ecf20Sopenharmony_ci	0x7b, 0x59, 0xf3, 0x3d, 0x2b, 0xef, 0xcd, 0x28,
66298c2ecf20Sopenharmony_ci	0x5b, 0x83, 0xcc, 0x18, 0x91, 0x88, 0xb0, 0x2e,
66308c2ecf20Sopenharmony_ci	0xf9, 0x29, 0x31, 0x18, 0xf9, 0x4e, 0xe9, 0x0a,
66318c2ecf20Sopenharmony_ci	0x91, 0x92, 0x9f, 0xae, 0x2d, 0xad, 0xf4, 0xe6,
66328c2ecf20Sopenharmony_ci	0x1a, 0xe2, 0xa4, 0xee, 0x47, 0x15, 0xbf, 0x83,
66338c2ecf20Sopenharmony_ci	0x6e, 0xd7, 0x72, 0x12, 0x3b, 0x2d, 0x24, 0xe9,
66348c2ecf20Sopenharmony_ci	0xb2, 0x55, 0xcb, 0x3c, 0x10, 0xf0, 0x24, 0x8a,
66358c2ecf20Sopenharmony_ci	0x4a, 0x02, 0xea, 0x90, 0x25, 0xf0, 0xb4, 0x79,
66368c2ecf20Sopenharmony_ci	0x3a, 0xef, 0x6e, 0xf5, 0x52, 0xdf, 0xb0, 0x0a,
66378c2ecf20Sopenharmony_ci	0xcd, 0x24, 0x1c, 0xd3, 0x2e, 0x22, 0x74, 0xea,
66388c2ecf20Sopenharmony_ci	0x21, 0x6f, 0xe9, 0xbd, 0xc8, 0x3e, 0x36, 0x5b,
66398c2ecf20Sopenharmony_ci	0x19, 0xf1, 0xca, 0x99, 0x0a, 0xb4, 0xa7, 0x52,
66408c2ecf20Sopenharmony_ci	0x1a, 0x4e, 0xf2, 0xad, 0x8d, 0x56, 0x85, 0xbb,
66418c2ecf20Sopenharmony_ci	0x64, 0x89, 0xba, 0x26, 0xf9, 0xc7, 0xe1, 0x89,
66428c2ecf20Sopenharmony_ci	0x19, 0x22, 0x77, 0xc3, 0xa8, 0xfc, 0xff, 0xad,
66438c2ecf20Sopenharmony_ci	0xfe, 0xb9, 0x48, 0xae, 0x12, 0x30, 0x9f, 0x19,
66448c2ecf20Sopenharmony_ci	0xfb, 0x1b, 0xef, 0x14, 0x87, 0x8a, 0x78, 0x71,
66458c2ecf20Sopenharmony_ci	0xf3, 0xf4, 0xb7, 0x00, 0x9c, 0x1d, 0xb5, 0x3d,
66468c2ecf20Sopenharmony_ci	0x49, 0x00, 0x0c, 0x06, 0xd4, 0x50, 0xf9, 0x54,
66478c2ecf20Sopenharmony_ci	0x45, 0xb2, 0x5b, 0x43, 0xdb, 0x6d, 0xcf, 0x1a,
66488c2ecf20Sopenharmony_ci	0xe9, 0x7a, 0x7a, 0xcf, 0xfc, 0x8a, 0x4e, 0x4d,
66498c2ecf20Sopenharmony_ci	0x0b, 0x07, 0x63, 0x28, 0xd8, 0xe7, 0x08, 0x95,
66508c2ecf20Sopenharmony_ci	0xdf, 0xa6, 0x72, 0x93, 0x2e, 0xbb, 0xa0, 0x42,
66518c2ecf20Sopenharmony_ci	0x89, 0x16, 0xf1, 0xd9, 0x0c, 0xf9, 0xa1, 0x16,
66528c2ecf20Sopenharmony_ci	0xfd, 0xd9, 0x03, 0xb4, 0x3b, 0x8a, 0xf5, 0xf6,
66538c2ecf20Sopenharmony_ci	0xe7, 0x6b, 0x2e, 0x8e, 0x4c, 0x3d, 0xe2, 0xaf,
66548c2ecf20Sopenharmony_ci	0x08, 0x45, 0x03, 0xff, 0x09, 0xb6, 0xeb, 0x2d,
66558c2ecf20Sopenharmony_ci	0xc6, 0x1b, 0x88, 0x94, 0xac, 0x3e, 0xf1, 0x9f,
66568c2ecf20Sopenharmony_ci	0x0e, 0x0e, 0x2b, 0xd5, 0x00, 0x4d, 0x3f, 0x3b,
66578c2ecf20Sopenharmony_ci	0x53, 0xae, 0xaf, 0x1c, 0x33, 0x5f, 0x55, 0x6e,
66588c2ecf20Sopenharmony_ci	0x8d, 0xaf, 0x05, 0x7a, 0x10, 0x34, 0xc9, 0xf4,
66598c2ecf20Sopenharmony_ci	0x66, 0xcb, 0x62, 0x12, 0xa6, 0xee, 0xe8, 0x1c,
66608c2ecf20Sopenharmony_ci	0x5d, 0x12, 0x86, 0xdb, 0x6f, 0x1c, 0x33, 0xc4,
66618c2ecf20Sopenharmony_ci	0x1c, 0xda, 0x82, 0x2d, 0x3b, 0x59, 0xfe, 0xb1,
66628c2ecf20Sopenharmony_ci	0xa4, 0x59, 0x41, 0x86, 0xd0, 0xef, 0xae, 0xfb,
66638c2ecf20Sopenharmony_ci	0xda, 0x6d, 0x11, 0xb8, 0xca, 0xe9, 0x6e, 0xff,
66648c2ecf20Sopenharmony_ci	0xf7, 0xa9, 0xd9, 0x70, 0x30, 0xfc, 0x53, 0xe2,
66658c2ecf20Sopenharmony_ci	0xd7, 0xa2, 0x4e, 0xc7, 0x91, 0xd9, 0x07, 0x06,
66668c2ecf20Sopenharmony_ci	0xaa, 0xdd, 0xb0, 0x59, 0x28, 0x1d, 0x00, 0x66,
66678c2ecf20Sopenharmony_ci	0xc5, 0x54, 0xc2, 0xfc, 0x06, 0xda, 0x05, 0x90,
66688c2ecf20Sopenharmony_ci	0x52, 0x1d, 0x37, 0x66, 0xee, 0xf0, 0xb2, 0x55,
66698c2ecf20Sopenharmony_ci	0x8a, 0x5d, 0xd2, 0x38, 0x86, 0x94, 0x9b, 0xfc,
66708c2ecf20Sopenharmony_ci	0x10, 0x4c, 0xa1, 0xb9, 0x64, 0x3e, 0x44, 0xb8,
66718c2ecf20Sopenharmony_ci	0x5f, 0xb0, 0x0c, 0xec, 0xe0, 0xc9, 0xe5, 0x62,
66728c2ecf20Sopenharmony_ci	0x75, 0x3f, 0x09, 0xd5, 0xf5, 0xd9, 0x26, 0xba,
66738c2ecf20Sopenharmony_ci	0x9e, 0xd2, 0xf4, 0xb9, 0x48, 0x0a, 0xbc, 0xa2,
66748c2ecf20Sopenharmony_ci	0xd6, 0x7c, 0x36, 0x11, 0x7d, 0x26, 0x81, 0x89,
66758c2ecf20Sopenharmony_ci	0xcf, 0xa4, 0xad, 0x73, 0x0e, 0xee, 0xcc, 0x06,
66768c2ecf20Sopenharmony_ci	0xa9, 0xdb, 0xb1, 0xfd, 0xfb, 0x09, 0x7f, 0x90,
66778c2ecf20Sopenharmony_ci	0x42, 0x37, 0x2f, 0xe1, 0x9c, 0x0f, 0x6f, 0xcf,
66788c2ecf20Sopenharmony_ci	0x43, 0xb5, 0xd9, 0x90, 0xe1, 0x85, 0xf5, 0xa8,
66798c2ecf20Sopenharmony_ci	0xae
66808c2ecf20Sopenharmony_ci};
66818c2ecf20Sopenharmony_cistatic const u8 dec_output009[] __initconst = {
66828c2ecf20Sopenharmony_ci	0xe6, 0xc3, 0xdb, 0x63, 0x55, 0x15, 0xe3, 0x5b,
66838c2ecf20Sopenharmony_ci	0xb7, 0x4b, 0x27, 0x8b, 0x5a, 0xdd, 0xc2, 0xe8,
66848c2ecf20Sopenharmony_ci	0x3a, 0x6b, 0xd7, 0x81, 0x96, 0x35, 0x97, 0xca,
66858c2ecf20Sopenharmony_ci	0xd7, 0x68, 0xe8, 0xef, 0xce, 0xab, 0xda, 0x09,
66868c2ecf20Sopenharmony_ci	0x6e, 0xd6, 0x8e, 0xcb, 0x55, 0xb5, 0xe1, 0xe5,
66878c2ecf20Sopenharmony_ci	0x57, 0xfd, 0xc4, 0xe3, 0xe0, 0x18, 0x4f, 0x85,
66888c2ecf20Sopenharmony_ci	0xf5, 0x3f, 0x7e, 0x4b, 0x88, 0xc9, 0x52, 0x44,
66898c2ecf20Sopenharmony_ci	0x0f, 0xea, 0xaf, 0x1f, 0x71, 0x48, 0x9f, 0x97,
66908c2ecf20Sopenharmony_ci	0x6d, 0xb9, 0x6f, 0x00, 0xa6, 0xde, 0x2b, 0x77,
66918c2ecf20Sopenharmony_ci	0x8b, 0x15, 0xad, 0x10, 0xa0, 0x2b, 0x7b, 0x41,
66928c2ecf20Sopenharmony_ci	0x90, 0x03, 0x2d, 0x69, 0xae, 0xcc, 0x77, 0x7c,
66938c2ecf20Sopenharmony_ci	0xa5, 0x9d, 0x29, 0x22, 0xc2, 0xea, 0xb4, 0x00,
66948c2ecf20Sopenharmony_ci	0x1a, 0xd2, 0x7a, 0x98, 0x8a, 0xf9, 0xf7, 0x82,
66958c2ecf20Sopenharmony_ci	0xb0, 0xab, 0xd8, 0xa6, 0x94, 0x8d, 0x58, 0x2f,
66968c2ecf20Sopenharmony_ci	0x01, 0x9e, 0x00, 0x20, 0xfc, 0x49, 0xdc, 0x0e,
66978c2ecf20Sopenharmony_ci	0x03, 0xe8, 0x45, 0x10, 0xd6, 0xa8, 0xda, 0x55,
66988c2ecf20Sopenharmony_ci	0x10, 0x9a, 0xdf, 0x67, 0x22, 0x8b, 0x43, 0xab,
66998c2ecf20Sopenharmony_ci	0x00, 0xbb, 0x02, 0xc8, 0xdd, 0x7b, 0x97, 0x17,
67008c2ecf20Sopenharmony_ci	0xd7, 0x1d, 0x9e, 0x02, 0x5e, 0x48, 0xde, 0x8e,
67018c2ecf20Sopenharmony_ci	0xcf, 0x99, 0x07, 0x95, 0x92, 0x3c, 0x5f, 0x9f,
67028c2ecf20Sopenharmony_ci	0xc5, 0x8a, 0xc0, 0x23, 0xaa, 0xd5, 0x8c, 0x82,
67038c2ecf20Sopenharmony_ci	0x6e, 0x16, 0x92, 0xb1, 0x12, 0x17, 0x07, 0xc3,
67048c2ecf20Sopenharmony_ci	0xfb, 0x36, 0xf5, 0x6c, 0x35, 0xd6, 0x06, 0x1f,
67058c2ecf20Sopenharmony_ci	0x9f, 0xa7, 0x94, 0xa2, 0x38, 0x63, 0x9c, 0xb0,
67068c2ecf20Sopenharmony_ci	0x71, 0xb3, 0xa5, 0xd2, 0xd8, 0xba, 0x9f, 0x08,
67078c2ecf20Sopenharmony_ci	0x01, 0xb3, 0xff, 0x04, 0x97, 0x73, 0x45, 0x1b,
67088c2ecf20Sopenharmony_ci	0xd5, 0xa9, 0x9c, 0x80, 0xaf, 0x04, 0x9a, 0x85,
67098c2ecf20Sopenharmony_ci	0xdb, 0x32, 0x5b, 0x5d, 0x1a, 0xc1, 0x36, 0x28,
67108c2ecf20Sopenharmony_ci	0x10, 0x79, 0xf1, 0x3c, 0xbf, 0x1a, 0x41, 0x5c,
67118c2ecf20Sopenharmony_ci	0x4e, 0xdf, 0xb2, 0x7c, 0x79, 0x3b, 0x7a, 0x62,
67128c2ecf20Sopenharmony_ci	0x3d, 0x4b, 0xc9, 0x9b, 0x2a, 0x2e, 0x7c, 0xa2,
67138c2ecf20Sopenharmony_ci	0xb1, 0x11, 0x98, 0xa7, 0x34, 0x1a, 0x00, 0xf3,
67148c2ecf20Sopenharmony_ci	0xd1, 0xbc, 0x18, 0x22, 0xba, 0x02, 0x56, 0x62,
67158c2ecf20Sopenharmony_ci	0x31, 0x10, 0x11, 0x6d, 0xe0, 0x54, 0x9d, 0x40,
67168c2ecf20Sopenharmony_ci	0x1f, 0x26, 0x80, 0x41, 0xca, 0x3f, 0x68, 0x0f,
67178c2ecf20Sopenharmony_ci	0x32, 0x1d, 0x0a, 0x8e, 0x79, 0xd8, 0xa4, 0x1b,
67188c2ecf20Sopenharmony_ci	0x29, 0x1c, 0x90, 0x8e, 0xc5, 0xe3, 0xb4, 0x91,
67198c2ecf20Sopenharmony_ci	0x37, 0x9a, 0x97, 0x86, 0x99, 0xd5, 0x09, 0xc5,
67208c2ecf20Sopenharmony_ci	0xbb, 0xa3, 0x3f, 0x21, 0x29, 0x82, 0x14, 0x5c,
67218c2ecf20Sopenharmony_ci	0xab, 0x25, 0xfb, 0xf2, 0x4f, 0x58, 0x26, 0xd4,
67228c2ecf20Sopenharmony_ci	0x83, 0xaa, 0x66, 0x89, 0x67, 0x7e, 0xc0, 0x49,
67238c2ecf20Sopenharmony_ci	0xe1, 0x11, 0x10, 0x7f, 0x7a, 0xda, 0x29, 0x04,
67248c2ecf20Sopenharmony_ci	0xff, 0xf0, 0xcb, 0x09, 0x7c, 0x9d, 0xfa, 0x03,
67258c2ecf20Sopenharmony_ci	0x6f, 0x81, 0x09, 0x31, 0x60, 0xfb, 0x08, 0xfa,
67268c2ecf20Sopenharmony_ci	0x74, 0xd3, 0x64, 0x44, 0x7c, 0x55, 0x85, 0xec,
67278c2ecf20Sopenharmony_ci	0x9c, 0x6e, 0x25, 0xb7, 0x6c, 0xc5, 0x37, 0xb6,
67288c2ecf20Sopenharmony_ci	0x83, 0x87, 0x72, 0x95, 0x8b, 0x9d, 0xe1, 0x69,
67298c2ecf20Sopenharmony_ci	0x5c, 0x31, 0x95, 0x42, 0xa6, 0x2c, 0xd1, 0x36,
67308c2ecf20Sopenharmony_ci	0x47, 0x1f, 0xec, 0x54, 0xab, 0xa2, 0x1c, 0xd8,
67318c2ecf20Sopenharmony_ci	0x00, 0xcc, 0xbc, 0x0d, 0x65, 0xe2, 0x67, 0xbf,
67328c2ecf20Sopenharmony_ci	0xbc, 0xea, 0xee, 0x9e, 0xe4, 0x36, 0x95, 0xbe,
67338c2ecf20Sopenharmony_ci	0x73, 0xd9, 0xa6, 0xd9, 0x0f, 0xa0, 0xcc, 0x82,
67348c2ecf20Sopenharmony_ci	0x76, 0x26, 0xad, 0x5b, 0x58, 0x6c, 0x4e, 0xab,
67358c2ecf20Sopenharmony_ci	0x29, 0x64, 0xd3, 0xd9, 0xa9, 0x08, 0x8c, 0x1d,
67368c2ecf20Sopenharmony_ci	0xa1, 0x4f, 0x80, 0xd8, 0x3f, 0x94, 0xfb, 0xd3,
67378c2ecf20Sopenharmony_ci	0x7b, 0xfc, 0xd1, 0x2b, 0xc3, 0x21, 0xeb, 0xe5,
67388c2ecf20Sopenharmony_ci	0x1c, 0x84, 0x23, 0x7f, 0x4b, 0xfa, 0xdb, 0x34,
67398c2ecf20Sopenharmony_ci	0x18, 0xa2, 0xc2, 0xe5, 0x13, 0xfe, 0x6c, 0x49,
67408c2ecf20Sopenharmony_ci	0x81, 0xd2, 0x73, 0xe7, 0xe2, 0xd7, 0xe4, 0x4f,
67418c2ecf20Sopenharmony_ci	0x4b, 0x08, 0x6e, 0xb1, 0x12, 0x22, 0x10, 0x9d,
67428c2ecf20Sopenharmony_ci	0xac, 0x51, 0x1e, 0x17, 0xd9, 0x8a, 0x0b, 0x42,
67438c2ecf20Sopenharmony_ci	0x88, 0x16, 0x81, 0x37, 0x7c, 0x6a, 0xf7, 0xef,
67448c2ecf20Sopenharmony_ci	0x2d, 0xe3, 0xd9, 0xf8, 0x5f, 0xe0, 0x53, 0x27,
67458c2ecf20Sopenharmony_ci	0x74, 0xb9, 0xe2, 0xd6, 0x1c, 0x80, 0x2c, 0x52,
67468c2ecf20Sopenharmony_ci	0x65
67478c2ecf20Sopenharmony_ci};
67488c2ecf20Sopenharmony_cistatic const u8 dec_assoc009[] __initconst = {
67498c2ecf20Sopenharmony_ci	0x5a, 0x27, 0xff, 0xeb, 0xdf, 0x84, 0xb2, 0x9e,
67508c2ecf20Sopenharmony_ci	0xef
67518c2ecf20Sopenharmony_ci};
67528c2ecf20Sopenharmony_cistatic const u8 dec_nonce009[] __initconst = {
67538c2ecf20Sopenharmony_ci	0xef, 0x2d, 0x63, 0xee, 0x6b, 0x80, 0x8b, 0x78
67548c2ecf20Sopenharmony_ci};
67558c2ecf20Sopenharmony_cistatic const u8 dec_key009[] __initconst = {
67568c2ecf20Sopenharmony_ci	0xea, 0xbc, 0x56, 0x99, 0xe3, 0x50, 0xff, 0xc5,
67578c2ecf20Sopenharmony_ci	0xcc, 0x1a, 0xd7, 0xc1, 0x57, 0x72, 0xea, 0x86,
67588c2ecf20Sopenharmony_ci	0x5b, 0x89, 0x88, 0x61, 0x3d, 0x2f, 0x9b, 0xb2,
67598c2ecf20Sopenharmony_ci	0xe7, 0x9c, 0xec, 0x74, 0x6e, 0x3e, 0xf4, 0x3b
67608c2ecf20Sopenharmony_ci};
67618c2ecf20Sopenharmony_ci
67628c2ecf20Sopenharmony_cistatic const u8 dec_input010[] __initconst = {
67638c2ecf20Sopenharmony_ci	0xe5, 0x26, 0xa4, 0x3d, 0xbd, 0x33, 0xd0, 0x4b,
67648c2ecf20Sopenharmony_ci	0x6f, 0x05, 0xa7, 0x6e, 0x12, 0x7a, 0xd2, 0x74,
67658c2ecf20Sopenharmony_ci	0xa6, 0xdd, 0xbd, 0x95, 0xeb, 0xf9, 0xa4, 0xf1,
67668c2ecf20Sopenharmony_ci	0x59, 0x93, 0x91, 0x70, 0xd9, 0xfe, 0x9a, 0xcd,
67678c2ecf20Sopenharmony_ci	0x53, 0x1f, 0x3a, 0xab, 0xa6, 0x7c, 0x9f, 0xa6,
67688c2ecf20Sopenharmony_ci	0x9e, 0xbd, 0x99, 0xd9, 0xb5, 0x97, 0x44, 0xd5,
67698c2ecf20Sopenharmony_ci	0x14, 0x48, 0x4d, 0x9d, 0xc0, 0xd0, 0x05, 0x96,
67708c2ecf20Sopenharmony_ci	0xeb, 0x4c, 0x78, 0x55, 0x09, 0x08, 0x01, 0x02,
67718c2ecf20Sopenharmony_ci	0x30, 0x90, 0x7b, 0x96, 0x7a, 0x7b, 0x5f, 0x30,
67728c2ecf20Sopenharmony_ci	0x41, 0x24, 0xce, 0x68, 0x61, 0x49, 0x86, 0x57,
67738c2ecf20Sopenharmony_ci	0x82, 0xdd, 0x53, 0x1c, 0x51, 0x28, 0x2b, 0x53,
67748c2ecf20Sopenharmony_ci	0x6e, 0x2d, 0xc2, 0x20, 0x4c, 0xdd, 0x8f, 0x65,
67758c2ecf20Sopenharmony_ci	0x10, 0x20, 0x50, 0xdd, 0x9d, 0x50, 0xe5, 0x71,
67768c2ecf20Sopenharmony_ci	0x40, 0x53, 0x69, 0xfc, 0x77, 0x48, 0x11, 0xb9,
67778c2ecf20Sopenharmony_ci	0xde, 0xa4, 0x8d, 0x58, 0xe4, 0xa6, 0x1a, 0x18,
67788c2ecf20Sopenharmony_ci	0x47, 0x81, 0x7e, 0xfc, 0xdd, 0xf6, 0xef, 0xce,
67798c2ecf20Sopenharmony_ci	0x2f, 0x43, 0x68, 0xd6, 0x06, 0xe2, 0x74, 0x6a,
67808c2ecf20Sopenharmony_ci	0xad, 0x90, 0xf5, 0x37, 0xf3, 0x3d, 0x82, 0x69,
67818c2ecf20Sopenharmony_ci	0x40, 0xe9, 0x6b, 0xa7, 0x3d, 0xa8, 0x1e, 0xd2,
67828c2ecf20Sopenharmony_ci	0x02, 0x7c, 0xb7, 0x9b, 0xe4, 0xda, 0x8f, 0x95,
67838c2ecf20Sopenharmony_ci	0x06, 0xc5, 0xdf, 0x73, 0xa3, 0x20, 0x9a, 0x49,
67848c2ecf20Sopenharmony_ci	0xde, 0x9c, 0xbc, 0xee, 0x14, 0x3f, 0x81, 0x5e,
67858c2ecf20Sopenharmony_ci	0xf8, 0x3b, 0x59, 0x3c, 0xe1, 0x68, 0x12, 0x5a,
67868c2ecf20Sopenharmony_ci	0x3a, 0x76, 0x3a, 0x3f, 0xf7, 0x87, 0x33, 0x0a,
67878c2ecf20Sopenharmony_ci	0x01, 0xb8, 0xd4, 0xed, 0xb6, 0xbe, 0x94, 0x5e,
67888c2ecf20Sopenharmony_ci	0x70, 0x40, 0x56, 0x67, 0x1f, 0x50, 0x44, 0x19,
67898c2ecf20Sopenharmony_ci	0xce, 0x82, 0x70, 0x10, 0x87, 0x13, 0x20, 0x0b,
67908c2ecf20Sopenharmony_ci	0x4c, 0x5a, 0xb6, 0xf6, 0xa7, 0xae, 0x81, 0x75,
67918c2ecf20Sopenharmony_ci	0x01, 0x81, 0xe6, 0x4b, 0x57, 0x7c, 0xdd, 0x6d,
67928c2ecf20Sopenharmony_ci	0xf8, 0x1c, 0x29, 0x32, 0xf7, 0xda, 0x3c, 0x2d,
67938c2ecf20Sopenharmony_ci	0xf8, 0x9b, 0x25, 0x6e, 0x00, 0xb4, 0xf7, 0x2f,
67948c2ecf20Sopenharmony_ci	0xf7, 0x04, 0xf7, 0xa1, 0x56, 0xac, 0x4f, 0x1a,
67958c2ecf20Sopenharmony_ci	0x64, 0xb8, 0x47, 0x55, 0x18, 0x7b, 0x07, 0x4d,
67968c2ecf20Sopenharmony_ci	0xbd, 0x47, 0x24, 0x80, 0x5d, 0xa2, 0x70, 0xc5,
67978c2ecf20Sopenharmony_ci	0xdd, 0x8e, 0x82, 0xd4, 0xeb, 0xec, 0xb2, 0x0c,
67988c2ecf20Sopenharmony_ci	0x39, 0xd2, 0x97, 0xc1, 0xcb, 0xeb, 0xf4, 0x77,
67998c2ecf20Sopenharmony_ci	0x59, 0xb4, 0x87, 0xef, 0xcb, 0x43, 0x2d, 0x46,
68008c2ecf20Sopenharmony_ci	0x54, 0xd1, 0xa7, 0xd7, 0x15, 0x99, 0x0a, 0x43,
68018c2ecf20Sopenharmony_ci	0xa1, 0xe0, 0x99, 0x33, 0x71, 0xc1, 0xed, 0xfe,
68028c2ecf20Sopenharmony_ci	0x72, 0x46, 0x33, 0x8e, 0x91, 0x08, 0x9f, 0xc8,
68038c2ecf20Sopenharmony_ci	0x2e, 0xca, 0xfa, 0xdc, 0x59, 0xd5, 0xc3, 0x76,
68048c2ecf20Sopenharmony_ci	0x84, 0x9f, 0xa3, 0x37, 0x68, 0xc3, 0xf0, 0x47,
68058c2ecf20Sopenharmony_ci	0x2c, 0x68, 0xdb, 0x5e, 0xc3, 0x49, 0x4c, 0xe8,
68068c2ecf20Sopenharmony_ci	0x92, 0x85, 0xe2, 0x23, 0xd3, 0x3f, 0xad, 0x32,
68078c2ecf20Sopenharmony_ci	0xe5, 0x2b, 0x82, 0xd7, 0x8f, 0x99, 0x0a, 0x59,
68088c2ecf20Sopenharmony_ci	0x5c, 0x45, 0xd9, 0xb4, 0x51, 0x52, 0xc2, 0xae,
68098c2ecf20Sopenharmony_ci	0xbf, 0x80, 0xcf, 0xc9, 0xc9, 0x51, 0x24, 0x2a,
68108c2ecf20Sopenharmony_ci	0x3b, 0x3a, 0x4d, 0xae, 0xeb, 0xbd, 0x22, 0xc3,
68118c2ecf20Sopenharmony_ci	0x0e, 0x0f, 0x59, 0x25, 0x92, 0x17, 0xe9, 0x74,
68128c2ecf20Sopenharmony_ci	0xc7, 0x8b, 0x70, 0x70, 0x36, 0x55, 0x95, 0x75,
68138c2ecf20Sopenharmony_ci	0x4b, 0xad, 0x61, 0x2b, 0x09, 0xbc, 0x82, 0xf2,
68148c2ecf20Sopenharmony_ci	0x6e, 0x94, 0x43, 0xae, 0xc3, 0xd5, 0xcd, 0x8e,
68158c2ecf20Sopenharmony_ci	0xfe, 0x5b, 0x9a, 0x88, 0x43, 0x01, 0x75, 0xb2,
68168c2ecf20Sopenharmony_ci	0x23, 0x09, 0xf7, 0x89, 0x83, 0xe7, 0xfa, 0xf9,
68178c2ecf20Sopenharmony_ci	0xb4, 0x9b, 0xf8, 0xef, 0xbd, 0x1c, 0x92, 0xc1,
68188c2ecf20Sopenharmony_ci	0xda, 0x7e, 0xfe, 0x05, 0xba, 0x5a, 0xcd, 0x07,
68198c2ecf20Sopenharmony_ci	0x6a, 0x78, 0x9e, 0x5d, 0xfb, 0x11, 0x2f, 0x79,
68208c2ecf20Sopenharmony_ci	0x38, 0xb6, 0xc2, 0x5b, 0x6b, 0x51, 0xb4, 0x71,
68218c2ecf20Sopenharmony_ci	0xdd, 0xf7, 0x2a, 0xe4, 0xf4, 0x72, 0x76, 0xad,
68228c2ecf20Sopenharmony_ci	0xc2, 0xdd, 0x64, 0x5d, 0x79, 0xb6, 0xf5, 0x7a,
68238c2ecf20Sopenharmony_ci	0x77, 0x20, 0x05, 0x3d, 0x30, 0x06, 0xd4, 0x4c,
68248c2ecf20Sopenharmony_ci	0x0a, 0x2c, 0x98, 0x5a, 0xb9, 0xd4, 0x98, 0xa9,
68258c2ecf20Sopenharmony_ci	0x3f, 0xc6, 0x12, 0xea, 0x3b, 0x4b, 0xc5, 0x79,
68268c2ecf20Sopenharmony_ci	0x64, 0x63, 0x6b, 0x09, 0x54, 0x3b, 0x14, 0x27,
68278c2ecf20Sopenharmony_ci	0xba, 0x99, 0x80, 0xc8, 0x72, 0xa8, 0x12, 0x90,
68288c2ecf20Sopenharmony_ci	0x29, 0xba, 0x40, 0x54, 0x97, 0x2b, 0x7b, 0xfe,
68298c2ecf20Sopenharmony_ci	0xeb, 0xcd, 0x01, 0x05, 0x44, 0x72, 0xdb, 0x99,
68308c2ecf20Sopenharmony_ci	0xe4, 0x61, 0xc9, 0x69, 0xd6, 0xb9, 0x28, 0xd1,
68318c2ecf20Sopenharmony_ci	0x05, 0x3e, 0xf9, 0x0b, 0x49, 0x0a, 0x49, 0xe9,
68328c2ecf20Sopenharmony_ci	0x8d, 0x0e, 0xa7, 0x4a, 0x0f, 0xaf, 0x32, 0xd0,
68338c2ecf20Sopenharmony_ci	0xe0, 0xb2, 0x3a, 0x55, 0x58, 0xfe, 0x5c, 0x28,
68348c2ecf20Sopenharmony_ci	0x70, 0x51, 0x23, 0xb0, 0x7b, 0x6a, 0x5f, 0x1e,
68358c2ecf20Sopenharmony_ci	0xb8, 0x17, 0xd7, 0x94, 0x15, 0x8f, 0xee, 0x20,
68368c2ecf20Sopenharmony_ci	0xc7, 0x42, 0x25, 0x3e, 0x9a, 0x14, 0xd7, 0x60,
68378c2ecf20Sopenharmony_ci	0x72, 0x39, 0x47, 0x48, 0xa9, 0xfe, 0xdd, 0x47,
68388c2ecf20Sopenharmony_ci	0x0a, 0xb1, 0xe6, 0x60, 0x28, 0x8c, 0x11, 0x68,
68398c2ecf20Sopenharmony_ci	0xe1, 0xff, 0xd7, 0xce, 0xc8, 0xbe, 0xb3, 0xfe,
68408c2ecf20Sopenharmony_ci	0x27, 0x30, 0x09, 0x70, 0xd7, 0xfa, 0x02, 0x33,
68418c2ecf20Sopenharmony_ci	0x3a, 0x61, 0x2e, 0xc7, 0xff, 0xa4, 0x2a, 0xa8,
68428c2ecf20Sopenharmony_ci	0x6e, 0xb4, 0x79, 0x35, 0x6d, 0x4c, 0x1e, 0x38,
68438c2ecf20Sopenharmony_ci	0xf8, 0xee, 0xd4, 0x84, 0x4e, 0x6e, 0x28, 0xa7,
68448c2ecf20Sopenharmony_ci	0xce, 0xc8, 0xc1, 0xcf, 0x80, 0x05, 0xf3, 0x04,
68458c2ecf20Sopenharmony_ci	0xef, 0xc8, 0x18, 0x28, 0x2e, 0x8d, 0x5e, 0x0c,
68468c2ecf20Sopenharmony_ci	0xdf, 0xb8, 0x5f, 0x96, 0xe8, 0xc6, 0x9c, 0x2f,
68478c2ecf20Sopenharmony_ci	0xe5, 0xa6, 0x44, 0xd7, 0xe7, 0x99, 0x44, 0x0c,
68488c2ecf20Sopenharmony_ci	0xec, 0xd7, 0x05, 0x60, 0x97, 0xbb, 0x74, 0x77,
68498c2ecf20Sopenharmony_ci	0x58, 0xd5, 0xbb, 0x48, 0xde, 0x5a, 0xb2, 0x54,
68508c2ecf20Sopenharmony_ci	0x7f, 0x0e, 0x46, 0x70, 0x6a, 0x6f, 0x78, 0xa5,
68518c2ecf20Sopenharmony_ci	0x08, 0x89, 0x05, 0x4e, 0x7e, 0xa0, 0x69, 0xb4,
68528c2ecf20Sopenharmony_ci	0x40, 0x60, 0x55, 0x77, 0x75, 0x9b, 0x19, 0xf2,
68538c2ecf20Sopenharmony_ci	0xd5, 0x13, 0x80, 0x77, 0xf9, 0x4b, 0x3f, 0x1e,
68548c2ecf20Sopenharmony_ci	0xee, 0xe6, 0x76, 0x84, 0x7b, 0x8c, 0xe5, 0x27,
68558c2ecf20Sopenharmony_ci	0xa8, 0x0a, 0x91, 0x01, 0x68, 0x71, 0x8a, 0x3f,
68568c2ecf20Sopenharmony_ci	0x06, 0xab, 0xf6, 0xa9, 0xa5, 0xe6, 0x72, 0x92,
68578c2ecf20Sopenharmony_ci	0xe4, 0x67, 0xe2, 0xa2, 0x46, 0x35, 0x84, 0x55,
68588c2ecf20Sopenharmony_ci	0x7d, 0xca, 0xa8, 0x85, 0xd0, 0xf1, 0x3f, 0xbe,
68598c2ecf20Sopenharmony_ci	0xd7, 0x34, 0x64, 0xfc, 0xae, 0xe3, 0xe4, 0x04,
68608c2ecf20Sopenharmony_ci	0x9f, 0x66, 0x02, 0xb9, 0x88, 0x10, 0xd9, 0xc4,
68618c2ecf20Sopenharmony_ci	0x4c, 0x31, 0x43, 0x7a, 0x93, 0xe2, 0x9b, 0x56,
68628c2ecf20Sopenharmony_ci	0x43, 0x84, 0xdc, 0xdc, 0xde, 0x1d, 0xa4, 0x02,
68638c2ecf20Sopenharmony_ci	0x0e, 0xc2, 0xef, 0xc3, 0xf8, 0x78, 0xd1, 0xb2,
68648c2ecf20Sopenharmony_ci	0x6b, 0x63, 0x18, 0xc9, 0xa9, 0xe5, 0x72, 0xd8,
68658c2ecf20Sopenharmony_ci	0xf3, 0xb9, 0xd1, 0x8a, 0xc7, 0x1a, 0x02, 0x27,
68668c2ecf20Sopenharmony_ci	0x20, 0x77, 0x10, 0xe5, 0xc8, 0xd4, 0x4a, 0x47,
68678c2ecf20Sopenharmony_ci	0xe5, 0xdf, 0x5f, 0x01, 0xaa, 0xb0, 0xd4, 0x10,
68688c2ecf20Sopenharmony_ci	0xbb, 0x69, 0xe3, 0x36, 0xc8, 0xe1, 0x3d, 0x43,
68698c2ecf20Sopenharmony_ci	0xfb, 0x86, 0xcd, 0xcc, 0xbf, 0xf4, 0x88, 0xe0,
68708c2ecf20Sopenharmony_ci	0x20, 0xca, 0xb7, 0x1b, 0xf1, 0x2f, 0x5c, 0xee,
68718c2ecf20Sopenharmony_ci	0xd4, 0xd3, 0xa3, 0xcc, 0xa4, 0x1e, 0x1c, 0x47,
68728c2ecf20Sopenharmony_ci	0xfb, 0xbf, 0xfc, 0xa2, 0x41, 0x55, 0x9d, 0xf6,
68738c2ecf20Sopenharmony_ci	0x5a, 0x5e, 0x65, 0x32, 0x34, 0x7b, 0x52, 0x8d,
68748c2ecf20Sopenharmony_ci	0xd5, 0xd0, 0x20, 0x60, 0x03, 0xab, 0x3f, 0x8c,
68758c2ecf20Sopenharmony_ci	0xd4, 0x21, 0xea, 0x2a, 0xd9, 0xc4, 0xd0, 0xd3,
68768c2ecf20Sopenharmony_ci	0x65, 0xd8, 0x7a, 0x13, 0x28, 0x62, 0x32, 0x4b,
68778c2ecf20Sopenharmony_ci	0x2c, 0x87, 0x93, 0xa8, 0xb4, 0x52, 0x45, 0x09,
68788c2ecf20Sopenharmony_ci	0x44, 0xec, 0xec, 0xc3, 0x17, 0xdb, 0x9a, 0x4d,
68798c2ecf20Sopenharmony_ci	0x5c, 0xa9, 0x11, 0xd4, 0x7d, 0xaf, 0x9e, 0xf1,
68808c2ecf20Sopenharmony_ci	0x2d, 0xb2, 0x66, 0xc5, 0x1d, 0xed, 0xb7, 0xcd,
68818c2ecf20Sopenharmony_ci	0x0b, 0x25, 0x5e, 0x30, 0x47, 0x3f, 0x40, 0xf4,
68828c2ecf20Sopenharmony_ci	0xa1, 0xa0, 0x00, 0x94, 0x10, 0xc5, 0x6a, 0x63,
68838c2ecf20Sopenharmony_ci	0x1a, 0xd5, 0x88, 0x92, 0x8e, 0x82, 0x39, 0x87,
68848c2ecf20Sopenharmony_ci	0x3c, 0x78, 0x65, 0x58, 0x42, 0x75, 0x5b, 0xdd,
68858c2ecf20Sopenharmony_ci	0x77, 0x3e, 0x09, 0x4e, 0x76, 0x5b, 0xe6, 0x0e,
68868c2ecf20Sopenharmony_ci	0x4d, 0x38, 0xb2, 0xc0, 0xb8, 0x95, 0x01, 0x7a,
68878c2ecf20Sopenharmony_ci	0x10, 0xe0, 0xfb, 0x07, 0xf2, 0xab, 0x2d, 0x8c,
68888c2ecf20Sopenharmony_ci	0x32, 0xed, 0x2b, 0xc0, 0x46, 0xc2, 0xf5, 0x38,
68898c2ecf20Sopenharmony_ci	0x83, 0xf0, 0x17, 0xec, 0xc1, 0x20, 0x6a, 0x9a,
68908c2ecf20Sopenharmony_ci	0x0b, 0x00, 0xa0, 0x98, 0x22, 0x50, 0x23, 0xd5,
68918c2ecf20Sopenharmony_ci	0x80, 0x6b, 0xf6, 0x1f, 0xc3, 0xcc, 0x97, 0xc9,
68928c2ecf20Sopenharmony_ci	0x24, 0x9f, 0xf3, 0xaf, 0x43, 0x14, 0xd5, 0xa0
68938c2ecf20Sopenharmony_ci};
68948c2ecf20Sopenharmony_cistatic const u8 dec_output010[] __initconst = {
68958c2ecf20Sopenharmony_ci	0x42, 0x93, 0xe4, 0xeb, 0x97, 0xb0, 0x57, 0xbf,
68968c2ecf20Sopenharmony_ci	0x1a, 0x8b, 0x1f, 0xe4, 0x5f, 0x36, 0x20, 0x3c,
68978c2ecf20Sopenharmony_ci	0xef, 0x0a, 0xa9, 0x48, 0x5f, 0x5f, 0x37, 0x22,
68988c2ecf20Sopenharmony_ci	0x3a, 0xde, 0xe3, 0xae, 0xbe, 0xad, 0x07, 0xcc,
68998c2ecf20Sopenharmony_ci	0xb1, 0xf6, 0xf5, 0xf9, 0x56, 0xdd, 0xe7, 0x16,
69008c2ecf20Sopenharmony_ci	0x1e, 0x7f, 0xdf, 0x7a, 0x9e, 0x75, 0xb7, 0xc7,
69018c2ecf20Sopenharmony_ci	0xbe, 0xbe, 0x8a, 0x36, 0x04, 0xc0, 0x10, 0xf4,
69028c2ecf20Sopenharmony_ci	0x95, 0x20, 0x03, 0xec, 0xdc, 0x05, 0xa1, 0x7d,
69038c2ecf20Sopenharmony_ci	0xc4, 0xa9, 0x2c, 0x82, 0xd0, 0xbc, 0x8b, 0xc5,
69048c2ecf20Sopenharmony_ci	0xc7, 0x45, 0x50, 0xf6, 0xa2, 0x1a, 0xb5, 0x46,
69058c2ecf20Sopenharmony_ci	0x3b, 0x73, 0x02, 0xa6, 0x83, 0x4b, 0x73, 0x82,
69068c2ecf20Sopenharmony_ci	0x58, 0x5e, 0x3b, 0x65, 0x2f, 0x0e, 0xfd, 0x2b,
69078c2ecf20Sopenharmony_ci	0x59, 0x16, 0xce, 0xa1, 0x60, 0x9c, 0xe8, 0x3a,
69088c2ecf20Sopenharmony_ci	0x99, 0xed, 0x8d, 0x5a, 0xcf, 0xf6, 0x83, 0xaf,
69098c2ecf20Sopenharmony_ci	0xba, 0xd7, 0x73, 0x73, 0x40, 0x97, 0x3d, 0xca,
69108c2ecf20Sopenharmony_ci	0xef, 0x07, 0x57, 0xe6, 0xd9, 0x70, 0x0e, 0x95,
69118c2ecf20Sopenharmony_ci	0xae, 0xa6, 0x8d, 0x04, 0xcc, 0xee, 0xf7, 0x09,
69128c2ecf20Sopenharmony_ci	0x31, 0x77, 0x12, 0xa3, 0x23, 0x97, 0x62, 0xb3,
69138c2ecf20Sopenharmony_ci	0x7b, 0x32, 0xfb, 0x80, 0x14, 0x48, 0x81, 0xc3,
69148c2ecf20Sopenharmony_ci	0xe5, 0xea, 0x91, 0x39, 0x52, 0x81, 0xa2, 0x4f,
69158c2ecf20Sopenharmony_ci	0xe4, 0xb3, 0x09, 0xff, 0xde, 0x5e, 0xe9, 0x58,
69168c2ecf20Sopenharmony_ci	0x84, 0x6e, 0xf9, 0x3d, 0xdf, 0x25, 0xea, 0xad,
69178c2ecf20Sopenharmony_ci	0xae, 0xe6, 0x9a, 0xd1, 0x89, 0x55, 0xd3, 0xde,
69188c2ecf20Sopenharmony_ci	0x6c, 0x52, 0xdb, 0x70, 0xfe, 0x37, 0xce, 0x44,
69198c2ecf20Sopenharmony_ci	0x0a, 0xa8, 0x25, 0x5f, 0x92, 0xc1, 0x33, 0x4a,
69208c2ecf20Sopenharmony_ci	0x4f, 0x9b, 0x62, 0x35, 0xff, 0xce, 0xc0, 0xa9,
69218c2ecf20Sopenharmony_ci	0x60, 0xce, 0x52, 0x00, 0x97, 0x51, 0x35, 0x26,
69228c2ecf20Sopenharmony_ci	0x2e, 0xb9, 0x36, 0xa9, 0x87, 0x6e, 0x1e, 0xcc,
69238c2ecf20Sopenharmony_ci	0x91, 0x78, 0x53, 0x98, 0x86, 0x5b, 0x9c, 0x74,
69248c2ecf20Sopenharmony_ci	0x7d, 0x88, 0x33, 0xe1, 0xdf, 0x37, 0x69, 0x2b,
69258c2ecf20Sopenharmony_ci	0xbb, 0xf1, 0x4d, 0xf4, 0xd1, 0xf1, 0x39, 0x93,
69268c2ecf20Sopenharmony_ci	0x17, 0x51, 0x19, 0xe3, 0x19, 0x1e, 0x76, 0x37,
69278c2ecf20Sopenharmony_ci	0x25, 0xfb, 0x09, 0x27, 0x6a, 0xab, 0x67, 0x6f,
69288c2ecf20Sopenharmony_ci	0x14, 0x12, 0x64, 0xe7, 0xc4, 0x07, 0xdf, 0x4d,
69298c2ecf20Sopenharmony_ci	0x17, 0xbb, 0x6d, 0xe0, 0xe9, 0xb9, 0xab, 0xca,
69308c2ecf20Sopenharmony_ci	0x10, 0x68, 0xaf, 0x7e, 0xb7, 0x33, 0x54, 0x73,
69318c2ecf20Sopenharmony_ci	0x07, 0x6e, 0xf7, 0x81, 0x97, 0x9c, 0x05, 0x6f,
69328c2ecf20Sopenharmony_ci	0x84, 0x5f, 0xd2, 0x42, 0xfb, 0x38, 0xcf, 0xd1,
69338c2ecf20Sopenharmony_ci	0x2f, 0x14, 0x30, 0x88, 0x98, 0x4d, 0x5a, 0xa9,
69348c2ecf20Sopenharmony_ci	0x76, 0xd5, 0x4f, 0x3e, 0x70, 0x6c, 0x85, 0x76,
69358c2ecf20Sopenharmony_ci	0xd7, 0x01, 0xa0, 0x1a, 0xc8, 0x4e, 0xaa, 0xac,
69368c2ecf20Sopenharmony_ci	0x78, 0xfe, 0x46, 0xde, 0x6a, 0x05, 0x46, 0xa7,
69378c2ecf20Sopenharmony_ci	0x43, 0x0c, 0xb9, 0xde, 0xb9, 0x68, 0xfb, 0xce,
69388c2ecf20Sopenharmony_ci	0x42, 0x99, 0x07, 0x4d, 0x0b, 0x3b, 0x5a, 0x30,
69398c2ecf20Sopenharmony_ci	0x35, 0xa8, 0xf9, 0x3a, 0x73, 0xef, 0x0f, 0xdb,
69408c2ecf20Sopenharmony_ci	0x1e, 0x16, 0x42, 0xc4, 0xba, 0xae, 0x58, 0xaa,
69418c2ecf20Sopenharmony_ci	0xf8, 0xe5, 0x75, 0x2f, 0x1b, 0x15, 0x5c, 0xfd,
69428c2ecf20Sopenharmony_ci	0x0a, 0x97, 0xd0, 0xe4, 0x37, 0x83, 0x61, 0x5f,
69438c2ecf20Sopenharmony_ci	0x43, 0xa6, 0xc7, 0x3f, 0x38, 0x59, 0xe6, 0xeb,
69448c2ecf20Sopenharmony_ci	0xa3, 0x90, 0xc3, 0xaa, 0xaa, 0x5a, 0xd3, 0x34,
69458c2ecf20Sopenharmony_ci	0xd4, 0x17, 0xc8, 0x65, 0x3e, 0x57, 0xbc, 0x5e,
69468c2ecf20Sopenharmony_ci	0xdd, 0x9e, 0xb7, 0xf0, 0x2e, 0x5b, 0xb2, 0x1f,
69478c2ecf20Sopenharmony_ci	0x8a, 0x08, 0x0d, 0x45, 0x91, 0x0b, 0x29, 0x53,
69488c2ecf20Sopenharmony_ci	0x4f, 0x4c, 0x5a, 0x73, 0x56, 0xfe, 0xaf, 0x41,
69498c2ecf20Sopenharmony_ci	0x01, 0x39, 0x0a, 0x24, 0x3c, 0x7e, 0xbe, 0x4e,
69508c2ecf20Sopenharmony_ci	0x53, 0xf3, 0xeb, 0x06, 0x66, 0x51, 0x28, 0x1d,
69518c2ecf20Sopenharmony_ci	0xbd, 0x41, 0x0a, 0x01, 0xab, 0x16, 0x47, 0x27,
69528c2ecf20Sopenharmony_ci	0x47, 0x47, 0xf7, 0xcb, 0x46, 0x0a, 0x70, 0x9e,
69538c2ecf20Sopenharmony_ci	0x01, 0x9c, 0x09, 0xe1, 0x2a, 0x00, 0x1a, 0xd8,
69548c2ecf20Sopenharmony_ci	0xd4, 0x79, 0x9d, 0x80, 0x15, 0x8e, 0x53, 0x2a,
69558c2ecf20Sopenharmony_ci	0x65, 0x83, 0x78, 0x3e, 0x03, 0x00, 0x07, 0x12,
69568c2ecf20Sopenharmony_ci	0x1f, 0x33, 0x3e, 0x7b, 0x13, 0x37, 0xf1, 0xc3,
69578c2ecf20Sopenharmony_ci	0xef, 0xb7, 0xc1, 0x20, 0x3c, 0x3e, 0x67, 0x66,
69588c2ecf20Sopenharmony_ci	0x5d, 0x88, 0xa7, 0x7d, 0x33, 0x50, 0x77, 0xb0,
69598c2ecf20Sopenharmony_ci	0x28, 0x8e, 0xe7, 0x2c, 0x2e, 0x7a, 0xf4, 0x3c,
69608c2ecf20Sopenharmony_ci	0x8d, 0x74, 0x83, 0xaf, 0x8e, 0x87, 0x0f, 0xe4,
69618c2ecf20Sopenharmony_ci	0x50, 0xff, 0x84, 0x5c, 0x47, 0x0c, 0x6a, 0x49,
69628c2ecf20Sopenharmony_ci	0xbf, 0x42, 0x86, 0x77, 0x15, 0x48, 0xa5, 0x90,
69638c2ecf20Sopenharmony_ci	0x5d, 0x93, 0xd6, 0x2a, 0x11, 0xd5, 0xd5, 0x11,
69648c2ecf20Sopenharmony_ci	0xaa, 0xce, 0xe7, 0x6f, 0xa5, 0xb0, 0x09, 0x2c,
69658c2ecf20Sopenharmony_ci	0x8d, 0xd3, 0x92, 0xf0, 0x5a, 0x2a, 0xda, 0x5b,
69668c2ecf20Sopenharmony_ci	0x1e, 0xd5, 0x9a, 0xc4, 0xc4, 0xf3, 0x49, 0x74,
69678c2ecf20Sopenharmony_ci	0x41, 0xca, 0xe8, 0xc1, 0xf8, 0x44, 0xd6, 0x3c,
69688c2ecf20Sopenharmony_ci	0xae, 0x6c, 0x1d, 0x9a, 0x30, 0x04, 0x4d, 0x27,
69698c2ecf20Sopenharmony_ci	0x0e, 0xb1, 0x5f, 0x59, 0xa2, 0x24, 0xe8, 0xe1,
69708c2ecf20Sopenharmony_ci	0x98, 0xc5, 0x6a, 0x4c, 0xfe, 0x41, 0xd2, 0x27,
69718c2ecf20Sopenharmony_ci	0x42, 0x52, 0xe1, 0xe9, 0x7d, 0x62, 0xe4, 0x88,
69728c2ecf20Sopenharmony_ci	0x0f, 0xad, 0xb2, 0x70, 0xcb, 0x9d, 0x4c, 0x27,
69738c2ecf20Sopenharmony_ci	0x2e, 0x76, 0x1e, 0x1a, 0x63, 0x65, 0xf5, 0x3b,
69748c2ecf20Sopenharmony_ci	0xf8, 0x57, 0x69, 0xeb, 0x5b, 0x38, 0x26, 0x39,
69758c2ecf20Sopenharmony_ci	0x33, 0x25, 0x45, 0x3e, 0x91, 0xb8, 0xd8, 0xc7,
69768c2ecf20Sopenharmony_ci	0xd5, 0x42, 0xc0, 0x22, 0x31, 0x74, 0xf4, 0xbc,
69778c2ecf20Sopenharmony_ci	0x0c, 0x23, 0xf1, 0xca, 0xc1, 0x8d, 0xd7, 0xbe,
69788c2ecf20Sopenharmony_ci	0xc9, 0x62, 0xe4, 0x08, 0x1a, 0xcf, 0x36, 0xd5,
69798c2ecf20Sopenharmony_ci	0xfe, 0x55, 0x21, 0x59, 0x91, 0x87, 0x87, 0xdf,
69808c2ecf20Sopenharmony_ci	0x06, 0xdb, 0xdf, 0x96, 0x45, 0x58, 0xda, 0x05,
69818c2ecf20Sopenharmony_ci	0xcd, 0x50, 0x4d, 0xd2, 0x7d, 0x05, 0x18, 0x73,
69828c2ecf20Sopenharmony_ci	0x6a, 0x8d, 0x11, 0x85, 0xa6, 0x88, 0xe8, 0xda,
69838c2ecf20Sopenharmony_ci	0xe6, 0x30, 0x33, 0xa4, 0x89, 0x31, 0x75, 0xbe,
69848c2ecf20Sopenharmony_ci	0x69, 0x43, 0x84, 0x43, 0x50, 0x87, 0xdd, 0x71,
69858c2ecf20Sopenharmony_ci	0x36, 0x83, 0xc3, 0x78, 0x74, 0x24, 0x0a, 0xed,
69868c2ecf20Sopenharmony_ci	0x7b, 0xdb, 0xa4, 0x24, 0x0b, 0xb9, 0x7e, 0x5d,
69878c2ecf20Sopenharmony_ci	0xff, 0xde, 0xb1, 0xef, 0x61, 0x5a, 0x45, 0x33,
69888c2ecf20Sopenharmony_ci	0xf6, 0x17, 0x07, 0x08, 0x98, 0x83, 0x92, 0x0f,
69898c2ecf20Sopenharmony_ci	0x23, 0x6d, 0xe6, 0xaa, 0x17, 0x54, 0xad, 0x6a,
69908c2ecf20Sopenharmony_ci	0xc8, 0xdb, 0x26, 0xbe, 0xb8, 0xb6, 0x08, 0xfa,
69918c2ecf20Sopenharmony_ci	0x68, 0xf1, 0xd7, 0x79, 0x6f, 0x18, 0xb4, 0x9e,
69928c2ecf20Sopenharmony_ci	0x2d, 0x3f, 0x1b, 0x64, 0xaf, 0x8d, 0x06, 0x0e,
69938c2ecf20Sopenharmony_ci	0x49, 0x28, 0xe0, 0x5d, 0x45, 0x68, 0x13, 0x87,
69948c2ecf20Sopenharmony_ci	0xfa, 0xde, 0x40, 0x7b, 0xd2, 0xc3, 0x94, 0xd5,
69958c2ecf20Sopenharmony_ci	0xe1, 0xd9, 0xc2, 0xaf, 0x55, 0x89, 0xeb, 0xb4,
69968c2ecf20Sopenharmony_ci	0x12, 0x59, 0xa8, 0xd4, 0xc5, 0x29, 0x66, 0x38,
69978c2ecf20Sopenharmony_ci	0xe6, 0xac, 0x22, 0x22, 0xd9, 0x64, 0x9b, 0x34,
69988c2ecf20Sopenharmony_ci	0x0a, 0x32, 0x9f, 0xc2, 0xbf, 0x17, 0x6c, 0x3f,
69998c2ecf20Sopenharmony_ci	0x71, 0x7a, 0x38, 0x6b, 0x98, 0xfb, 0x49, 0x36,
70008c2ecf20Sopenharmony_ci	0x89, 0xc9, 0xe2, 0xd6, 0xc7, 0x5d, 0xd0, 0x69,
70018c2ecf20Sopenharmony_ci	0x5f, 0x23, 0x35, 0xc9, 0x30, 0xe2, 0xfd, 0x44,
70028c2ecf20Sopenharmony_ci	0x58, 0x39, 0xd7, 0x97, 0xfb, 0x5c, 0x00, 0xd5,
70038c2ecf20Sopenharmony_ci	0x4f, 0x7a, 0x1a, 0x95, 0x8b, 0x62, 0x4b, 0xce,
70048c2ecf20Sopenharmony_ci	0xe5, 0x91, 0x21, 0x7b, 0x30, 0x00, 0xd6, 0xdd,
70058c2ecf20Sopenharmony_ci	0x6d, 0x02, 0x86, 0x49, 0x0f, 0x3c, 0x1a, 0x27,
70068c2ecf20Sopenharmony_ci	0x3c, 0xd3, 0x0e, 0x71, 0xf2, 0xff, 0xf5, 0x2f,
70078c2ecf20Sopenharmony_ci	0x87, 0xac, 0x67, 0x59, 0x81, 0xa3, 0xf7, 0xf8,
70088c2ecf20Sopenharmony_ci	0xd6, 0x11, 0x0c, 0x84, 0xa9, 0x03, 0xee, 0x2a,
70098c2ecf20Sopenharmony_ci	0xc4, 0xf3, 0x22, 0xab, 0x7c, 0xe2, 0x25, 0xf5,
70108c2ecf20Sopenharmony_ci	0x67, 0xa3, 0xe4, 0x11, 0xe0, 0x59, 0xb3, 0xca,
70118c2ecf20Sopenharmony_ci	0x87, 0xa0, 0xae, 0xc9, 0xa6, 0x62, 0x1b, 0x6e,
70128c2ecf20Sopenharmony_ci	0x4d, 0x02, 0x6b, 0x07, 0x9d, 0xfd, 0xd0, 0x92,
70138c2ecf20Sopenharmony_ci	0x06, 0xe1, 0xb2, 0x9a, 0x4a, 0x1f, 0x1f, 0x13,
70148c2ecf20Sopenharmony_ci	0x49, 0x99, 0x97, 0x08, 0xde, 0x7f, 0x98, 0xaf,
70158c2ecf20Sopenharmony_ci	0x51, 0x98, 0xee, 0x2c, 0xcb, 0xf0, 0x0b, 0xc6,
70168c2ecf20Sopenharmony_ci	0xb6, 0xb7, 0x2d, 0x9a, 0xb1, 0xac, 0xa6, 0xe3,
70178c2ecf20Sopenharmony_ci	0x15, 0x77, 0x9d, 0x6b, 0x1a, 0xe4, 0xfc, 0x8b,
70188c2ecf20Sopenharmony_ci	0xf2, 0x17, 0x59, 0x08, 0x04, 0x58, 0x81, 0x9d,
70198c2ecf20Sopenharmony_ci	0x1b, 0x1b, 0x69, 0x55, 0xc2, 0xb4, 0x3c, 0x1f,
70208c2ecf20Sopenharmony_ci	0x50, 0xf1, 0x7f, 0x77, 0x90, 0x4c, 0x66, 0x40,
70218c2ecf20Sopenharmony_ci	0x5a, 0xc0, 0x33, 0x1f, 0xcb, 0x05, 0x6d, 0x5c,
70228c2ecf20Sopenharmony_ci	0x06, 0x87, 0x52, 0xa2, 0x8f, 0x26, 0xd5, 0x4f
70238c2ecf20Sopenharmony_ci};
70248c2ecf20Sopenharmony_cistatic const u8 dec_assoc010[] __initconst = {
70258c2ecf20Sopenharmony_ci	0xd2, 0xa1, 0x70, 0xdb, 0x7a, 0xf8, 0xfa, 0x27,
70268c2ecf20Sopenharmony_ci	0xba, 0x73, 0x0f, 0xbf, 0x3d, 0x1e, 0x82, 0xb2
70278c2ecf20Sopenharmony_ci};
70288c2ecf20Sopenharmony_cistatic const u8 dec_nonce010[] __initconst = {
70298c2ecf20Sopenharmony_ci	0xdb, 0x92, 0x0f, 0x7f, 0x17, 0x54, 0x0c, 0x30
70308c2ecf20Sopenharmony_ci};
70318c2ecf20Sopenharmony_cistatic const u8 dec_key010[] __initconst = {
70328c2ecf20Sopenharmony_ci	0x47, 0x11, 0xeb, 0x86, 0x2b, 0x2c, 0xab, 0x44,
70338c2ecf20Sopenharmony_ci	0x34, 0xda, 0x7f, 0x57, 0x03, 0x39, 0x0c, 0xaf,
70348c2ecf20Sopenharmony_ci	0x2c, 0x14, 0xfd, 0x65, 0x23, 0xe9, 0x8e, 0x74,
70358c2ecf20Sopenharmony_ci	0xd5, 0x08, 0x68, 0x08, 0xe7, 0xb4, 0x72, 0xd7
70368c2ecf20Sopenharmony_ci};
70378c2ecf20Sopenharmony_ci
70388c2ecf20Sopenharmony_cistatic const u8 dec_input011[] __initconst = {
70398c2ecf20Sopenharmony_ci	0x6a, 0xfc, 0x4b, 0x25, 0xdf, 0xc0, 0xe4, 0xe8,
70408c2ecf20Sopenharmony_ci	0x17, 0x4d, 0x4c, 0xc9, 0x7e, 0xde, 0x3a, 0xcc,
70418c2ecf20Sopenharmony_ci	0x3c, 0xba, 0x6a, 0x77, 0x47, 0xdb, 0xe3, 0x74,
70428c2ecf20Sopenharmony_ci	0x7a, 0x4d, 0x5f, 0x8d, 0x37, 0x55, 0x80, 0x73,
70438c2ecf20Sopenharmony_ci	0x90, 0x66, 0x5d, 0x3a, 0x7d, 0x5d, 0x86, 0x5e,
70448c2ecf20Sopenharmony_ci	0x8d, 0xfd, 0x83, 0xff, 0x4e, 0x74, 0x6f, 0xf9,
70458c2ecf20Sopenharmony_ci	0xe6, 0x70, 0x17, 0x70, 0x3e, 0x96, 0xa7, 0x7e,
70468c2ecf20Sopenharmony_ci	0xcb, 0xab, 0x8f, 0x58, 0x24, 0x9b, 0x01, 0xfd,
70478c2ecf20Sopenharmony_ci	0xcb, 0xe6, 0x4d, 0x9b, 0xf0, 0x88, 0x94, 0x57,
70488c2ecf20Sopenharmony_ci	0x66, 0xef, 0x72, 0x4c, 0x42, 0x6e, 0x16, 0x19,
70498c2ecf20Sopenharmony_ci	0x15, 0xea, 0x70, 0x5b, 0xac, 0x13, 0xdb, 0x9f,
70508c2ecf20Sopenharmony_ci	0x18, 0xe2, 0x3c, 0x26, 0x97, 0xbc, 0xdc, 0x45,
70518c2ecf20Sopenharmony_ci	0x8c, 0x6c, 0x24, 0x69, 0x9c, 0xf7, 0x65, 0x1e,
70528c2ecf20Sopenharmony_ci	0x18, 0x59, 0x31, 0x7c, 0xe4, 0x73, 0xbc, 0x39,
70538c2ecf20Sopenharmony_ci	0x62, 0xc6, 0x5c, 0x9f, 0xbf, 0xfa, 0x90, 0x03,
70548c2ecf20Sopenharmony_ci	0xc9, 0x72, 0x26, 0xb6, 0x1b, 0xc2, 0xb7, 0x3f,
70558c2ecf20Sopenharmony_ci	0xf2, 0x13, 0x77, 0xf2, 0x8d, 0xb9, 0x47, 0xd0,
70568c2ecf20Sopenharmony_ci	0x53, 0xdd, 0xc8, 0x91, 0x83, 0x8b, 0xb1, 0xce,
70578c2ecf20Sopenharmony_ci	0xa3, 0xfe, 0xcd, 0xd9, 0xdd, 0x92, 0x7b, 0xdb,
70588c2ecf20Sopenharmony_ci	0xb8, 0xfb, 0xc9, 0x2d, 0x01, 0x59, 0x39, 0x52,
70598c2ecf20Sopenharmony_ci	0xad, 0x1b, 0xec, 0xcf, 0xd7, 0x70, 0x13, 0x21,
70608c2ecf20Sopenharmony_ci	0xf5, 0x47, 0xaa, 0x18, 0x21, 0x5c, 0xc9, 0x9a,
70618c2ecf20Sopenharmony_ci	0xd2, 0x6b, 0x05, 0x9c, 0x01, 0xa1, 0xda, 0x35,
70628c2ecf20Sopenharmony_ci	0x5d, 0xb3, 0x70, 0xe6, 0xa9, 0x80, 0x8b, 0x91,
70638c2ecf20Sopenharmony_ci	0xb7, 0xb3, 0x5f, 0x24, 0x9a, 0xb7, 0xd1, 0x6b,
70648c2ecf20Sopenharmony_ci	0xa1, 0x1c, 0x50, 0xba, 0x49, 0xe0, 0xee, 0x2e,
70658c2ecf20Sopenharmony_ci	0x75, 0xac, 0x69, 0xc0, 0xeb, 0x03, 0xdd, 0x19,
70668c2ecf20Sopenharmony_ci	0xe5, 0xf6, 0x06, 0xdd, 0xc3, 0xd7, 0x2b, 0x07,
70678c2ecf20Sopenharmony_ci	0x07, 0x30, 0xa7, 0x19, 0x0c, 0xbf, 0xe6, 0x18,
70688c2ecf20Sopenharmony_ci	0xcc, 0xb1, 0x01, 0x11, 0x85, 0x77, 0x1d, 0x96,
70698c2ecf20Sopenharmony_ci	0xa7, 0xa3, 0x00, 0x84, 0x02, 0xa2, 0x83, 0x68,
70708c2ecf20Sopenharmony_ci	0xda, 0x17, 0x27, 0xc8, 0x7f, 0x23, 0xb7, 0xf4,
70718c2ecf20Sopenharmony_ci	0x13, 0x85, 0xcf, 0xdd, 0x7a, 0x7d, 0x24, 0x57,
70728c2ecf20Sopenharmony_ci	0xfe, 0x05, 0x93, 0xf5, 0x74, 0xce, 0xed, 0x0c,
70738c2ecf20Sopenharmony_ci	0x20, 0x98, 0x8d, 0x92, 0x30, 0xa1, 0x29, 0x23,
70748c2ecf20Sopenharmony_ci	0x1a, 0xa0, 0x4f, 0x69, 0x56, 0x4c, 0xe1, 0xc8,
70758c2ecf20Sopenharmony_ci	0xce, 0xf6, 0x9a, 0x0c, 0xa4, 0xfa, 0x04, 0xf6,
70768c2ecf20Sopenharmony_ci	0x62, 0x95, 0xf2, 0xfa, 0xc7, 0x40, 0x68, 0x40,
70778c2ecf20Sopenharmony_ci	0x8f, 0x41, 0xda, 0xb4, 0x26, 0x6f, 0x70, 0xab,
70788c2ecf20Sopenharmony_ci	0x40, 0x61, 0xa4, 0x0e, 0x75, 0xfb, 0x86, 0xeb,
70798c2ecf20Sopenharmony_ci	0x9d, 0x9a, 0x1f, 0xec, 0x76, 0x99, 0xe7, 0xea,
70808c2ecf20Sopenharmony_ci	0xaa, 0x1e, 0x2d, 0xb5, 0xd4, 0xa6, 0x1a, 0xb8,
70818c2ecf20Sopenharmony_ci	0x61, 0x0a, 0x1d, 0x16, 0x5b, 0x98, 0xc2, 0x31,
70828c2ecf20Sopenharmony_ci	0x40, 0xe7, 0x23, 0x1d, 0x66, 0x99, 0xc8, 0xc0,
70838c2ecf20Sopenharmony_ci	0xd7, 0xce, 0xf3, 0x57, 0x40, 0x04, 0x3f, 0xfc,
70848c2ecf20Sopenharmony_ci	0xea, 0xb3, 0xfc, 0xd2, 0xd3, 0x99, 0xa4, 0x94,
70858c2ecf20Sopenharmony_ci	0x69, 0xa0, 0xef, 0xd1, 0x85, 0xb3, 0xa6, 0xb1,
70868c2ecf20Sopenharmony_ci	0x28, 0xbf, 0x94, 0x67, 0x22, 0xc3, 0x36, 0x46,
70878c2ecf20Sopenharmony_ci	0xf8, 0xd2, 0x0f, 0x5f, 0xf4, 0x59, 0x80, 0xe6,
70888c2ecf20Sopenharmony_ci	0x2d, 0x43, 0x08, 0x7d, 0x19, 0x09, 0x97, 0xa7,
70898c2ecf20Sopenharmony_ci	0x4c, 0x3d, 0x8d, 0xba, 0x65, 0x62, 0xa3, 0x71,
70908c2ecf20Sopenharmony_ci	0x33, 0x29, 0x62, 0xdb, 0xc1, 0x33, 0x34, 0x1a,
70918c2ecf20Sopenharmony_ci	0x63, 0x33, 0x16, 0xb6, 0x64, 0x7e, 0xab, 0x33,
70928c2ecf20Sopenharmony_ci	0xf0, 0xe6, 0x26, 0x68, 0xba, 0x1d, 0x2e, 0x38,
70938c2ecf20Sopenharmony_ci	0x08, 0xe6, 0x02, 0xd3, 0x25, 0x2c, 0x47, 0x23,
70948c2ecf20Sopenharmony_ci	0x58, 0x34, 0x0f, 0x9d, 0x63, 0x4f, 0x63, 0xbb,
70958c2ecf20Sopenharmony_ci	0x7f, 0x3b, 0x34, 0x38, 0xa7, 0xb5, 0x8d, 0x65,
70968c2ecf20Sopenharmony_ci	0xd9, 0x9f, 0x79, 0x55, 0x3e, 0x4d, 0xe7, 0x73,
70978c2ecf20Sopenharmony_ci	0xd8, 0xf6, 0x98, 0x97, 0x84, 0x60, 0x9c, 0xc8,
70988c2ecf20Sopenharmony_ci	0xa9, 0x3c, 0xf6, 0xdc, 0x12, 0x5c, 0xe1, 0xbb,
70998c2ecf20Sopenharmony_ci	0x0b, 0x8b, 0x98, 0x9c, 0x9d, 0x26, 0x7c, 0x4a,
71008c2ecf20Sopenharmony_ci	0xe6, 0x46, 0x36, 0x58, 0x21, 0x4a, 0xee, 0xca,
71018c2ecf20Sopenharmony_ci	0xd7, 0x3b, 0xc2, 0x6c, 0x49, 0x2f, 0xe5, 0xd5,
71028c2ecf20Sopenharmony_ci	0x03, 0x59, 0x84, 0x53, 0xcb, 0xfe, 0x92, 0x71,
71038c2ecf20Sopenharmony_ci	0x2e, 0x7c, 0x21, 0xcc, 0x99, 0x85, 0x7f, 0xb8,
71048c2ecf20Sopenharmony_ci	0x74, 0x90, 0x13, 0x42, 0x3f, 0xe0, 0x6b, 0x1d,
71058c2ecf20Sopenharmony_ci	0xf2, 0x4d, 0x54, 0xd4, 0xfc, 0x3a, 0x05, 0xe6,
71068c2ecf20Sopenharmony_ci	0x74, 0xaf, 0xa6, 0xa0, 0x2a, 0x20, 0x23, 0x5d,
71078c2ecf20Sopenharmony_ci	0x34, 0x5c, 0xd9, 0x3e, 0x4e, 0xfa, 0x93, 0xe7,
71088c2ecf20Sopenharmony_ci	0xaa, 0xe9, 0x6f, 0x08, 0x43, 0x67, 0x41, 0xc5,
71098c2ecf20Sopenharmony_ci	0xad, 0xfb, 0x31, 0x95, 0x82, 0x73, 0x32, 0xd8,
71108c2ecf20Sopenharmony_ci	0xa6, 0xa3, 0xed, 0x0e, 0x2d, 0xf6, 0x5f, 0xfd,
71118c2ecf20Sopenharmony_ci	0x80, 0xa6, 0x7a, 0xe0, 0xdf, 0x78, 0x15, 0x29,
71128c2ecf20Sopenharmony_ci	0x74, 0x33, 0xd0, 0x9e, 0x83, 0x86, 0x72, 0x22,
71138c2ecf20Sopenharmony_ci	0x57, 0x29, 0xb9, 0x9e, 0x5d, 0xd3, 0x1a, 0xb5,
71148c2ecf20Sopenharmony_ci	0x96, 0x72, 0x41, 0x3d, 0xf1, 0x64, 0x43, 0x67,
71158c2ecf20Sopenharmony_ci	0xee, 0xaa, 0x5c, 0xd3, 0x9a, 0x96, 0x13, 0x11,
71168c2ecf20Sopenharmony_ci	0x5d, 0xf3, 0x0c, 0x87, 0x82, 0x1e, 0x41, 0x9e,
71178c2ecf20Sopenharmony_ci	0xd0, 0x27, 0xd7, 0x54, 0x3b, 0x67, 0x73, 0x09,
71188c2ecf20Sopenharmony_ci	0x91, 0xe9, 0xd5, 0x36, 0xa7, 0xb5, 0x55, 0xe4,
71198c2ecf20Sopenharmony_ci	0xf3, 0x21, 0x51, 0x49, 0x22, 0x07, 0x55, 0x4f,
71208c2ecf20Sopenharmony_ci	0x44, 0x4b, 0xd2, 0x15, 0x93, 0x17, 0x2a, 0xfa,
71218c2ecf20Sopenharmony_ci	0x4d, 0x4a, 0x57, 0xdb, 0x4c, 0xa6, 0xeb, 0xec,
71228c2ecf20Sopenharmony_ci	0x53, 0x25, 0x6c, 0x21, 0xed, 0x00, 0x4c, 0x3b,
71238c2ecf20Sopenharmony_ci	0xca, 0x14, 0x57, 0xa9, 0xd6, 0x6a, 0xcd, 0x8d,
71248c2ecf20Sopenharmony_ci	0x5e, 0x74, 0xac, 0x72, 0xc1, 0x97, 0xe5, 0x1b,
71258c2ecf20Sopenharmony_ci	0x45, 0x4e, 0xda, 0xfc, 0xcc, 0x40, 0xe8, 0x48,
71268c2ecf20Sopenharmony_ci	0x88, 0x0b, 0xa3, 0xe3, 0x8d, 0x83, 0x42, 0xc3,
71278c2ecf20Sopenharmony_ci	0x23, 0xfd, 0x68, 0xb5, 0x8e, 0xf1, 0x9d, 0x63,
71288c2ecf20Sopenharmony_ci	0x77, 0xe9, 0xa3, 0x8e, 0x8c, 0x26, 0x6b, 0xbd,
71298c2ecf20Sopenharmony_ci	0x72, 0x73, 0x35, 0x0c, 0x03, 0xf8, 0x43, 0x78,
71308c2ecf20Sopenharmony_ci	0x52, 0x71, 0x15, 0x1f, 0x71, 0x5d, 0x6e, 0xed,
71318c2ecf20Sopenharmony_ci	0xb9, 0xcc, 0x86, 0x30, 0xdb, 0x2b, 0xd3, 0x82,
71328c2ecf20Sopenharmony_ci	0x88, 0x23, 0x71, 0x90, 0x53, 0x5c, 0xa9, 0x2f,
71338c2ecf20Sopenharmony_ci	0x76, 0x01, 0xb7, 0x9a, 0xfe, 0x43, 0x55, 0xa3,
71348c2ecf20Sopenharmony_ci	0x04, 0x9b, 0x0e, 0xe4, 0x59, 0xdf, 0xc9, 0xe9,
71358c2ecf20Sopenharmony_ci	0xb1, 0xea, 0x29, 0x28, 0x3c, 0x5c, 0xae, 0x72,
71368c2ecf20Sopenharmony_ci	0x84, 0xb6, 0xc6, 0xeb, 0x0c, 0x27, 0x07, 0x74,
71378c2ecf20Sopenharmony_ci	0x90, 0x0d, 0x31, 0xb0, 0x00, 0x77, 0xe9, 0x40,
71388c2ecf20Sopenharmony_ci	0x70, 0x6f, 0x68, 0xa7, 0xfd, 0x06, 0xec, 0x4b,
71398c2ecf20Sopenharmony_ci	0xc0, 0xb7, 0xac, 0xbc, 0x33, 0xb7, 0x6d, 0x0a,
71408c2ecf20Sopenharmony_ci	0xbd, 0x12, 0x1b, 0x59, 0xcb, 0xdd, 0x32, 0xf5,
71418c2ecf20Sopenharmony_ci	0x1d, 0x94, 0x57, 0x76, 0x9e, 0x0c, 0x18, 0x98,
71428c2ecf20Sopenharmony_ci	0x71, 0xd7, 0x2a, 0xdb, 0x0b, 0x7b, 0xa7, 0x71,
71438c2ecf20Sopenharmony_ci	0xb7, 0x67, 0x81, 0x23, 0x96, 0xae, 0xb9, 0x7e,
71448c2ecf20Sopenharmony_ci	0x32, 0x43, 0x92, 0x8a, 0x19, 0xa0, 0xc4, 0xd4,
71458c2ecf20Sopenharmony_ci	0x3b, 0x57, 0xf9, 0x4a, 0x2c, 0xfb, 0x51, 0x46,
71468c2ecf20Sopenharmony_ci	0xbb, 0xcb, 0x5d, 0xb3, 0xef, 0x13, 0x93, 0x6e,
71478c2ecf20Sopenharmony_ci	0x68, 0x42, 0x54, 0x57, 0xd3, 0x6a, 0x3a, 0x8f,
71488c2ecf20Sopenharmony_ci	0x9d, 0x66, 0xbf, 0xbd, 0x36, 0x23, 0xf5, 0x93,
71498c2ecf20Sopenharmony_ci	0x83, 0x7b, 0x9c, 0xc0, 0xdd, 0xc5, 0x49, 0xc0,
71508c2ecf20Sopenharmony_ci	0x64, 0xed, 0x07, 0x12, 0xb3, 0xe6, 0xe4, 0xe5,
71518c2ecf20Sopenharmony_ci	0x38, 0x95, 0x23, 0xb1, 0xa0, 0x3b, 0x1a, 0x61,
71528c2ecf20Sopenharmony_ci	0xda, 0x17, 0xac, 0xc3, 0x58, 0xdd, 0x74, 0x64,
71538c2ecf20Sopenharmony_ci	0x22, 0x11, 0xe8, 0x32, 0x1d, 0x16, 0x93, 0x85,
71548c2ecf20Sopenharmony_ci	0x99, 0xa5, 0x9c, 0x34, 0x55, 0xb1, 0xe9, 0x20,
71558c2ecf20Sopenharmony_ci	0x72, 0xc9, 0x28, 0x7b, 0x79, 0x00, 0xa1, 0xa6,
71568c2ecf20Sopenharmony_ci	0xa3, 0x27, 0x40, 0x18, 0x8a, 0x54, 0xe0, 0xcc,
71578c2ecf20Sopenharmony_ci	0xe8, 0x4e, 0x8e, 0x43, 0x96, 0xe7, 0x3f, 0xc8,
71588c2ecf20Sopenharmony_ci	0xe9, 0xb2, 0xf9, 0xc9, 0xda, 0x04, 0x71, 0x50,
71598c2ecf20Sopenharmony_ci	0x47, 0xe4, 0xaa, 0xce, 0xa2, 0x30, 0xc8, 0xe4,
71608c2ecf20Sopenharmony_ci	0xac, 0xc7, 0x0d, 0x06, 0x2e, 0xe6, 0xe8, 0x80,
71618c2ecf20Sopenharmony_ci	0x36, 0x29, 0x9e, 0x01, 0xb8, 0xc3, 0xf0, 0xa0,
71628c2ecf20Sopenharmony_ci	0x5d, 0x7a, 0xca, 0x4d, 0xa0, 0x57, 0xbd, 0x2a,
71638c2ecf20Sopenharmony_ci	0x45, 0xa7, 0x7f, 0x9c, 0x93, 0x07, 0x8f, 0x35,
71648c2ecf20Sopenharmony_ci	0x67, 0x92, 0xe3, 0xe9, 0x7f, 0xa8, 0x61, 0x43,
71658c2ecf20Sopenharmony_ci	0x9e, 0x25, 0x4f, 0x33, 0x76, 0x13, 0x6e, 0x12,
71668c2ecf20Sopenharmony_ci	0xb9, 0xdd, 0xa4, 0x7c, 0x08, 0x9f, 0x7c, 0xe7,
71678c2ecf20Sopenharmony_ci	0x0a, 0x8d, 0x84, 0x06, 0xa4, 0x33, 0x17, 0x34,
71688c2ecf20Sopenharmony_ci	0x5e, 0x10, 0x7c, 0xc0, 0xa8, 0x3d, 0x1f, 0x42,
71698c2ecf20Sopenharmony_ci	0x20, 0x51, 0x65, 0x5d, 0x09, 0xc3, 0xaa, 0xc0,
71708c2ecf20Sopenharmony_ci	0xc8, 0x0d, 0xf0, 0x79, 0xbc, 0x20, 0x1b, 0x95,
71718c2ecf20Sopenharmony_ci	0xe7, 0x06, 0x7d, 0x47, 0x20, 0x03, 0x1a, 0x74,
71728c2ecf20Sopenharmony_ci	0xdd, 0xe2, 0xd4, 0xae, 0x38, 0x71, 0x9b, 0xf5,
71738c2ecf20Sopenharmony_ci	0x80, 0xec, 0x08, 0x4e, 0x56, 0xba, 0x76, 0x12,
71748c2ecf20Sopenharmony_ci	0x1a, 0xdf, 0x48, 0xf3, 0xae, 0xb3, 0xe6, 0xe6,
71758c2ecf20Sopenharmony_ci	0xbe, 0xc0, 0x91, 0x2e, 0x01, 0xb3, 0x01, 0x86,
71768c2ecf20Sopenharmony_ci	0xa2, 0xb9, 0x52, 0xd1, 0x21, 0xae, 0xd4, 0x97,
71778c2ecf20Sopenharmony_ci	0x1d, 0xef, 0x41, 0x12, 0x95, 0x3d, 0x48, 0x45,
71788c2ecf20Sopenharmony_ci	0x1c, 0x56, 0x32, 0x8f, 0xb8, 0x43, 0xbb, 0x19,
71798c2ecf20Sopenharmony_ci	0xf3, 0xca, 0xe9, 0xeb, 0x6d, 0x84, 0xbe, 0x86,
71808c2ecf20Sopenharmony_ci	0x06, 0xe2, 0x36, 0xb2, 0x62, 0x9d, 0xd3, 0x4c,
71818c2ecf20Sopenharmony_ci	0x48, 0x18, 0x54, 0x13, 0x4e, 0xcf, 0xfd, 0xba,
71828c2ecf20Sopenharmony_ci	0x84, 0xb9, 0x30, 0x53, 0xcf, 0xfb, 0xb9, 0x29,
71838c2ecf20Sopenharmony_ci	0x8f, 0xdc, 0x9f, 0xef, 0x60, 0x0b, 0x64, 0xf6,
71848c2ecf20Sopenharmony_ci	0x8b, 0xee, 0xa6, 0x91, 0xc2, 0x41, 0x6c, 0xf6,
71858c2ecf20Sopenharmony_ci	0xfa, 0x79, 0x67, 0x4b, 0xc1, 0x3f, 0xaf, 0x09,
71868c2ecf20Sopenharmony_ci	0x81, 0xd4, 0x5d, 0xcb, 0x09, 0xdf, 0x36, 0x31,
71878c2ecf20Sopenharmony_ci	0xc0, 0x14, 0x3c, 0x7c, 0x0e, 0x65, 0x95, 0x99,
71888c2ecf20Sopenharmony_ci	0x6d, 0xa3, 0xf4, 0xd7, 0x38, 0xee, 0x1a, 0x2b,
71898c2ecf20Sopenharmony_ci	0x37, 0xe2, 0xa4, 0x3b, 0x4b, 0xd0, 0x65, 0xca,
71908c2ecf20Sopenharmony_ci	0xf8, 0xc3, 0xe8, 0x15, 0x20, 0xef, 0xf2, 0x00,
71918c2ecf20Sopenharmony_ci	0xfd, 0x01, 0x09, 0xc5, 0xc8, 0x17, 0x04, 0x93,
71928c2ecf20Sopenharmony_ci	0xd0, 0x93, 0x03, 0x55, 0xc5, 0xfe, 0x32, 0xa3,
71938c2ecf20Sopenharmony_ci	0x3e, 0x28, 0x2d, 0x3b, 0x93, 0x8a, 0xcc, 0x07,
71948c2ecf20Sopenharmony_ci	0x72, 0x80, 0x8b, 0x74, 0x16, 0x24, 0xbb, 0xda,
71958c2ecf20Sopenharmony_ci	0x94, 0x39, 0x30, 0x8f, 0xb1, 0xcd, 0x4a, 0x90,
71968c2ecf20Sopenharmony_ci	0x92, 0x7c, 0x14, 0x8f, 0x95, 0x4e, 0xac, 0x9b,
71978c2ecf20Sopenharmony_ci	0xd8, 0x8f, 0x1a, 0x87, 0xa4, 0x32, 0x27, 0x8a,
71988c2ecf20Sopenharmony_ci	0xba, 0xf7, 0x41, 0xcf, 0x84, 0x37, 0x19, 0xe6,
71998c2ecf20Sopenharmony_ci	0x06, 0xf5, 0x0e, 0xcf, 0x36, 0xf5, 0x9e, 0x6c,
72008c2ecf20Sopenharmony_ci	0xde, 0xbc, 0xff, 0x64, 0x7e, 0x4e, 0x59, 0x57,
72018c2ecf20Sopenharmony_ci	0x48, 0xfe, 0x14, 0xf7, 0x9c, 0x93, 0x5d, 0x15,
72028c2ecf20Sopenharmony_ci	0xad, 0xcc, 0x11, 0xb1, 0x17, 0x18, 0xb2, 0x7e,
72038c2ecf20Sopenharmony_ci	0xcc, 0xab, 0xe9, 0xce, 0x7d, 0x77, 0x5b, 0x51,
72048c2ecf20Sopenharmony_ci	0x1b, 0x1e, 0x20, 0xa8, 0x32, 0x06, 0x0e, 0x75,
72058c2ecf20Sopenharmony_ci	0x93, 0xac, 0xdb, 0x35, 0x37, 0x1f, 0xe9, 0x19,
72068c2ecf20Sopenharmony_ci	0x1d, 0xb4, 0x71, 0x97, 0xd6, 0x4e, 0x2c, 0x08,
72078c2ecf20Sopenharmony_ci	0xa5, 0x13, 0xf9, 0x0e, 0x7e, 0x78, 0x6e, 0x14,
72088c2ecf20Sopenharmony_ci	0xe0, 0xa9, 0xb9, 0x96, 0x4c, 0x80, 0x82, 0xba,
72098c2ecf20Sopenharmony_ci	0x17, 0xb3, 0x9d, 0x69, 0xb0, 0x84, 0x46, 0xff,
72108c2ecf20Sopenharmony_ci	0xf9, 0x52, 0x79, 0x94, 0x58, 0x3a, 0x62, 0x90,
72118c2ecf20Sopenharmony_ci	0x15, 0x35, 0x71, 0x10, 0x37, 0xed, 0xa1, 0x8e,
72128c2ecf20Sopenharmony_ci	0x53, 0x6e, 0xf4, 0x26, 0x57, 0x93, 0x15, 0x93,
72138c2ecf20Sopenharmony_ci	0xf6, 0x81, 0x2c, 0x5a, 0x10, 0xda, 0x92, 0xad,
72148c2ecf20Sopenharmony_ci	0x2f, 0xdb, 0x28, 0x31, 0x2d, 0x55, 0x04, 0xd2,
72158c2ecf20Sopenharmony_ci	0x06, 0x28, 0x8c, 0x1e, 0xdc, 0xea, 0x54, 0xac,
72168c2ecf20Sopenharmony_ci	0xff, 0xb7, 0x6c, 0x30, 0x15, 0xd4, 0xb4, 0x0d,
72178c2ecf20Sopenharmony_ci	0x00, 0x93, 0x57, 0xdd, 0xd2, 0x07, 0x07, 0x06,
72188c2ecf20Sopenharmony_ci	0xd9, 0x43, 0x9b, 0xcd, 0x3a, 0xf4, 0x7d, 0x4c,
72198c2ecf20Sopenharmony_ci	0x36, 0x5d, 0x23, 0xa2, 0xcc, 0x57, 0x40, 0x91,
72208c2ecf20Sopenharmony_ci	0xe9, 0x2c, 0x2f, 0x2c, 0xd5, 0x30, 0x9b, 0x17,
72218c2ecf20Sopenharmony_ci	0xb0, 0xc9, 0xf7, 0xa7, 0x2f, 0xd1, 0x93, 0x20,
72228c2ecf20Sopenharmony_ci	0x6b, 0xc6, 0xc1, 0xe4, 0x6f, 0xcb, 0xd1, 0xe7,
72238c2ecf20Sopenharmony_ci	0x09, 0x0f, 0x9e, 0xdc, 0xaa, 0x9f, 0x2f, 0xdf,
72248c2ecf20Sopenharmony_ci	0x56, 0x9f, 0xd4, 0x33, 0x04, 0xaf, 0xd3, 0x6c,
72258c2ecf20Sopenharmony_ci	0x58, 0x61, 0xf0, 0x30, 0xec, 0xf2, 0x7f, 0xf2,
72268c2ecf20Sopenharmony_ci	0x9c, 0xdf, 0x39, 0xbb, 0x6f, 0xa2, 0x8c, 0x7e,
72278c2ecf20Sopenharmony_ci	0xc4, 0x22, 0x51, 0x71, 0xc0, 0x4d, 0x14, 0x1a,
72288c2ecf20Sopenharmony_ci	0xc4, 0xcd, 0x04, 0xd9, 0x87, 0x08, 0x50, 0x05,
72298c2ecf20Sopenharmony_ci	0xcc, 0xaf, 0xf6, 0xf0, 0x8f, 0x92, 0x54, 0x58,
72308c2ecf20Sopenharmony_ci	0xc2, 0xc7, 0x09, 0x7a, 0x59, 0x02, 0x05, 0xe8,
72318c2ecf20Sopenharmony_ci	0xb0, 0x86, 0xd9, 0xbf, 0x7b, 0x35, 0x51, 0x4d,
72328c2ecf20Sopenharmony_ci	0xaf, 0x08, 0x97, 0x2c, 0x65, 0xda, 0x2a, 0x71,
72338c2ecf20Sopenharmony_ci	0x3a, 0xa8, 0x51, 0xcc, 0xf2, 0x73, 0x27, 0xc3,
72348c2ecf20Sopenharmony_ci	0xfd, 0x62, 0xcf, 0xe3, 0xb2, 0xca, 0xcb, 0xbe,
72358c2ecf20Sopenharmony_ci	0x1a, 0x0a, 0xa1, 0x34, 0x7b, 0x77, 0xc4, 0x62,
72368c2ecf20Sopenharmony_ci	0x68, 0x78, 0x5f, 0x94, 0x07, 0x04, 0x65, 0x16,
72378c2ecf20Sopenharmony_ci	0x4b, 0x61, 0xcb, 0xff, 0x75, 0x26, 0x50, 0x66,
72388c2ecf20Sopenharmony_ci	0x1f, 0x6e, 0x93, 0xf8, 0xc5, 0x51, 0xeb, 0xa4,
72398c2ecf20Sopenharmony_ci	0x4a, 0x48, 0x68, 0x6b, 0xe2, 0x5e, 0x44, 0xb2,
72408c2ecf20Sopenharmony_ci	0x50, 0x2c, 0x6c, 0xae, 0x79, 0x4e, 0x66, 0x35,
72418c2ecf20Sopenharmony_ci	0x81, 0x50, 0xac, 0xbc, 0x3f, 0xb1, 0x0c, 0xf3,
72428c2ecf20Sopenharmony_ci	0x05, 0x3c, 0x4a, 0xa3, 0x6c, 0x2a, 0x79, 0xb4,
72438c2ecf20Sopenharmony_ci	0xb7, 0xab, 0xca, 0xc7, 0x9b, 0x8e, 0xcd, 0x5f,
72448c2ecf20Sopenharmony_ci	0x11, 0x03, 0xcb, 0x30, 0xa3, 0xab, 0xda, 0xfe,
72458c2ecf20Sopenharmony_ci	0x64, 0xb9, 0xbb, 0xd8, 0x5e, 0x3a, 0x1a, 0x56,
72468c2ecf20Sopenharmony_ci	0xe5, 0x05, 0x48, 0x90, 0x1e, 0x61, 0x69, 0x1b,
72478c2ecf20Sopenharmony_ci	0x22, 0xe6, 0x1a, 0x3c, 0x75, 0xad, 0x1f, 0x37,
72488c2ecf20Sopenharmony_ci	0x28, 0xdc, 0xe4, 0x6d, 0xbd, 0x42, 0xdc, 0xd3,
72498c2ecf20Sopenharmony_ci	0xc8, 0xb6, 0x1c, 0x48, 0xfe, 0x94, 0x77, 0x7f,
72508c2ecf20Sopenharmony_ci	0xbd, 0x62, 0xac, 0xa3, 0x47, 0x27, 0xcf, 0x5f,
72518c2ecf20Sopenharmony_ci	0xd9, 0xdb, 0xaf, 0xec, 0xf7, 0x5e, 0xc1, 0xb0,
72528c2ecf20Sopenharmony_ci	0x9d, 0x01, 0x26, 0x99, 0x7e, 0x8f, 0x03, 0x70,
72538c2ecf20Sopenharmony_ci	0xb5, 0x42, 0xbe, 0x67, 0x28, 0x1b, 0x7c, 0xbd,
72548c2ecf20Sopenharmony_ci	0x61, 0x21, 0x97, 0xcc, 0x5c, 0xe1, 0x97, 0x8f,
72558c2ecf20Sopenharmony_ci	0x8d, 0xde, 0x2b, 0xaa, 0xa7, 0x71, 0x1d, 0x1e,
72568c2ecf20Sopenharmony_ci	0x02, 0x73, 0x70, 0x58, 0x32, 0x5b, 0x1d, 0x67,
72578c2ecf20Sopenharmony_ci	0x3d, 0xe0, 0x74, 0x4f, 0x03, 0xf2, 0x70, 0x51,
72588c2ecf20Sopenharmony_ci	0x79, 0xf1, 0x61, 0x70, 0x15, 0x74, 0x9d, 0x23,
72598c2ecf20Sopenharmony_ci	0x89, 0xde, 0xac, 0xfd, 0xde, 0xd0, 0x1f, 0xc3,
72608c2ecf20Sopenharmony_ci	0x87, 0x44, 0x35, 0x4b, 0xe5, 0xb0, 0x60, 0xc5,
72618c2ecf20Sopenharmony_ci	0x22, 0xe4, 0x9e, 0xca, 0xeb, 0xd5, 0x3a, 0x09,
72628c2ecf20Sopenharmony_ci	0x45, 0xa4, 0xdb, 0xfa, 0x3f, 0xeb, 0x1b, 0xc7,
72638c2ecf20Sopenharmony_ci	0xc8, 0x14, 0x99, 0x51, 0x92, 0x10, 0xed, 0xed,
72648c2ecf20Sopenharmony_ci	0x28, 0xe0, 0xa1, 0xf8, 0x26, 0xcf, 0xcd, 0xcb,
72658c2ecf20Sopenharmony_ci	0x63, 0xa1, 0x3b, 0xe3, 0xdf, 0x7e, 0xfe, 0xa6,
72668c2ecf20Sopenharmony_ci	0xf0, 0x81, 0x9a, 0xbf, 0x55, 0xde, 0x54, 0xd5,
72678c2ecf20Sopenharmony_ci	0x56, 0x60, 0x98, 0x10, 0x68, 0xf4, 0x38, 0x96,
72688c2ecf20Sopenharmony_ci	0x8e, 0x6f, 0x1d, 0x44, 0x7f, 0xd6, 0x2f, 0xfe,
72698c2ecf20Sopenharmony_ci	0x55, 0xfb, 0x0c, 0x7e, 0x67, 0xe2, 0x61, 0x44,
72708c2ecf20Sopenharmony_ci	0xed, 0xf2, 0x35, 0x30, 0x5d, 0xe9, 0xc7, 0xd6,
72718c2ecf20Sopenharmony_ci	0x6d, 0xe0, 0xa0, 0xed, 0xf3, 0xfc, 0xd8, 0x3e,
72728c2ecf20Sopenharmony_ci	0x0a, 0x7b, 0xcd, 0xaf, 0x65, 0x68, 0x18, 0xc0,
72738c2ecf20Sopenharmony_ci	0xec, 0x04, 0x1c, 0x74, 0x6d, 0xe2, 0x6e, 0x79,
72748c2ecf20Sopenharmony_ci	0xd4, 0x11, 0x2b, 0x62, 0xd5, 0x27, 0xad, 0x4f,
72758c2ecf20Sopenharmony_ci	0x01, 0x59, 0x73, 0xcc, 0x6a, 0x53, 0xfb, 0x2d,
72768c2ecf20Sopenharmony_ci	0xd5, 0x4e, 0x99, 0x21, 0x65, 0x4d, 0xf5, 0x82,
72778c2ecf20Sopenharmony_ci	0xf7, 0xd8, 0x42, 0xce, 0x6f, 0x3d, 0x36, 0x47,
72788c2ecf20Sopenharmony_ci	0xf1, 0x05, 0x16, 0xe8, 0x1b, 0x6a, 0x8f, 0x93,
72798c2ecf20Sopenharmony_ci	0xf2, 0x8f, 0x37, 0x40, 0x12, 0x28, 0xa3, 0xe6,
72808c2ecf20Sopenharmony_ci	0xb9, 0x17, 0x4a, 0x1f, 0xb1, 0xd1, 0x66, 0x69,
72818c2ecf20Sopenharmony_ci	0x86, 0xc4, 0xfc, 0x97, 0xae, 0x3f, 0x8f, 0x1e,
72828c2ecf20Sopenharmony_ci	0x2b, 0xdf, 0xcd, 0xf9, 0x3c
72838c2ecf20Sopenharmony_ci};
72848c2ecf20Sopenharmony_cistatic const u8 dec_output011[] __initconst = {
72858c2ecf20Sopenharmony_ci	0x7a, 0x57, 0xf2, 0xc7, 0x06, 0x3f, 0x50, 0x7b,
72868c2ecf20Sopenharmony_ci	0x36, 0x1a, 0x66, 0x5c, 0xb9, 0x0e, 0x5e, 0x3b,
72878c2ecf20Sopenharmony_ci	0x45, 0x60, 0xbe, 0x9a, 0x31, 0x9f, 0xff, 0x5d,
72888c2ecf20Sopenharmony_ci	0x66, 0x34, 0xb4, 0xdc, 0xfb, 0x9d, 0x8e, 0xee,
72898c2ecf20Sopenharmony_ci	0x6a, 0x33, 0xa4, 0x07, 0x3c, 0xf9, 0x4c, 0x30,
72908c2ecf20Sopenharmony_ci	0xa1, 0x24, 0x52, 0xf9, 0x50, 0x46, 0x88, 0x20,
72918c2ecf20Sopenharmony_ci	0x02, 0x32, 0x3a, 0x0e, 0x99, 0x63, 0xaf, 0x1f,
72928c2ecf20Sopenharmony_ci	0x15, 0x28, 0x2a, 0x05, 0xff, 0x57, 0x59, 0x5e,
72938c2ecf20Sopenharmony_ci	0x18, 0xa1, 0x1f, 0xd0, 0x92, 0x5c, 0x88, 0x66,
72948c2ecf20Sopenharmony_ci	0x1b, 0x00, 0x64, 0xa5, 0x93, 0x8d, 0x06, 0x46,
72958c2ecf20Sopenharmony_ci	0xb0, 0x64, 0x8b, 0x8b, 0xef, 0x99, 0x05, 0x35,
72968c2ecf20Sopenharmony_ci	0x85, 0xb3, 0xf3, 0x33, 0xbb, 0xec, 0x66, 0xb6,
72978c2ecf20Sopenharmony_ci	0x3d, 0x57, 0x42, 0xe3, 0xb4, 0xc6, 0xaa, 0xb0,
72988c2ecf20Sopenharmony_ci	0x41, 0x2a, 0xb9, 0x59, 0xa9, 0xf6, 0x3e, 0x15,
72998c2ecf20Sopenharmony_ci	0x26, 0x12, 0x03, 0x21, 0x4c, 0x74, 0x43, 0x13,
73008c2ecf20Sopenharmony_ci	0x2a, 0x03, 0x27, 0x09, 0xb4, 0xfb, 0xe7, 0xb7,
73018c2ecf20Sopenharmony_ci	0x40, 0xff, 0x5e, 0xce, 0x48, 0x9a, 0x60, 0xe3,
73028c2ecf20Sopenharmony_ci	0x8b, 0x80, 0x8c, 0x38, 0x2d, 0xcb, 0x93, 0x37,
73038c2ecf20Sopenharmony_ci	0x74, 0x05, 0x52, 0x6f, 0x73, 0x3e, 0xc3, 0xbc,
73048c2ecf20Sopenharmony_ci	0xca, 0x72, 0x0a, 0xeb, 0xf1, 0x3b, 0xa0, 0x95,
73058c2ecf20Sopenharmony_ci	0xdc, 0x8a, 0xc4, 0xa9, 0xdc, 0xca, 0x44, 0xd8,
73068c2ecf20Sopenharmony_ci	0x08, 0x63, 0x6a, 0x36, 0xd3, 0x3c, 0xb8, 0xac,
73078c2ecf20Sopenharmony_ci	0x46, 0x7d, 0xfd, 0xaa, 0xeb, 0x3e, 0x0f, 0x45,
73088c2ecf20Sopenharmony_ci	0x8f, 0x49, 0xda, 0x2b, 0xf2, 0x12, 0xbd, 0xaf,
73098c2ecf20Sopenharmony_ci	0x67, 0x8a, 0x63, 0x48, 0x4b, 0x55, 0x5f, 0x6d,
73108c2ecf20Sopenharmony_ci	0x8c, 0xb9, 0x76, 0x34, 0x84, 0xae, 0xc2, 0xfc,
73118c2ecf20Sopenharmony_ci	0x52, 0x64, 0x82, 0xf7, 0xb0, 0x06, 0xf0, 0x45,
73128c2ecf20Sopenharmony_ci	0x73, 0x12, 0x50, 0x30, 0x72, 0xea, 0x78, 0x9a,
73138c2ecf20Sopenharmony_ci	0xa8, 0xaf, 0xb5, 0xe3, 0xbb, 0x77, 0x52, 0xec,
73148c2ecf20Sopenharmony_ci	0x59, 0x84, 0xbf, 0x6b, 0x8f, 0xce, 0x86, 0x5e,
73158c2ecf20Sopenharmony_ci	0x1f, 0x23, 0xe9, 0xfb, 0x08, 0x86, 0xf7, 0x10,
73168c2ecf20Sopenharmony_ci	0xb9, 0xf2, 0x44, 0x96, 0x44, 0x63, 0xa9, 0xa8,
73178c2ecf20Sopenharmony_ci	0x78, 0x00, 0x23, 0xd6, 0xc7, 0xe7, 0x6e, 0x66,
73188c2ecf20Sopenharmony_ci	0x4f, 0xcc, 0xee, 0x15, 0xb3, 0xbd, 0x1d, 0xa0,
73198c2ecf20Sopenharmony_ci	0xe5, 0x9c, 0x1b, 0x24, 0x2c, 0x4d, 0x3c, 0x62,
73208c2ecf20Sopenharmony_ci	0x35, 0x9c, 0x88, 0x59, 0x09, 0xdd, 0x82, 0x1b,
73218c2ecf20Sopenharmony_ci	0xcf, 0x0a, 0x83, 0x6b, 0x3f, 0xae, 0x03, 0xc4,
73228c2ecf20Sopenharmony_ci	0xb4, 0xdd, 0x7e, 0x5b, 0x28, 0x76, 0x25, 0x96,
73238c2ecf20Sopenharmony_ci	0xd9, 0xc9, 0x9d, 0x5f, 0x86, 0xfa, 0xf6, 0xd7,
73248c2ecf20Sopenharmony_ci	0xd2, 0xe6, 0x76, 0x1d, 0x0f, 0xa1, 0xdc, 0x74,
73258c2ecf20Sopenharmony_ci	0x05, 0x1b, 0x1d, 0xe0, 0xcd, 0x16, 0xb0, 0xa8,
73268c2ecf20Sopenharmony_ci	0x8a, 0x34, 0x7b, 0x15, 0x11, 0x77, 0xe5, 0x7b,
73278c2ecf20Sopenharmony_ci	0x7e, 0x20, 0xf7, 0xda, 0x38, 0xda, 0xce, 0x70,
73288c2ecf20Sopenharmony_ci	0xe9, 0xf5, 0x6c, 0xd9, 0xbe, 0x0c, 0x4c, 0x95,
73298c2ecf20Sopenharmony_ci	0x4c, 0xc2, 0x9b, 0x34, 0x55, 0x55, 0xe1, 0xf3,
73308c2ecf20Sopenharmony_ci	0x46, 0x8e, 0x48, 0x74, 0x14, 0x4f, 0x9d, 0xc9,
73318c2ecf20Sopenharmony_ci	0xf5, 0xe8, 0x1a, 0xf0, 0x11, 0x4a, 0xc1, 0x8d,
73328c2ecf20Sopenharmony_ci	0xe0, 0x93, 0xa0, 0xbe, 0x09, 0x1c, 0x2b, 0x4e,
73338c2ecf20Sopenharmony_ci	0x0f, 0xb2, 0x87, 0x8b, 0x84, 0xfe, 0x92, 0x32,
73348c2ecf20Sopenharmony_ci	0x14, 0xd7, 0x93, 0xdf, 0xe7, 0x44, 0xbc, 0xc5,
73358c2ecf20Sopenharmony_ci	0xae, 0x53, 0x69, 0xd8, 0xb3, 0x79, 0x37, 0x80,
73368c2ecf20Sopenharmony_ci	0xe3, 0x17, 0x5c, 0xec, 0x53, 0x00, 0x9a, 0xe3,
73378c2ecf20Sopenharmony_ci	0x8e, 0xdc, 0x38, 0xb8, 0x66, 0xf0, 0xd3, 0xad,
73388c2ecf20Sopenharmony_ci	0x1d, 0x02, 0x96, 0x86, 0x3e, 0x9d, 0x3b, 0x5d,
73398c2ecf20Sopenharmony_ci	0xa5, 0x7f, 0x21, 0x10, 0xf1, 0x1f, 0x13, 0x20,
73408c2ecf20Sopenharmony_ci	0xf9, 0x57, 0x87, 0x20, 0xf5, 0x5f, 0xf1, 0x17,
73418c2ecf20Sopenharmony_ci	0x48, 0x0a, 0x51, 0x5a, 0xcd, 0x19, 0x03, 0xa6,
73428c2ecf20Sopenharmony_ci	0x5a, 0xd1, 0x12, 0x97, 0xe9, 0x48, 0xe2, 0x1d,
73438c2ecf20Sopenharmony_ci	0x83, 0x75, 0x50, 0xd9, 0x75, 0x7d, 0x6a, 0x82,
73448c2ecf20Sopenharmony_ci	0xa1, 0xf9, 0x4e, 0x54, 0x87, 0x89, 0xc9, 0x0c,
73458c2ecf20Sopenharmony_ci	0xb7, 0x5b, 0x6a, 0x91, 0xc1, 0x9c, 0xb2, 0xa9,
73468c2ecf20Sopenharmony_ci	0xdc, 0x9a, 0xa4, 0x49, 0x0a, 0x6d, 0x0d, 0xbb,
73478c2ecf20Sopenharmony_ci	0xde, 0x86, 0x44, 0xdd, 0x5d, 0x89, 0x2b, 0x96,
73488c2ecf20Sopenharmony_ci	0x0f, 0x23, 0x95, 0xad, 0xcc, 0xa2, 0xb3, 0xb9,
73498c2ecf20Sopenharmony_ci	0x7e, 0x74, 0x38, 0xba, 0x9f, 0x73, 0xae, 0x5f,
73508c2ecf20Sopenharmony_ci	0xf8, 0x68, 0xa2, 0xe0, 0xa9, 0xce, 0xbd, 0x40,
73518c2ecf20Sopenharmony_ci	0xd4, 0x4c, 0x6b, 0xd2, 0x56, 0x62, 0xb0, 0xcc,
73528c2ecf20Sopenharmony_ci	0x63, 0x7e, 0x5b, 0xd3, 0xae, 0xd1, 0x75, 0xce,
73538c2ecf20Sopenharmony_ci	0xbb, 0xb4, 0x5b, 0xa8, 0xf8, 0xb4, 0xac, 0x71,
73548c2ecf20Sopenharmony_ci	0x75, 0xaa, 0xc9, 0x9f, 0xbb, 0x6c, 0xad, 0x0f,
73558c2ecf20Sopenharmony_ci	0x55, 0x5d, 0xe8, 0x85, 0x7d, 0xf9, 0x21, 0x35,
73568c2ecf20Sopenharmony_ci	0xea, 0x92, 0x85, 0x2b, 0x00, 0xec, 0x84, 0x90,
73578c2ecf20Sopenharmony_ci	0x0a, 0x63, 0x96, 0xe4, 0x6b, 0xa9, 0x77, 0xb8,
73588c2ecf20Sopenharmony_ci	0x91, 0xf8, 0x46, 0x15, 0x72, 0x63, 0x70, 0x01,
73598c2ecf20Sopenharmony_ci	0x40, 0xa3, 0xa5, 0x76, 0x62, 0x2b, 0xbf, 0xf1,
73608c2ecf20Sopenharmony_ci	0xe5, 0x8d, 0x9f, 0xa3, 0xfa, 0x9b, 0x03, 0xbe,
73618c2ecf20Sopenharmony_ci	0xfe, 0x65, 0x6f, 0xa2, 0x29, 0x0d, 0x54, 0xb4,
73628c2ecf20Sopenharmony_ci	0x71, 0xce, 0xa9, 0xd6, 0x3d, 0x88, 0xf9, 0xaf,
73638c2ecf20Sopenharmony_ci	0x6b, 0xa8, 0x9e, 0xf4, 0x16, 0x96, 0x36, 0xb9,
73648c2ecf20Sopenharmony_ci	0x00, 0xdc, 0x10, 0xab, 0xb5, 0x08, 0x31, 0x1f,
73658c2ecf20Sopenharmony_ci	0x00, 0xb1, 0x3c, 0xd9, 0x38, 0x3e, 0xc6, 0x04,
73668c2ecf20Sopenharmony_ci	0xa7, 0x4e, 0xe8, 0xae, 0xed, 0x98, 0xc2, 0xf7,
73678c2ecf20Sopenharmony_ci	0xb9, 0x00, 0x5f, 0x8c, 0x60, 0xd1, 0xe5, 0x15,
73688c2ecf20Sopenharmony_ci	0xf7, 0xae, 0x1e, 0x84, 0x88, 0xd1, 0xf6, 0xbc,
73698c2ecf20Sopenharmony_ci	0x3a, 0x89, 0x35, 0x22, 0x83, 0x7c, 0xca, 0xf0,
73708c2ecf20Sopenharmony_ci	0x33, 0x82, 0x4c, 0x79, 0x3c, 0xfd, 0xb1, 0xae,
73718c2ecf20Sopenharmony_ci	0x52, 0x62, 0x55, 0xd2, 0x41, 0x60, 0xc6, 0xbb,
73728c2ecf20Sopenharmony_ci	0xfa, 0x0e, 0x59, 0xd6, 0xa8, 0xfe, 0x5d, 0xed,
73738c2ecf20Sopenharmony_ci	0x47, 0x3d, 0xe0, 0xea, 0x1f, 0x6e, 0x43, 0x51,
73748c2ecf20Sopenharmony_ci	0xec, 0x10, 0x52, 0x56, 0x77, 0x42, 0x6b, 0x52,
73758c2ecf20Sopenharmony_ci	0x87, 0xd8, 0xec, 0xe0, 0xaa, 0x76, 0xa5, 0x84,
73768c2ecf20Sopenharmony_ci	0x2a, 0x22, 0x24, 0xfd, 0x92, 0x40, 0x88, 0xd5,
73778c2ecf20Sopenharmony_ci	0x85, 0x1c, 0x1f, 0x6b, 0x47, 0xa0, 0xc4, 0xe4,
73788c2ecf20Sopenharmony_ci	0xef, 0xf4, 0xea, 0xd7, 0x59, 0xac, 0x2a, 0x9e,
73798c2ecf20Sopenharmony_ci	0x8c, 0xfa, 0x1f, 0x42, 0x08, 0xfe, 0x4f, 0x74,
73808c2ecf20Sopenharmony_ci	0xa0, 0x26, 0xf5, 0xb3, 0x84, 0xf6, 0x58, 0x5f,
73818c2ecf20Sopenharmony_ci	0x26, 0x66, 0x3e, 0xd7, 0xe4, 0x22, 0x91, 0x13,
73828c2ecf20Sopenharmony_ci	0xc8, 0xac, 0x25, 0x96, 0x23, 0xd8, 0x09, 0xea,
73838c2ecf20Sopenharmony_ci	0x45, 0x75, 0x23, 0xb8, 0x5f, 0xc2, 0x90, 0x8b,
73848c2ecf20Sopenharmony_ci	0x09, 0xc4, 0xfc, 0x47, 0x6c, 0x6d, 0x0a, 0xef,
73858c2ecf20Sopenharmony_ci	0x69, 0xa4, 0x38, 0x19, 0xcf, 0x7d, 0xf9, 0x09,
73868c2ecf20Sopenharmony_ci	0x73, 0x9b, 0x60, 0x5a, 0xf7, 0x37, 0xb5, 0xfe,
73878c2ecf20Sopenharmony_ci	0x9f, 0xe3, 0x2b, 0x4c, 0x0d, 0x6e, 0x19, 0xf1,
73888c2ecf20Sopenharmony_ci	0xd6, 0xc0, 0x70, 0xf3, 0x9d, 0x22, 0x3c, 0xf9,
73898c2ecf20Sopenharmony_ci	0x49, 0xce, 0x30, 0x8e, 0x44, 0xb5, 0x76, 0x15,
73908c2ecf20Sopenharmony_ci	0x8f, 0x52, 0xfd, 0xa5, 0x04, 0xb8, 0x55, 0x6a,
73918c2ecf20Sopenharmony_ci	0x36, 0x59, 0x7c, 0xc4, 0x48, 0xb8, 0xd7, 0xab,
73928c2ecf20Sopenharmony_ci	0x05, 0x66, 0xe9, 0x5e, 0x21, 0x6f, 0x6b, 0x36,
73938c2ecf20Sopenharmony_ci	0x29, 0xbb, 0xe9, 0xe3, 0xa2, 0x9a, 0xa8, 0xcd,
73948c2ecf20Sopenharmony_ci	0x55, 0x25, 0x11, 0xba, 0x5a, 0x58, 0xa0, 0xde,
73958c2ecf20Sopenharmony_ci	0xae, 0x19, 0x2a, 0x48, 0x5a, 0xff, 0x36, 0xcd,
73968c2ecf20Sopenharmony_ci	0x6d, 0x16, 0x7a, 0x73, 0x38, 0x46, 0xe5, 0x47,
73978c2ecf20Sopenharmony_ci	0x59, 0xc8, 0xa2, 0xf6, 0xe2, 0x6c, 0x83, 0xc5,
73988c2ecf20Sopenharmony_ci	0x36, 0x2c, 0x83, 0x7d, 0xb4, 0x01, 0x05, 0x69,
73998c2ecf20Sopenharmony_ci	0xe7, 0xaf, 0x5c, 0xc4, 0x64, 0x82, 0x12, 0x21,
74008c2ecf20Sopenharmony_ci	0xef, 0xf7, 0xd1, 0x7d, 0xb8, 0x8d, 0x8c, 0x98,
74018c2ecf20Sopenharmony_ci	0x7c, 0x5f, 0x7d, 0x92, 0x88, 0xb9, 0x94, 0x07,
74028c2ecf20Sopenharmony_ci	0x9c, 0xd8, 0xe9, 0x9c, 0x17, 0x38, 0xe3, 0x57,
74038c2ecf20Sopenharmony_ci	0x6c, 0xe0, 0xdc, 0xa5, 0x92, 0x42, 0xb3, 0xbd,
74048c2ecf20Sopenharmony_ci	0x50, 0xa2, 0x7e, 0xb5, 0xb1, 0x52, 0x72, 0x03,
74058c2ecf20Sopenharmony_ci	0x97, 0xd8, 0xaa, 0x9a, 0x1e, 0x75, 0x41, 0x11,
74068c2ecf20Sopenharmony_ci	0xa3, 0x4f, 0xcc, 0xd4, 0xe3, 0x73, 0xad, 0x96,
74078c2ecf20Sopenharmony_ci	0xdc, 0x47, 0x41, 0x9f, 0xb0, 0xbe, 0x79, 0x91,
74088c2ecf20Sopenharmony_ci	0xf5, 0xb6, 0x18, 0xfe, 0xc2, 0x83, 0x18, 0x7d,
74098c2ecf20Sopenharmony_ci	0x73, 0xd9, 0x4f, 0x83, 0x84, 0x03, 0xb3, 0xf0,
74108c2ecf20Sopenharmony_ci	0x77, 0x66, 0x3d, 0x83, 0x63, 0x2e, 0x2c, 0xf9,
74118c2ecf20Sopenharmony_ci	0xdd, 0xa6, 0x1f, 0x89, 0x82, 0xb8, 0x23, 0x42,
74128c2ecf20Sopenharmony_ci	0xeb, 0xe2, 0xca, 0x70, 0x82, 0x61, 0x41, 0x0a,
74138c2ecf20Sopenharmony_ci	0x6d, 0x5f, 0x75, 0xc5, 0xe2, 0xc4, 0x91, 0x18,
74148c2ecf20Sopenharmony_ci	0x44, 0x22, 0xfa, 0x34, 0x10, 0xf5, 0x20, 0xdc,
74158c2ecf20Sopenharmony_ci	0xb7, 0xdd, 0x2a, 0x20, 0x77, 0xf5, 0xf9, 0xce,
74168c2ecf20Sopenharmony_ci	0xdb, 0xa0, 0x0a, 0x52, 0x2a, 0x4e, 0xdd, 0xcc,
74178c2ecf20Sopenharmony_ci	0x97, 0xdf, 0x05, 0xe4, 0x5e, 0xb7, 0xaa, 0xf0,
74188c2ecf20Sopenharmony_ci	0xe2, 0x80, 0xff, 0xba, 0x1a, 0x0f, 0xac, 0xdf,
74198c2ecf20Sopenharmony_ci	0x02, 0x32, 0xe6, 0xf7, 0xc7, 0x17, 0x13, 0xb7,
74208c2ecf20Sopenharmony_ci	0xfc, 0x98, 0x48, 0x8c, 0x0d, 0x82, 0xc9, 0x80,
74218c2ecf20Sopenharmony_ci	0x7a, 0xe2, 0x0a, 0xc5, 0xb4, 0xde, 0x7c, 0x3c,
74228c2ecf20Sopenharmony_ci	0x79, 0x81, 0x0e, 0x28, 0x65, 0x79, 0x67, 0x82,
74238c2ecf20Sopenharmony_ci	0x69, 0x44, 0x66, 0x09, 0xf7, 0x16, 0x1a, 0xf9,
74248c2ecf20Sopenharmony_ci	0x7d, 0x80, 0xa1, 0x79, 0x14, 0xa9, 0xc8, 0x20,
74258c2ecf20Sopenharmony_ci	0xfb, 0xa2, 0x46, 0xbe, 0x08, 0x35, 0x17, 0x58,
74268c2ecf20Sopenharmony_ci	0xc1, 0x1a, 0xda, 0x2a, 0x6b, 0x2e, 0x1e, 0xe6,
74278c2ecf20Sopenharmony_ci	0x27, 0x55, 0x7b, 0x19, 0xe2, 0xfb, 0x64, 0xfc,
74288c2ecf20Sopenharmony_ci	0x5e, 0x15, 0x54, 0x3c, 0xe7, 0xc2, 0x11, 0x50,
74298c2ecf20Sopenharmony_ci	0x30, 0xb8, 0x72, 0x03, 0x0b, 0x1a, 0x9f, 0x86,
74308c2ecf20Sopenharmony_ci	0x27, 0x11, 0x5c, 0x06, 0x2b, 0xbd, 0x75, 0x1a,
74318c2ecf20Sopenharmony_ci	0x0a, 0xda, 0x01, 0xfa, 0x5c, 0x4a, 0xc1, 0x80,
74328c2ecf20Sopenharmony_ci	0x3a, 0x6e, 0x30, 0xc8, 0x2c, 0xeb, 0x56, 0xec,
74338c2ecf20Sopenharmony_ci	0x89, 0xfa, 0x35, 0x7b, 0xb2, 0xf0, 0x97, 0x08,
74348c2ecf20Sopenharmony_ci	0x86, 0x53, 0xbe, 0xbd, 0x40, 0x41, 0x38, 0x1c,
74358c2ecf20Sopenharmony_ci	0xb4, 0x8b, 0x79, 0x2e, 0x18, 0x96, 0x94, 0xde,
74368c2ecf20Sopenharmony_ci	0xe8, 0xca, 0xe5, 0x9f, 0x92, 0x9f, 0x15, 0x5d,
74378c2ecf20Sopenharmony_ci	0x56, 0x60, 0x5c, 0x09, 0xf9, 0x16, 0xf4, 0x17,
74388c2ecf20Sopenharmony_ci	0x0f, 0xf6, 0x4c, 0xda, 0xe6, 0x67, 0x89, 0x9f,
74398c2ecf20Sopenharmony_ci	0xca, 0x6c, 0xe7, 0x9b, 0x04, 0x62, 0x0e, 0x26,
74408c2ecf20Sopenharmony_ci	0xa6, 0x52, 0xbd, 0x29, 0xff, 0xc7, 0xa4, 0x96,
74418c2ecf20Sopenharmony_ci	0xe6, 0x6a, 0x02, 0xa5, 0x2e, 0x7b, 0xfe, 0x97,
74428c2ecf20Sopenharmony_ci	0x68, 0x3e, 0x2e, 0x5f, 0x3b, 0x0f, 0x36, 0xd6,
74438c2ecf20Sopenharmony_ci	0x98, 0x19, 0x59, 0x48, 0xd2, 0xc6, 0xe1, 0x55,
74448c2ecf20Sopenharmony_ci	0x1a, 0x6e, 0xd6, 0xed, 0x2c, 0xba, 0xc3, 0x9e,
74458c2ecf20Sopenharmony_ci	0x64, 0xc9, 0x95, 0x86, 0x35, 0x5e, 0x3e, 0x88,
74468c2ecf20Sopenharmony_ci	0x69, 0x99, 0x4b, 0xee, 0xbe, 0x9a, 0x99, 0xb5,
74478c2ecf20Sopenharmony_ci	0x6e, 0x58, 0xae, 0xdd, 0x22, 0xdb, 0xdd, 0x6b,
74488c2ecf20Sopenharmony_ci	0xfc, 0xaf, 0x90, 0xa3, 0x3d, 0xa4, 0xc1, 0x15,
74498c2ecf20Sopenharmony_ci	0x92, 0x18, 0x8d, 0xd2, 0x4b, 0x7b, 0x06, 0xd1,
74508c2ecf20Sopenharmony_ci	0x37, 0xb5, 0xe2, 0x7c, 0x2c, 0xf0, 0x25, 0xe4,
74518c2ecf20Sopenharmony_ci	0x94, 0x2a, 0xbd, 0xe3, 0x82, 0x70, 0x78, 0xa3,
74528c2ecf20Sopenharmony_ci	0x82, 0x10, 0x5a, 0x90, 0xd7, 0xa4, 0xfa, 0xaf,
74538c2ecf20Sopenharmony_ci	0x1a, 0x88, 0x59, 0xdc, 0x74, 0x12, 0xb4, 0x8e,
74548c2ecf20Sopenharmony_ci	0xd7, 0x19, 0x46, 0xf4, 0x84, 0x69, 0x9f, 0xbb,
74558c2ecf20Sopenharmony_ci	0x70, 0xa8, 0x4c, 0x52, 0x81, 0xa9, 0xff, 0x76,
74568c2ecf20Sopenharmony_ci	0x1c, 0xae, 0xd8, 0x11, 0x3d, 0x7f, 0x7d, 0xc5,
74578c2ecf20Sopenharmony_ci	0x12, 0x59, 0x28, 0x18, 0xc2, 0xa2, 0xb7, 0x1c,
74588c2ecf20Sopenharmony_ci	0x88, 0xf8, 0xd6, 0x1b, 0xa6, 0x7d, 0x9e, 0xde,
74598c2ecf20Sopenharmony_ci	0x29, 0xf8, 0xed, 0xff, 0xeb, 0x92, 0x24, 0x4f,
74608c2ecf20Sopenharmony_ci	0x05, 0xaa, 0xd9, 0x49, 0xba, 0x87, 0x59, 0x51,
74618c2ecf20Sopenharmony_ci	0xc9, 0x20, 0x5c, 0x9b, 0x74, 0xcf, 0x03, 0xd9,
74628c2ecf20Sopenharmony_ci	0x2d, 0x34, 0xc7, 0x5b, 0xa5, 0x40, 0xb2, 0x99,
74638c2ecf20Sopenharmony_ci	0xf5, 0xcb, 0xb4, 0xf6, 0xb7, 0x72, 0x4a, 0xd6,
74648c2ecf20Sopenharmony_ci	0xbd, 0xb0, 0xf3, 0x93, 0xe0, 0x1b, 0xa8, 0x04,
74658c2ecf20Sopenharmony_ci	0x1e, 0x35, 0xd4, 0x80, 0x20, 0xf4, 0x9c, 0x31,
74668c2ecf20Sopenharmony_ci	0x6b, 0x45, 0xb9, 0x15, 0xb0, 0x5e, 0xdd, 0x0a,
74678c2ecf20Sopenharmony_ci	0x33, 0x9c, 0x83, 0xcd, 0x58, 0x89, 0x50, 0x56,
74688c2ecf20Sopenharmony_ci	0xbb, 0x81, 0x00, 0x91, 0x32, 0xf3, 0x1b, 0x3e,
74698c2ecf20Sopenharmony_ci	0xcf, 0x45, 0xe1, 0xf9, 0xe1, 0x2c, 0x26, 0x78,
74708c2ecf20Sopenharmony_ci	0x93, 0x9a, 0x60, 0x46, 0xc9, 0xb5, 0x5e, 0x6a,
74718c2ecf20Sopenharmony_ci	0x28, 0x92, 0x87, 0x3f, 0x63, 0x7b, 0xdb, 0xf7,
74728c2ecf20Sopenharmony_ci	0xd0, 0x13, 0x9d, 0x32, 0x40, 0x5e, 0xcf, 0xfb,
74738c2ecf20Sopenharmony_ci	0x79, 0x68, 0x47, 0x4c, 0xfd, 0x01, 0x17, 0xe6,
74748c2ecf20Sopenharmony_ci	0x97, 0x93, 0x78, 0xbb, 0xa6, 0x27, 0xa3, 0xe8,
74758c2ecf20Sopenharmony_ci	0x1a, 0xe8, 0x94, 0x55, 0x7d, 0x08, 0xe5, 0xdc,
74768c2ecf20Sopenharmony_ci	0x66, 0xa3, 0x69, 0xc8, 0xca, 0xc5, 0xa1, 0x84,
74778c2ecf20Sopenharmony_ci	0x55, 0xde, 0x08, 0x91, 0x16, 0x3a, 0x0c, 0x86,
74788c2ecf20Sopenharmony_ci	0xab, 0x27, 0x2b, 0x64, 0x34, 0x02, 0x6c, 0x76,
74798c2ecf20Sopenharmony_ci	0x8b, 0xc6, 0xaf, 0xcc, 0xe1, 0xd6, 0x8c, 0x2a,
74808c2ecf20Sopenharmony_ci	0x18, 0x3d, 0xa6, 0x1b, 0x37, 0x75, 0x45, 0x73,
74818c2ecf20Sopenharmony_ci	0xc2, 0x75, 0xd7, 0x53, 0x78, 0x3a, 0xd6, 0xe8,
74828c2ecf20Sopenharmony_ci	0x29, 0xd2, 0x4a, 0xa8, 0x1e, 0x82, 0xf6, 0xb6,
74838c2ecf20Sopenharmony_ci	0x81, 0xde, 0x21, 0xed, 0x2b, 0x56, 0xbb, 0xf2,
74848c2ecf20Sopenharmony_ci	0xd0, 0x57, 0xc1, 0x7c, 0xd2, 0x6a, 0xd2, 0x56,
74858c2ecf20Sopenharmony_ci	0xf5, 0x13, 0x5f, 0x1c, 0x6a, 0x0b, 0x74, 0xfb,
74868c2ecf20Sopenharmony_ci	0xe9, 0xfe, 0x9e, 0xea, 0x95, 0xb2, 0x46, 0xab,
74878c2ecf20Sopenharmony_ci	0x0a, 0xfc, 0xfd, 0xf3, 0xbb, 0x04, 0x2b, 0x76,
74888c2ecf20Sopenharmony_ci	0x1b, 0xa4, 0x74, 0xb0, 0xc1, 0x78, 0xc3, 0x69,
74898c2ecf20Sopenharmony_ci	0xe2, 0xb0, 0x01, 0xe1, 0xde, 0x32, 0x4c, 0x8d,
74908c2ecf20Sopenharmony_ci	0x1a, 0xb3, 0x38, 0x08, 0xd5, 0xfc, 0x1f, 0xdc,
74918c2ecf20Sopenharmony_ci	0x0e, 0x2c, 0x9c, 0xb1, 0xa1, 0x63, 0x17, 0x22,
74928c2ecf20Sopenharmony_ci	0xf5, 0x6c, 0x93, 0x70, 0x74, 0x00, 0xf8, 0x39,
74938c2ecf20Sopenharmony_ci	0x01, 0x94, 0xd1, 0x32, 0x23, 0x56, 0x5d, 0xa6,
74948c2ecf20Sopenharmony_ci	0x02, 0x76, 0x76, 0x93, 0xce, 0x2f, 0x19, 0xe9,
74958c2ecf20Sopenharmony_ci	0x17, 0x52, 0xae, 0x6e, 0x2c, 0x6d, 0x61, 0x7f,
74968c2ecf20Sopenharmony_ci	0x3b, 0xaa, 0xe0, 0x52, 0x85, 0xc5, 0x65, 0xc1,
74978c2ecf20Sopenharmony_ci	0xbb, 0x8e, 0x5b, 0x21, 0xd5, 0xc9, 0x78, 0x83,
74988c2ecf20Sopenharmony_ci	0x07, 0x97, 0x4c, 0x62, 0x61, 0x41, 0xd4, 0xfc,
74998c2ecf20Sopenharmony_ci	0xc9, 0x39, 0xe3, 0x9b, 0xd0, 0xcc, 0x75, 0xc4,
75008c2ecf20Sopenharmony_ci	0x97, 0xe6, 0xdd, 0x2a, 0x5f, 0xa6, 0xe8, 0x59,
75018c2ecf20Sopenharmony_ci	0x6c, 0x98, 0xb9, 0x02, 0xe2, 0xa2, 0xd6, 0x68,
75028c2ecf20Sopenharmony_ci	0xee, 0x3b, 0x1d, 0xe3, 0x4d, 0x5b, 0x30, 0xef,
75038c2ecf20Sopenharmony_ci	0x03, 0xf2, 0xeb, 0x18, 0x57, 0x36, 0xe8, 0xa1,
75048c2ecf20Sopenharmony_ci	0xf4, 0x47, 0xfb, 0xcb, 0x8f, 0xcb, 0xc8, 0xf3,
75058c2ecf20Sopenharmony_ci	0x4f, 0x74, 0x9d, 0x9d, 0xb1, 0x8d, 0x14, 0x44,
75068c2ecf20Sopenharmony_ci	0xd9, 0x19, 0xb4, 0x54, 0x4f, 0x75, 0x19, 0x09,
75078c2ecf20Sopenharmony_ci	0xa0, 0x75, 0xbc, 0x3b, 0x82, 0xc6, 0x3f, 0xb8,
75088c2ecf20Sopenharmony_ci	0x83, 0x19, 0x6e, 0xd6, 0x37, 0xfe, 0x6e, 0x8a,
75098c2ecf20Sopenharmony_ci	0x4e, 0xe0, 0x4a, 0xab, 0x7b, 0xc8, 0xb4, 0x1d,
75108c2ecf20Sopenharmony_ci	0xf4, 0xed, 0x27, 0x03, 0x65, 0xa2, 0xa1, 0xae,
75118c2ecf20Sopenharmony_ci	0x11, 0xe7, 0x98, 0x78, 0x48, 0x91, 0xd2, 0xd2,
75128c2ecf20Sopenharmony_ci	0xd4, 0x23, 0x78, 0x50, 0xb1, 0x5b, 0x85, 0x10,
75138c2ecf20Sopenharmony_ci	0x8d, 0xca, 0x5f, 0x0f, 0x71, 0xae, 0x72, 0x9a,
75148c2ecf20Sopenharmony_ci	0xf6, 0x25, 0x19, 0x60, 0x06, 0xf7, 0x10, 0x34,
75158c2ecf20Sopenharmony_ci	0x18, 0x0d, 0xc9, 0x9f, 0x7b, 0x0c, 0x9b, 0x8f,
75168c2ecf20Sopenharmony_ci	0x91, 0x1b, 0x9f, 0xcd, 0x10, 0xee, 0x75, 0xf9,
75178c2ecf20Sopenharmony_ci	0x97, 0x66, 0xfc, 0x4d, 0x33, 0x6e, 0x28, 0x2b,
75188c2ecf20Sopenharmony_ci	0x92, 0x85, 0x4f, 0xab, 0x43, 0x8d, 0x8f, 0x7d,
75198c2ecf20Sopenharmony_ci	0x86, 0xa7, 0xc7, 0xd8, 0xd3, 0x0b, 0x8b, 0x57,
75208c2ecf20Sopenharmony_ci	0xb6, 0x1d, 0x95, 0x0d, 0xe9, 0xbc, 0xd9, 0x03,
75218c2ecf20Sopenharmony_ci	0xd9, 0x10, 0x19, 0xc3, 0x46, 0x63, 0x55, 0x87,
75228c2ecf20Sopenharmony_ci	0x61, 0x79, 0x6c, 0x95, 0x0e, 0x9c, 0xdd, 0xca,
75238c2ecf20Sopenharmony_ci	0xc3, 0xf3, 0x64, 0xf0, 0x7d, 0x76, 0xb7, 0x53,
75248c2ecf20Sopenharmony_ci	0x67, 0x2b, 0x1e, 0x44, 0x56, 0x81, 0xea, 0x8f,
75258c2ecf20Sopenharmony_ci	0x5c, 0x42, 0x16, 0xb8, 0x28, 0xeb, 0x1b, 0x61,
75268c2ecf20Sopenharmony_ci	0x10, 0x1e, 0xbf, 0xec, 0xa8
75278c2ecf20Sopenharmony_ci};
75288c2ecf20Sopenharmony_cistatic const u8 dec_assoc011[] __initconst = {
75298c2ecf20Sopenharmony_ci	0xd6, 0x31, 0xda, 0x5d, 0x42, 0x5e, 0xd7
75308c2ecf20Sopenharmony_ci};
75318c2ecf20Sopenharmony_cistatic const u8 dec_nonce011[] __initconst = {
75328c2ecf20Sopenharmony_ci	0xfd, 0x87, 0xd4, 0xd8, 0x62, 0xfd, 0xec, 0xaa
75338c2ecf20Sopenharmony_ci};
75348c2ecf20Sopenharmony_cistatic const u8 dec_key011[] __initconst = {
75358c2ecf20Sopenharmony_ci	0x35, 0x4e, 0xb5, 0x70, 0x50, 0x42, 0x8a, 0x85,
75368c2ecf20Sopenharmony_ci	0xf2, 0xfb, 0xed, 0x7b, 0xd0, 0x9e, 0x97, 0xca,
75378c2ecf20Sopenharmony_ci	0xfa, 0x98, 0x66, 0x63, 0xee, 0x37, 0xcc, 0x52,
75388c2ecf20Sopenharmony_ci	0xfe, 0xd1, 0xdf, 0x95, 0x15, 0x34, 0x29, 0x38
75398c2ecf20Sopenharmony_ci};
75408c2ecf20Sopenharmony_ci
75418c2ecf20Sopenharmony_cistatic const u8 dec_input012[] __initconst = {
75428c2ecf20Sopenharmony_ci	0x52, 0x34, 0xb3, 0x65, 0x3b, 0xb7, 0xe5, 0xd3,
75438c2ecf20Sopenharmony_ci	0xab, 0x49, 0x17, 0x60, 0xd2, 0x52, 0x56, 0xdf,
75448c2ecf20Sopenharmony_ci	0xdf, 0x34, 0x56, 0x82, 0xe2, 0xbe, 0xe5, 0xe1,
75458c2ecf20Sopenharmony_ci	0x28, 0xd1, 0x4e, 0x5f, 0x4f, 0x01, 0x7d, 0x3f,
75468c2ecf20Sopenharmony_ci	0x99, 0x6b, 0x30, 0x6e, 0x1a, 0x7c, 0x4c, 0x8e,
75478c2ecf20Sopenharmony_ci	0x62, 0x81, 0xae, 0x86, 0x3f, 0x6b, 0xd0, 0xb5,
75488c2ecf20Sopenharmony_ci	0xa9, 0xcf, 0x50, 0xf1, 0x02, 0x12, 0xa0, 0x0b,
75498c2ecf20Sopenharmony_ci	0x24, 0xe9, 0xe6, 0x72, 0x89, 0x2c, 0x52, 0x1b,
75508c2ecf20Sopenharmony_ci	0x34, 0x38, 0xf8, 0x75, 0x5f, 0xa0, 0x74, 0xe2,
75518c2ecf20Sopenharmony_ci	0x99, 0xdd, 0xa6, 0x4b, 0x14, 0x50, 0x4e, 0xf1,
75528c2ecf20Sopenharmony_ci	0xbe, 0xd6, 0x9e, 0xdb, 0xb2, 0x24, 0x27, 0x74,
75538c2ecf20Sopenharmony_ci	0x12, 0x4a, 0x78, 0x78, 0x17, 0xa5, 0x58, 0x8e,
75548c2ecf20Sopenharmony_ci	0x2f, 0xf9, 0xf4, 0x8d, 0xee, 0x03, 0x88, 0xae,
75558c2ecf20Sopenharmony_ci	0xb8, 0x29, 0xa1, 0x2f, 0x4b, 0xee, 0x92, 0xbd,
75568c2ecf20Sopenharmony_ci	0x87, 0xb3, 0xce, 0x34, 0x21, 0x57, 0x46, 0x04,
75578c2ecf20Sopenharmony_ci	0x49, 0x0c, 0x80, 0xf2, 0x01, 0x13, 0xa1, 0x55,
75588c2ecf20Sopenharmony_ci	0xb3, 0xff, 0x44, 0x30, 0x3c, 0x1c, 0xd0, 0xef,
75598c2ecf20Sopenharmony_ci	0xbc, 0x18, 0x74, 0x26, 0xad, 0x41, 0x5b, 0x5b,
75608c2ecf20Sopenharmony_ci	0x3e, 0x9a, 0x7a, 0x46, 0x4f, 0x16, 0xd6, 0x74,
75618c2ecf20Sopenharmony_ci	0x5a, 0xb7, 0x3a, 0x28, 0x31, 0xd8, 0xae, 0x26,
75628c2ecf20Sopenharmony_ci	0xac, 0x50, 0x53, 0x86, 0xf2, 0x56, 0xd7, 0x3f,
75638c2ecf20Sopenharmony_ci	0x29, 0xbc, 0x45, 0x68, 0x8e, 0xcb, 0x98, 0x64,
75648c2ecf20Sopenharmony_ci	0xdd, 0xc9, 0xba, 0xb8, 0x4b, 0x7b, 0x82, 0xdd,
75658c2ecf20Sopenharmony_ci	0x14, 0xa7, 0xcb, 0x71, 0x72, 0x00, 0x5c, 0xad,
75668c2ecf20Sopenharmony_ci	0x7b, 0x6a, 0x89, 0xa4, 0x3d, 0xbf, 0xb5, 0x4b,
75678c2ecf20Sopenharmony_ci	0x3e, 0x7c, 0x5a, 0xcf, 0xb8, 0xa1, 0xc5, 0x6e,
75688c2ecf20Sopenharmony_ci	0xc8, 0xb6, 0x31, 0x57, 0x7b, 0xdf, 0xa5, 0x7e,
75698c2ecf20Sopenharmony_ci	0xb1, 0xd6, 0x42, 0x2a, 0x31, 0x36, 0xd1, 0xd0,
75708c2ecf20Sopenharmony_ci	0x3f, 0x7a, 0xe5, 0x94, 0xd6, 0x36, 0xa0, 0x6f,
75718c2ecf20Sopenharmony_ci	0xb7, 0x40, 0x7d, 0x37, 0xc6, 0x55, 0x7c, 0x50,
75728c2ecf20Sopenharmony_ci	0x40, 0x6d, 0x29, 0x89, 0xe3, 0x5a, 0xae, 0x97,
75738c2ecf20Sopenharmony_ci	0xe7, 0x44, 0x49, 0x6e, 0xbd, 0x81, 0x3d, 0x03,
75748c2ecf20Sopenharmony_ci	0x93, 0x06, 0x12, 0x06, 0xe2, 0x41, 0x12, 0x4a,
75758c2ecf20Sopenharmony_ci	0xf1, 0x6a, 0xa4, 0x58, 0xa2, 0xfb, 0xd2, 0x15,
75768c2ecf20Sopenharmony_ci	0xba, 0xc9, 0x79, 0xc9, 0xce, 0x5e, 0x13, 0xbb,
75778c2ecf20Sopenharmony_ci	0xf1, 0x09, 0x04, 0xcc, 0xfd, 0xe8, 0x51, 0x34,
75788c2ecf20Sopenharmony_ci	0x6a, 0xe8, 0x61, 0x88, 0xda, 0xed, 0x01, 0x47,
75798c2ecf20Sopenharmony_ci	0x84, 0xf5, 0x73, 0x25, 0xf9, 0x1c, 0x42, 0x86,
75808c2ecf20Sopenharmony_ci	0x07, 0xf3, 0x5b, 0x1a, 0x01, 0xb3, 0xeb, 0x24,
75818c2ecf20Sopenharmony_ci	0x32, 0x8d, 0xf6, 0xed, 0x7c, 0x4b, 0xeb, 0x3c,
75828c2ecf20Sopenharmony_ci	0x36, 0x42, 0x28, 0xdf, 0xdf, 0xb6, 0xbe, 0xd9,
75838c2ecf20Sopenharmony_ci	0x8c, 0x52, 0xd3, 0x2b, 0x08, 0x90, 0x8c, 0xe7,
75848c2ecf20Sopenharmony_ci	0x98, 0x31, 0xe2, 0x32, 0x8e, 0xfc, 0x11, 0x48,
75858c2ecf20Sopenharmony_ci	0x00, 0xa8, 0x6a, 0x42, 0x4a, 0x02, 0xc6, 0x4b,
75868c2ecf20Sopenharmony_ci	0x09, 0xf1, 0xe3, 0x49, 0xf3, 0x45, 0x1f, 0x0e,
75878c2ecf20Sopenharmony_ci	0xbc, 0x56, 0xe2, 0xe4, 0xdf, 0xfb, 0xeb, 0x61,
75888c2ecf20Sopenharmony_ci	0xfa, 0x24, 0xc1, 0x63, 0x75, 0xbb, 0x47, 0x75,
75898c2ecf20Sopenharmony_ci	0xaf, 0xe1, 0x53, 0x16, 0x96, 0x21, 0x85, 0x26,
75908c2ecf20Sopenharmony_ci	0x11, 0xb3, 0x76, 0xe3, 0x23, 0xa1, 0x6b, 0x74,
75918c2ecf20Sopenharmony_ci	0x37, 0xd0, 0xde, 0x06, 0x90, 0x71, 0x5d, 0x43,
75928c2ecf20Sopenharmony_ci	0x88, 0x9b, 0x00, 0x54, 0xa6, 0x75, 0x2f, 0xa1,
75938c2ecf20Sopenharmony_ci	0xc2, 0x0b, 0x73, 0x20, 0x1d, 0xb6, 0x21, 0x79,
75948c2ecf20Sopenharmony_ci	0x57, 0x3f, 0xfa, 0x09, 0xbe, 0x8a, 0x33, 0xc3,
75958c2ecf20Sopenharmony_ci	0x52, 0xf0, 0x1d, 0x82, 0x31, 0xd1, 0x55, 0xb5,
75968c2ecf20Sopenharmony_ci	0x6c, 0x99, 0x25, 0xcf, 0x5c, 0x32, 0xce, 0xe9,
75978c2ecf20Sopenharmony_ci	0x0d, 0xfa, 0x69, 0x2c, 0xd5, 0x0d, 0xc5, 0x6d,
75988c2ecf20Sopenharmony_ci	0x86, 0xd0, 0x0c, 0x3b, 0x06, 0x50, 0x79, 0xe8,
75998c2ecf20Sopenharmony_ci	0xc3, 0xae, 0x04, 0xe6, 0xcd, 0x51, 0xe4, 0x26,
76008c2ecf20Sopenharmony_ci	0x9b, 0x4f, 0x7e, 0xa6, 0x0f, 0xab, 0xd8, 0xe5,
76018c2ecf20Sopenharmony_ci	0xde, 0xa9, 0x00, 0x95, 0xbe, 0xa3, 0x9d, 0x5d,
76028c2ecf20Sopenharmony_ci	0xb2, 0x09, 0x70, 0x18, 0x1c, 0xf0, 0xac, 0x29,
76038c2ecf20Sopenharmony_ci	0x23, 0x02, 0x29, 0x28, 0xd2, 0x74, 0x35, 0x57,
76048c2ecf20Sopenharmony_ci	0x62, 0x0f, 0x24, 0xea, 0x5e, 0x33, 0xc2, 0x92,
76058c2ecf20Sopenharmony_ci	0xf3, 0x78, 0x4d, 0x30, 0x1e, 0xa1, 0x99, 0xa9,
76068c2ecf20Sopenharmony_ci	0x82, 0xb0, 0x42, 0x31, 0x8d, 0xad, 0x8a, 0xbc,
76078c2ecf20Sopenharmony_ci	0xfc, 0xd4, 0x57, 0x47, 0x3e, 0xb4, 0x50, 0xdd,
76088c2ecf20Sopenharmony_ci	0x6e, 0x2c, 0x80, 0x4d, 0x22, 0xf1, 0xfb, 0x57,
76098c2ecf20Sopenharmony_ci	0xc4, 0xdd, 0x17, 0xe1, 0x8a, 0x36, 0x4a, 0xb3,
76108c2ecf20Sopenharmony_ci	0x37, 0xca, 0xc9, 0x4e, 0xab, 0xd5, 0x69, 0xc4,
76118c2ecf20Sopenharmony_ci	0xf4, 0xbc, 0x0b, 0x3b, 0x44, 0x4b, 0x29, 0x9c,
76128c2ecf20Sopenharmony_ci	0xee, 0xd4, 0x35, 0x22, 0x21, 0xb0, 0x1f, 0x27,
76138c2ecf20Sopenharmony_ci	0x64, 0xa8, 0x51, 0x1b, 0xf0, 0x9f, 0x19, 0x5c,
76148c2ecf20Sopenharmony_ci	0xfb, 0x5a, 0x64, 0x74, 0x70, 0x45, 0x09, 0xf5,
76158c2ecf20Sopenharmony_ci	0x64, 0xfe, 0x1a, 0x2d, 0xc9, 0x14, 0x04, 0x14,
76168c2ecf20Sopenharmony_ci	0xcf, 0xd5, 0x7d, 0x60, 0xaf, 0x94, 0x39, 0x94,
76178c2ecf20Sopenharmony_ci	0xe2, 0x7d, 0x79, 0x82, 0xd0, 0x65, 0x3b, 0x6b,
76188c2ecf20Sopenharmony_ci	0x9c, 0x19, 0x84, 0xb4, 0x6d, 0xb3, 0x0c, 0x99,
76198c2ecf20Sopenharmony_ci	0xc0, 0x56, 0xa8, 0xbd, 0x73, 0xce, 0x05, 0x84,
76208c2ecf20Sopenharmony_ci	0x3e, 0x30, 0xaa, 0xc4, 0x9b, 0x1b, 0x04, 0x2a,
76218c2ecf20Sopenharmony_ci	0x9f, 0xd7, 0x43, 0x2b, 0x23, 0xdf, 0xbf, 0xaa,
76228c2ecf20Sopenharmony_ci	0xd5, 0xc2, 0x43, 0x2d, 0x70, 0xab, 0xdc, 0x75,
76238c2ecf20Sopenharmony_ci	0xad, 0xac, 0xf7, 0xc0, 0xbe, 0x67, 0xb2, 0x74,
76248c2ecf20Sopenharmony_ci	0xed, 0x67, 0x10, 0x4a, 0x92, 0x60, 0xc1, 0x40,
76258c2ecf20Sopenharmony_ci	0x50, 0x19, 0x8a, 0x8a, 0x8c, 0x09, 0x0e, 0x72,
76268c2ecf20Sopenharmony_ci	0xe1, 0x73, 0x5e, 0xe8, 0x41, 0x85, 0x63, 0x9f,
76278c2ecf20Sopenharmony_ci	0x3f, 0xd7, 0x7d, 0xc4, 0xfb, 0x22, 0x5d, 0x92,
76288c2ecf20Sopenharmony_ci	0x6c, 0xb3, 0x1e, 0xe2, 0x50, 0x2f, 0x82, 0xa8,
76298c2ecf20Sopenharmony_ci	0x28, 0xc0, 0xb5, 0xd7, 0x5f, 0x68, 0x0d, 0x2c,
76308c2ecf20Sopenharmony_ci	0x2d, 0xaf, 0x7e, 0xfa, 0x2e, 0x08, 0x0f, 0x1f,
76318c2ecf20Sopenharmony_ci	0x70, 0x9f, 0xe9, 0x19, 0x72, 0x55, 0xf8, 0xfb,
76328c2ecf20Sopenharmony_ci	0x51, 0xd2, 0x33, 0x5d, 0xa0, 0xd3, 0x2b, 0x0a,
76338c2ecf20Sopenharmony_ci	0x6c, 0xbc, 0x4e, 0xcf, 0x36, 0x4d, 0xdc, 0x3b,
76348c2ecf20Sopenharmony_ci	0xe9, 0x3e, 0x81, 0x7c, 0x61, 0xdb, 0x20, 0x2d,
76358c2ecf20Sopenharmony_ci	0x3a, 0xc3, 0xb3, 0x0c, 0x1e, 0x00, 0xb9, 0x7c,
76368c2ecf20Sopenharmony_ci	0xf5, 0xca, 0x10, 0x5f, 0x3a, 0x71, 0xb3, 0xe4,
76378c2ecf20Sopenharmony_ci	0x20, 0xdb, 0x0c, 0x2a, 0x98, 0x63, 0x45, 0x00,
76388c2ecf20Sopenharmony_ci	0x58, 0xf6, 0x68, 0xe4, 0x0b, 0xda, 0x13, 0x3b,
76398c2ecf20Sopenharmony_ci	0x60, 0x5c, 0x76, 0xdb, 0xb9, 0x97, 0x71, 0xe4,
76408c2ecf20Sopenharmony_ci	0xd9, 0xb7, 0xdb, 0xbd, 0x68, 0xc7, 0x84, 0x84,
76418c2ecf20Sopenharmony_ci	0xaa, 0x7c, 0x68, 0x62, 0x5e, 0x16, 0xfc, 0xba,
76428c2ecf20Sopenharmony_ci	0x72, 0xaa, 0x9a, 0xa9, 0xeb, 0x7c, 0x75, 0x47,
76438c2ecf20Sopenharmony_ci	0x97, 0x7e, 0xad, 0xe2, 0xd9, 0x91, 0xe8, 0xe4,
76448c2ecf20Sopenharmony_ci	0xa5, 0x31, 0xd7, 0x01, 0x8e, 0xa2, 0x11, 0x88,
76458c2ecf20Sopenharmony_ci	0x95, 0xb9, 0xf2, 0x9b, 0xd3, 0x7f, 0x1b, 0x81,
76468c2ecf20Sopenharmony_ci	0x22, 0xf7, 0x98, 0x60, 0x0a, 0x64, 0xa6, 0xc1,
76478c2ecf20Sopenharmony_ci	0xf6, 0x49, 0xc7, 0xe3, 0x07, 0x4d, 0x94, 0x7a,
76488c2ecf20Sopenharmony_ci	0xcf, 0x6e, 0x68, 0x0c, 0x1b, 0x3f, 0x6e, 0x2e,
76498c2ecf20Sopenharmony_ci	0xee, 0x92, 0xfa, 0x52, 0xb3, 0x59, 0xf8, 0xf1,
76508c2ecf20Sopenharmony_ci	0x8f, 0x6a, 0x66, 0xa3, 0x82, 0x76, 0x4a, 0x07,
76518c2ecf20Sopenharmony_ci	0x1a, 0xc7, 0xdd, 0xf5, 0xda, 0x9c, 0x3c, 0x24,
76528c2ecf20Sopenharmony_ci	0xbf, 0xfd, 0x42, 0xa1, 0x10, 0x64, 0x6a, 0x0f,
76538c2ecf20Sopenharmony_ci	0x89, 0xee, 0x36, 0xa5, 0xce, 0x99, 0x48, 0x6a,
76548c2ecf20Sopenharmony_ci	0xf0, 0x9f, 0x9e, 0x69, 0xa4, 0x40, 0x20, 0xe9,
76558c2ecf20Sopenharmony_ci	0x16, 0x15, 0xf7, 0xdb, 0x75, 0x02, 0xcb, 0xe9,
76568c2ecf20Sopenharmony_ci	0x73, 0x8b, 0x3b, 0x49, 0x2f, 0xf0, 0xaf, 0x51,
76578c2ecf20Sopenharmony_ci	0x06, 0x5c, 0xdf, 0x27, 0x27, 0x49, 0x6a, 0xd1,
76588c2ecf20Sopenharmony_ci	0xcc, 0xc7, 0xb5, 0x63, 0xb5, 0xfc, 0xb8, 0x5c,
76598c2ecf20Sopenharmony_ci	0x87, 0x7f, 0x84, 0xb4, 0xcc, 0x14, 0xa9, 0x53,
76608c2ecf20Sopenharmony_ci	0xda, 0xa4, 0x56, 0xf8, 0xb6, 0x1b, 0xcc, 0x40,
76618c2ecf20Sopenharmony_ci	0x27, 0x52, 0x06, 0x5a, 0x13, 0x81, 0xd7, 0x3a,
76628c2ecf20Sopenharmony_ci	0xd4, 0x3b, 0xfb, 0x49, 0x65, 0x31, 0x33, 0xb2,
76638c2ecf20Sopenharmony_ci	0xfa, 0xcd, 0xad, 0x58, 0x4e, 0x2b, 0xae, 0xd2,
76648c2ecf20Sopenharmony_ci	0x20, 0xfb, 0x1a, 0x48, 0xb4, 0x3f, 0x9a, 0xd8,
76658c2ecf20Sopenharmony_ci	0x7a, 0x35, 0x4a, 0xc8, 0xee, 0x88, 0x5e, 0x07,
76668c2ecf20Sopenharmony_ci	0x66, 0x54, 0xb9, 0xec, 0x9f, 0xa3, 0xe3, 0xb9,
76678c2ecf20Sopenharmony_ci	0x37, 0xaa, 0x49, 0x76, 0x31, 0xda, 0x74, 0x2d,
76688c2ecf20Sopenharmony_ci	0x3c, 0xa4, 0x65, 0x10, 0x32, 0x38, 0xf0, 0xde,
76698c2ecf20Sopenharmony_ci	0xd3, 0x99, 0x17, 0xaa, 0x71, 0xaa, 0x8f, 0x0f,
76708c2ecf20Sopenharmony_ci	0x8c, 0xaf, 0xa2, 0xf8, 0x5d, 0x64, 0xba, 0x1d,
76718c2ecf20Sopenharmony_ci	0xa3, 0xef, 0x96, 0x73, 0xe8, 0xa1, 0x02, 0x8d,
76728c2ecf20Sopenharmony_ci	0x0c, 0x6d, 0xb8, 0x06, 0x90, 0xb8, 0x08, 0x56,
76738c2ecf20Sopenharmony_ci	0x2c, 0xa7, 0x06, 0xc9, 0xc2, 0x38, 0xdb, 0x7c,
76748c2ecf20Sopenharmony_ci	0x63, 0xb1, 0x57, 0x8e, 0xea, 0x7c, 0x79, 0xf3,
76758c2ecf20Sopenharmony_ci	0x49, 0x1d, 0xfe, 0x9f, 0xf3, 0x6e, 0xb1, 0x1d,
76768c2ecf20Sopenharmony_ci	0xba, 0x19, 0x80, 0x1a, 0x0a, 0xd3, 0xb0, 0x26,
76778c2ecf20Sopenharmony_ci	0x21, 0x40, 0xb1, 0x7c, 0xf9, 0x4d, 0x8d, 0x10,
76788c2ecf20Sopenharmony_ci	0xc1, 0x7e, 0xf4, 0xf6, 0x3c, 0xa8, 0xfd, 0x7c,
76798c2ecf20Sopenharmony_ci	0xa3, 0x92, 0xb2, 0x0f, 0xaa, 0xcc, 0xa6, 0x11,
76808c2ecf20Sopenharmony_ci	0xfe, 0x04, 0xe3, 0xd1, 0x7a, 0x32, 0x89, 0xdf,
76818c2ecf20Sopenharmony_ci	0x0d, 0xc4, 0x8f, 0x79, 0x6b, 0xca, 0x16, 0x7c,
76828c2ecf20Sopenharmony_ci	0x6e, 0xf9, 0xad, 0x0f, 0xf6, 0xfe, 0x27, 0xdb,
76838c2ecf20Sopenharmony_ci	0xc4, 0x13, 0x70, 0xf1, 0x62, 0x1a, 0x4f, 0x79,
76848c2ecf20Sopenharmony_ci	0x40, 0xc9, 0x9b, 0x8b, 0x21, 0xea, 0x84, 0xfa,
76858c2ecf20Sopenharmony_ci	0xf5, 0xf1, 0x89, 0xce, 0xb7, 0x55, 0x0a, 0x80,
76868c2ecf20Sopenharmony_ci	0x39, 0x2f, 0x55, 0x36, 0x16, 0x9c, 0x7b, 0x08,
76878c2ecf20Sopenharmony_ci	0xbd, 0x87, 0x0d, 0xa5, 0x32, 0xf1, 0x52, 0x7c,
76888c2ecf20Sopenharmony_ci	0xe8, 0x55, 0x60, 0x5b, 0xd7, 0x69, 0xe4, 0xfc,
76898c2ecf20Sopenharmony_ci	0xfa, 0x12, 0x85, 0x96, 0xea, 0x50, 0x28, 0xab,
76908c2ecf20Sopenharmony_ci	0x8a, 0xf7, 0xbb, 0x0e, 0x53, 0x74, 0xca, 0xa6,
76918c2ecf20Sopenharmony_ci	0x27, 0x09, 0xc2, 0xb5, 0xde, 0x18, 0x14, 0xd9,
76928c2ecf20Sopenharmony_ci	0xea, 0xe5, 0x29, 0x1c, 0x40, 0x56, 0xcf, 0xd7,
76938c2ecf20Sopenharmony_ci	0xae, 0x05, 0x3f, 0x65, 0xaf, 0x05, 0x73, 0xe2,
76948c2ecf20Sopenharmony_ci	0x35, 0x96, 0x27, 0x07, 0x14, 0xc0, 0xad, 0x33,
76958c2ecf20Sopenharmony_ci	0xf1, 0xdc, 0x44, 0x7a, 0x89, 0x17, 0x77, 0xd2,
76968c2ecf20Sopenharmony_ci	0x9c, 0x58, 0x60, 0xf0, 0x3f, 0x7b, 0x2d, 0x2e,
76978c2ecf20Sopenharmony_ci	0x57, 0x95, 0x54, 0x87, 0xed, 0xf2, 0xc7, 0x4c,
76988c2ecf20Sopenharmony_ci	0xf0, 0xae, 0x56, 0x29, 0x19, 0x7d, 0x66, 0x4b,
76998c2ecf20Sopenharmony_ci	0x9b, 0x83, 0x84, 0x42, 0x3b, 0x01, 0x25, 0x66,
77008c2ecf20Sopenharmony_ci	0x8e, 0x02, 0xde, 0xb9, 0x83, 0x54, 0x19, 0xf6,
77018c2ecf20Sopenharmony_ci	0x9f, 0x79, 0x0d, 0x67, 0xc5, 0x1d, 0x7a, 0x44,
77028c2ecf20Sopenharmony_ci	0x02, 0x98, 0xa7, 0x16, 0x1c, 0x29, 0x0d, 0x74,
77038c2ecf20Sopenharmony_ci	0xff, 0x85, 0x40, 0x06, 0xef, 0x2c, 0xa9, 0xc6,
77048c2ecf20Sopenharmony_ci	0xf5, 0x53, 0x07, 0x06, 0xae, 0xe4, 0xfa, 0x5f,
77058c2ecf20Sopenharmony_ci	0xd8, 0x39, 0x4d, 0xf1, 0x9b, 0x6b, 0xd9, 0x24,
77068c2ecf20Sopenharmony_ci	0x84, 0xfe, 0x03, 0x4c, 0xb2, 0x3f, 0xdf, 0xa1,
77078c2ecf20Sopenharmony_ci	0x05, 0x9e, 0x50, 0x14, 0x5a, 0xd9, 0x1a, 0xa2,
77088c2ecf20Sopenharmony_ci	0xa7, 0xfa, 0xfa, 0x17, 0xf7, 0x78, 0xd6, 0xb5,
77098c2ecf20Sopenharmony_ci	0x92, 0x61, 0x91, 0xac, 0x36, 0xfa, 0x56, 0x0d,
77108c2ecf20Sopenharmony_ci	0x38, 0x32, 0x18, 0x85, 0x08, 0x58, 0x37, 0xf0,
77118c2ecf20Sopenharmony_ci	0x4b, 0xdb, 0x59, 0xe7, 0xa4, 0x34, 0xc0, 0x1b,
77128c2ecf20Sopenharmony_ci	0x01, 0xaf, 0x2d, 0xde, 0xa1, 0xaa, 0x5d, 0xd3,
77138c2ecf20Sopenharmony_ci	0xec, 0xe1, 0xd4, 0xf7, 0xe6, 0x54, 0x68, 0xf0,
77148c2ecf20Sopenharmony_ci	0x51, 0x97, 0xa7, 0x89, 0xea, 0x24, 0xad, 0xd3,
77158c2ecf20Sopenharmony_ci	0x6e, 0x47, 0x93, 0x8b, 0x4b, 0xb4, 0xf7, 0x1c,
77168c2ecf20Sopenharmony_ci	0x42, 0x06, 0x67, 0xe8, 0x99, 0xf6, 0xf5, 0x7b,
77178c2ecf20Sopenharmony_ci	0x85, 0xb5, 0x65, 0xb5, 0xb5, 0xd2, 0x37, 0xf5,
77188c2ecf20Sopenharmony_ci	0xf3, 0x02, 0xa6, 0x4d, 0x11, 0xa7, 0xdc, 0x51,
77198c2ecf20Sopenharmony_ci	0x09, 0x7f, 0xa0, 0xd8, 0x88, 0x1c, 0x13, 0x71,
77208c2ecf20Sopenharmony_ci	0xae, 0x9c, 0xb7, 0x7b, 0x34, 0xd6, 0x4e, 0x68,
77218c2ecf20Sopenharmony_ci	0x26, 0x83, 0x51, 0xaf, 0x1d, 0xee, 0x8b, 0xbb,
77228c2ecf20Sopenharmony_ci	0x69, 0x43, 0x2b, 0x9e, 0x8a, 0xbc, 0x02, 0x0e,
77238c2ecf20Sopenharmony_ci	0xa0, 0x1b, 0xe0, 0xa8, 0x5f, 0x6f, 0xaf, 0x1b,
77248c2ecf20Sopenharmony_ci	0x8f, 0xe7, 0x64, 0x71, 0x74, 0x11, 0x7e, 0xa8,
77258c2ecf20Sopenharmony_ci	0xd8, 0xf9, 0x97, 0x06, 0xc3, 0xb6, 0xfb, 0xfb,
77268c2ecf20Sopenharmony_ci	0xb7, 0x3d, 0x35, 0x9d, 0x3b, 0x52, 0xed, 0x54,
77278c2ecf20Sopenharmony_ci	0xca, 0xf4, 0x81, 0x01, 0x2d, 0x1b, 0xc3, 0xa7,
77288c2ecf20Sopenharmony_ci	0x00, 0x3d, 0x1a, 0x39, 0x54, 0xe1, 0xf6, 0xff,
77298c2ecf20Sopenharmony_ci	0xed, 0x6f, 0x0b, 0x5a, 0x68, 0xda, 0x58, 0xdd,
77308c2ecf20Sopenharmony_ci	0xa9, 0xcf, 0x5c, 0x4a, 0xe5, 0x09, 0x4e, 0xde,
77318c2ecf20Sopenharmony_ci	0x9d, 0xbc, 0x3e, 0xee, 0x5a, 0x00, 0x3b, 0x2c,
77328c2ecf20Sopenharmony_ci	0x87, 0x10, 0x65, 0x60, 0xdd, 0xd7, 0x56, 0xd1,
77338c2ecf20Sopenharmony_ci	0x4c, 0x64, 0x45, 0xe4, 0x21, 0xec, 0x78, 0xf8,
77348c2ecf20Sopenharmony_ci	0x25, 0x7a, 0x3e, 0x16, 0x5d, 0x09, 0x53, 0x14,
77358c2ecf20Sopenharmony_ci	0xbe, 0x4f, 0xae, 0x87, 0xd8, 0xd1, 0xaa, 0x3c,
77368c2ecf20Sopenharmony_ci	0xf6, 0x3e, 0xa4, 0x70, 0x8c, 0x5e, 0x70, 0xa4,
77378c2ecf20Sopenharmony_ci	0xb3, 0x6b, 0x66, 0x73, 0xd3, 0xbf, 0x31, 0x06,
77388c2ecf20Sopenharmony_ci	0x19, 0x62, 0x93, 0x15, 0xf2, 0x86, 0xe4, 0x52,
77398c2ecf20Sopenharmony_ci	0x7e, 0x53, 0x4c, 0x12, 0x38, 0xcc, 0x34, 0x7d,
77408c2ecf20Sopenharmony_ci	0x57, 0xf6, 0x42, 0x93, 0x8a, 0xc4, 0xee, 0x5c,
77418c2ecf20Sopenharmony_ci	0x8a, 0xe1, 0x52, 0x8f, 0x56, 0x64, 0xf6, 0xa6,
77428c2ecf20Sopenharmony_ci	0xd1, 0x91, 0x57, 0x70, 0xcd, 0x11, 0x76, 0xf5,
77438c2ecf20Sopenharmony_ci	0x59, 0x60, 0x60, 0x3c, 0xc1, 0xc3, 0x0b, 0x7f,
77448c2ecf20Sopenharmony_ci	0x58, 0x1a, 0x50, 0x91, 0xf1, 0x68, 0x8f, 0x6e,
77458c2ecf20Sopenharmony_ci	0x74, 0x74, 0xa8, 0x51, 0x0b, 0xf7, 0x7a, 0x98,
77468c2ecf20Sopenharmony_ci	0x37, 0xf2, 0x0a, 0x0e, 0xa4, 0x97, 0x04, 0xb8,
77478c2ecf20Sopenharmony_ci	0x9b, 0xfd, 0xa0, 0xea, 0xf7, 0x0d, 0xe1, 0xdb,
77488c2ecf20Sopenharmony_ci	0x03, 0xf0, 0x31, 0x29, 0xf8, 0xdd, 0x6b, 0x8b,
77498c2ecf20Sopenharmony_ci	0x5d, 0xd8, 0x59, 0xa9, 0x29, 0xcf, 0x9a, 0x79,
77508c2ecf20Sopenharmony_ci	0x89, 0x19, 0x63, 0x46, 0x09, 0x79, 0x6a, 0x11,
77518c2ecf20Sopenharmony_ci	0xda, 0x63, 0x68, 0x48, 0x77, 0x23, 0xfb, 0x7d,
77528c2ecf20Sopenharmony_ci	0x3a, 0x43, 0xcb, 0x02, 0x3b, 0x7a, 0x6d, 0x10,
77538c2ecf20Sopenharmony_ci	0x2a, 0x9e, 0xac, 0xf1, 0xd4, 0x19, 0xf8, 0x23,
77548c2ecf20Sopenharmony_ci	0x64, 0x1d, 0x2c, 0x5f, 0xf2, 0xb0, 0x5c, 0x23,
77558c2ecf20Sopenharmony_ci	0x27, 0xf7, 0x27, 0x30, 0x16, 0x37, 0xb1, 0x90,
77568c2ecf20Sopenharmony_ci	0xab, 0x38, 0xfb, 0x55, 0xcd, 0x78, 0x58, 0xd4,
77578c2ecf20Sopenharmony_ci	0x7d, 0x43, 0xf6, 0x45, 0x5e, 0x55, 0x8d, 0xb1,
77588c2ecf20Sopenharmony_ci	0x02, 0x65, 0x58, 0xb4, 0x13, 0x4b, 0x36, 0xf7,
77598c2ecf20Sopenharmony_ci	0xcc, 0xfe, 0x3d, 0x0b, 0x82, 0xe2, 0x12, 0x11,
77608c2ecf20Sopenharmony_ci	0xbb, 0xe6, 0xb8, 0x3a, 0x48, 0x71, 0xc7, 0x50,
77618c2ecf20Sopenharmony_ci	0x06, 0x16, 0x3a, 0xe6, 0x7c, 0x05, 0xc7, 0xc8,
77628c2ecf20Sopenharmony_ci	0x4d, 0x2f, 0x08, 0x6a, 0x17, 0x9a, 0x95, 0x97,
77638c2ecf20Sopenharmony_ci	0x50, 0x68, 0xdc, 0x28, 0x18, 0xc4, 0x61, 0x38,
77648c2ecf20Sopenharmony_ci	0xb9, 0xe0, 0x3e, 0x78, 0xdb, 0x29, 0xe0, 0x9f,
77658c2ecf20Sopenharmony_ci	0x52, 0xdd, 0xf8, 0x4f, 0x91, 0xc1, 0xd0, 0x33,
77668c2ecf20Sopenharmony_ci	0xa1, 0x7a, 0x8e, 0x30, 0x13, 0x82, 0x07, 0x9f,
77678c2ecf20Sopenharmony_ci	0xd3, 0x31, 0x0f, 0x23, 0xbe, 0x32, 0x5a, 0x75,
77688c2ecf20Sopenharmony_ci	0xcf, 0x96, 0xb2, 0xec, 0xb5, 0x32, 0xac, 0x21,
77698c2ecf20Sopenharmony_ci	0xd1, 0x82, 0x33, 0xd3, 0x15, 0x74, 0xbd, 0x90,
77708c2ecf20Sopenharmony_ci	0xf1, 0x2c, 0xe6, 0x5f, 0x8d, 0xe3, 0x02, 0xe8,
77718c2ecf20Sopenharmony_ci	0xe9, 0xc4, 0xca, 0x96, 0xeb, 0x0e, 0xbc, 0x91,
77728c2ecf20Sopenharmony_ci	0xf4, 0xb9, 0xea, 0xd9, 0x1b, 0x75, 0xbd, 0xe1,
77738c2ecf20Sopenharmony_ci	0xac, 0x2a, 0x05, 0x37, 0x52, 0x9b, 0x1b, 0x3f,
77748c2ecf20Sopenharmony_ci	0x5a, 0xdc, 0x21, 0xc3, 0x98, 0xbb, 0xaf, 0xa3,
77758c2ecf20Sopenharmony_ci	0xf2, 0x00, 0xbf, 0x0d, 0x30, 0x89, 0x05, 0xcc,
77768c2ecf20Sopenharmony_ci	0xa5, 0x76, 0xf5, 0x06, 0xf0, 0xc6, 0x54, 0x8a,
77778c2ecf20Sopenharmony_ci	0x5d, 0xd4, 0x1e, 0xc1, 0xf2, 0xce, 0xb0, 0x62,
77788c2ecf20Sopenharmony_ci	0xc8, 0xfc, 0x59, 0x42, 0x9a, 0x90, 0x60, 0x55,
77798c2ecf20Sopenharmony_ci	0xfe, 0x88, 0xa5, 0x8b, 0xb8, 0x33, 0x0c, 0x23,
77808c2ecf20Sopenharmony_ci	0x24, 0x0d, 0x15, 0x70, 0x37, 0x1e, 0x3d, 0xf6,
77818c2ecf20Sopenharmony_ci	0xd2, 0xea, 0x92, 0x10, 0xb2, 0xc4, 0x51, 0xac,
77828c2ecf20Sopenharmony_ci	0xf2, 0xac, 0xf3, 0x6b, 0x6c, 0xaa, 0xcf, 0x12,
77838c2ecf20Sopenharmony_ci	0xc5, 0x6c, 0x90, 0x50, 0xb5, 0x0c, 0xfc, 0x1a,
77848c2ecf20Sopenharmony_ci	0x15, 0x52, 0xe9, 0x26, 0xc6, 0x52, 0xa4, 0xe7,
77858c2ecf20Sopenharmony_ci	0x81, 0x69, 0xe1, 0xe7, 0x9e, 0x30, 0x01, 0xec,
77868c2ecf20Sopenharmony_ci	0x84, 0x89, 0xb2, 0x0d, 0x66, 0xdd, 0xce, 0x28,
77878c2ecf20Sopenharmony_ci	0x5c, 0xec, 0x98, 0x46, 0x68, 0x21, 0x9f, 0x88,
77888c2ecf20Sopenharmony_ci	0x3f, 0x1f, 0x42, 0x77, 0xce, 0xd0, 0x61, 0xd4,
77898c2ecf20Sopenharmony_ci	0x20, 0xa7, 0xff, 0x53, 0xad, 0x37, 0xd0, 0x17,
77908c2ecf20Sopenharmony_ci	0x35, 0xc9, 0xfc, 0xba, 0x0a, 0x78, 0x3f, 0xf2,
77918c2ecf20Sopenharmony_ci	0xcc, 0x86, 0x89, 0xe8, 0x4b, 0x3c, 0x48, 0x33,
77928c2ecf20Sopenharmony_ci	0x09, 0x7f, 0xc6, 0xc0, 0xdd, 0xb8, 0xfd, 0x7a,
77938c2ecf20Sopenharmony_ci	0x66, 0x66, 0x65, 0xeb, 0x47, 0xa7, 0x04, 0x28,
77948c2ecf20Sopenharmony_ci	0xa3, 0x19, 0x8e, 0xa9, 0xb1, 0x13, 0x67, 0x62,
77958c2ecf20Sopenharmony_ci	0x70, 0xcf, 0xd6
77968c2ecf20Sopenharmony_ci};
77978c2ecf20Sopenharmony_cistatic const u8 dec_output012[] __initconst = {
77988c2ecf20Sopenharmony_ci	0x74, 0xa6, 0x3e, 0xe4, 0xb1, 0xcb, 0xaf, 0xb0,
77998c2ecf20Sopenharmony_ci	0x40, 0xe5, 0x0f, 0x9e, 0xf1, 0xf2, 0x89, 0xb5,
78008c2ecf20Sopenharmony_ci	0x42, 0x34, 0x8a, 0xa1, 0x03, 0xb7, 0xe9, 0x57,
78018c2ecf20Sopenharmony_ci	0x46, 0xbe, 0x20, 0xe4, 0x6e, 0xb0, 0xeb, 0xff,
78028c2ecf20Sopenharmony_ci	0xea, 0x07, 0x7e, 0xef, 0xe2, 0x55, 0x9f, 0xe5,
78038c2ecf20Sopenharmony_ci	0x78, 0x3a, 0xb7, 0x83, 0xc2, 0x18, 0x40, 0x7b,
78048c2ecf20Sopenharmony_ci	0xeb, 0xcd, 0x81, 0xfb, 0x90, 0x12, 0x9e, 0x46,
78058c2ecf20Sopenharmony_ci	0xa9, 0xd6, 0x4a, 0xba, 0xb0, 0x62, 0xdb, 0x6b,
78068c2ecf20Sopenharmony_ci	0x99, 0xc4, 0xdb, 0x54, 0x4b, 0xb8, 0xa5, 0x71,
78078c2ecf20Sopenharmony_ci	0xcb, 0xcd, 0x63, 0x32, 0x55, 0xfb, 0x31, 0xf0,
78088c2ecf20Sopenharmony_ci	0x38, 0xf5, 0xbe, 0x78, 0xe4, 0x45, 0xce, 0x1b,
78098c2ecf20Sopenharmony_ci	0x6a, 0x5b, 0x0e, 0xf4, 0x16, 0xe4, 0xb1, 0x3d,
78108c2ecf20Sopenharmony_ci	0xf6, 0x63, 0x7b, 0xa7, 0x0c, 0xde, 0x6f, 0x8f,
78118c2ecf20Sopenharmony_ci	0x74, 0xdf, 0xe0, 0x1e, 0x9d, 0xce, 0x8f, 0x24,
78128c2ecf20Sopenharmony_ci	0xef, 0x23, 0x35, 0x33, 0x7b, 0x83, 0x34, 0x23,
78138c2ecf20Sopenharmony_ci	0x58, 0x74, 0x14, 0x77, 0x1f, 0xc2, 0x4f, 0x4e,
78148c2ecf20Sopenharmony_ci	0xc6, 0x89, 0xf9, 0x52, 0x09, 0x37, 0x64, 0x14,
78158c2ecf20Sopenharmony_ci	0xc4, 0x01, 0x6b, 0x9d, 0x77, 0xe8, 0x90, 0x5d,
78168c2ecf20Sopenharmony_ci	0xa8, 0x4a, 0x2a, 0xef, 0x5c, 0x7f, 0xeb, 0xbb,
78178c2ecf20Sopenharmony_ci	0xb2, 0xc6, 0x93, 0x99, 0x66, 0xdc, 0x7f, 0xd4,
78188c2ecf20Sopenharmony_ci	0x9e, 0x2a, 0xca, 0x8d, 0xdb, 0xe7, 0x20, 0xcf,
78198c2ecf20Sopenharmony_ci	0xe4, 0x73, 0xae, 0x49, 0x7d, 0x64, 0x0f, 0x0e,
78208c2ecf20Sopenharmony_ci	0x28, 0x46, 0xa9, 0xa8, 0x32, 0xe4, 0x0e, 0xf6,
78218c2ecf20Sopenharmony_ci	0x51, 0x53, 0xb8, 0x3c, 0xb1, 0xff, 0xa3, 0x33,
78228c2ecf20Sopenharmony_ci	0x41, 0x75, 0xff, 0xf1, 0x6f, 0xf1, 0xfb, 0xbb,
78238c2ecf20Sopenharmony_ci	0x83, 0x7f, 0x06, 0x9b, 0xe7, 0x1b, 0x0a, 0xe0,
78248c2ecf20Sopenharmony_ci	0x5c, 0x33, 0x60, 0x5b, 0xdb, 0x5b, 0xed, 0xfe,
78258c2ecf20Sopenharmony_ci	0xa5, 0x16, 0x19, 0x72, 0xa3, 0x64, 0x23, 0x00,
78268c2ecf20Sopenharmony_ci	0x02, 0xc7, 0xf3, 0x6a, 0x81, 0x3e, 0x44, 0x1d,
78278c2ecf20Sopenharmony_ci	0x79, 0x15, 0x5f, 0x9a, 0xde, 0xe2, 0xfd, 0x1b,
78288c2ecf20Sopenharmony_ci	0x73, 0xc1, 0xbc, 0x23, 0xba, 0x31, 0xd2, 0x50,
78298c2ecf20Sopenharmony_ci	0xd5, 0xad, 0x7f, 0x74, 0xa7, 0xc9, 0xf8, 0x3e,
78308c2ecf20Sopenharmony_ci	0x2b, 0x26, 0x10, 0xf6, 0x03, 0x36, 0x74, 0xe4,
78318c2ecf20Sopenharmony_ci	0x0e, 0x6a, 0x72, 0xb7, 0x73, 0x0a, 0x42, 0x28,
78328c2ecf20Sopenharmony_ci	0xc2, 0xad, 0x5e, 0x03, 0xbe, 0xb8, 0x0b, 0xa8,
78338c2ecf20Sopenharmony_ci	0x5b, 0xd4, 0xb8, 0xba, 0x52, 0x89, 0xb1, 0x9b,
78348c2ecf20Sopenharmony_ci	0xc1, 0xc3, 0x65, 0x87, 0xed, 0xa5, 0xf4, 0x86,
78358c2ecf20Sopenharmony_ci	0xfd, 0x41, 0x80, 0x91, 0x27, 0x59, 0x53, 0x67,
78368c2ecf20Sopenharmony_ci	0x15, 0x78, 0x54, 0x8b, 0x2d, 0x3d, 0xc7, 0xff,
78378c2ecf20Sopenharmony_ci	0x02, 0x92, 0x07, 0x5f, 0x7a, 0x4b, 0x60, 0x59,
78388c2ecf20Sopenharmony_ci	0x3c, 0x6f, 0x5c, 0xd8, 0xec, 0x95, 0xd2, 0xfe,
78398c2ecf20Sopenharmony_ci	0xa0, 0x3b, 0xd8, 0x3f, 0xd1, 0x69, 0xa6, 0xd6,
78408c2ecf20Sopenharmony_ci	0x41, 0xb2, 0xf4, 0x4d, 0x12, 0xf4, 0x58, 0x3e,
78418c2ecf20Sopenharmony_ci	0x66, 0x64, 0x80, 0x31, 0x9b, 0xa8, 0x4c, 0x8b,
78428c2ecf20Sopenharmony_ci	0x07, 0xb2, 0xec, 0x66, 0x94, 0x66, 0x47, 0x50,
78438c2ecf20Sopenharmony_ci	0x50, 0x5f, 0x18, 0x0b, 0x0e, 0xd6, 0xc0, 0x39,
78448c2ecf20Sopenharmony_ci	0x21, 0x13, 0x9e, 0x33, 0xbc, 0x79, 0x36, 0x02,
78458c2ecf20Sopenharmony_ci	0x96, 0x70, 0xf0, 0x48, 0x67, 0x2f, 0x26, 0xe9,
78468c2ecf20Sopenharmony_ci	0x6d, 0x10, 0xbb, 0xd6, 0x3f, 0xd1, 0x64, 0x7a,
78478c2ecf20Sopenharmony_ci	0x2e, 0xbe, 0x0c, 0x61, 0xf0, 0x75, 0x42, 0x38,
78488c2ecf20Sopenharmony_ci	0x23, 0xb1, 0x9e, 0x9f, 0x7c, 0x67, 0x66, 0xd9,
78498c2ecf20Sopenharmony_ci	0x58, 0x9a, 0xf1, 0xbb, 0x41, 0x2a, 0x8d, 0x65,
78508c2ecf20Sopenharmony_ci	0x84, 0x94, 0xfc, 0xdc, 0x6a, 0x50, 0x64, 0xdb,
78518c2ecf20Sopenharmony_ci	0x56, 0x33, 0x76, 0x00, 0x10, 0xed, 0xbe, 0xd2,
78528c2ecf20Sopenharmony_ci	0x12, 0xf6, 0xf6, 0x1b, 0xa2, 0x16, 0xde, 0xae,
78538c2ecf20Sopenharmony_ci	0x31, 0x95, 0xdd, 0xb1, 0x08, 0x7e, 0x4e, 0xee,
78548c2ecf20Sopenharmony_ci	0xe7, 0xf9, 0xa5, 0xfb, 0x5b, 0x61, 0x43, 0x00,
78558c2ecf20Sopenharmony_ci	0x40, 0xf6, 0x7e, 0x02, 0x04, 0x32, 0x4e, 0x0c,
78568c2ecf20Sopenharmony_ci	0xe2, 0x66, 0x0d, 0xd7, 0x07, 0x98, 0x0e, 0xf8,
78578c2ecf20Sopenharmony_ci	0x72, 0x34, 0x6d, 0x95, 0x86, 0xd7, 0xcb, 0x31,
78588c2ecf20Sopenharmony_ci	0x54, 0x47, 0xd0, 0x38, 0x29, 0x9c, 0x5a, 0x68,
78598c2ecf20Sopenharmony_ci	0xd4, 0x87, 0x76, 0xc9, 0xe7, 0x7e, 0xe3, 0xf4,
78608c2ecf20Sopenharmony_ci	0x81, 0x6d, 0x18, 0xcb, 0xc9, 0x05, 0xaf, 0xa0,
78618c2ecf20Sopenharmony_ci	0xfb, 0x66, 0xf7, 0xf1, 0x1c, 0xc6, 0x14, 0x11,
78628c2ecf20Sopenharmony_ci	0x4f, 0x2b, 0x79, 0x42, 0x8b, 0xbc, 0xac, 0xe7,
78638c2ecf20Sopenharmony_ci	0x6c, 0xfe, 0x0f, 0x58, 0xe7, 0x7c, 0x78, 0x39,
78648c2ecf20Sopenharmony_ci	0x30, 0xb0, 0x66, 0x2c, 0x9b, 0x6d, 0x3a, 0xe1,
78658c2ecf20Sopenharmony_ci	0xcf, 0xc9, 0xa4, 0x0e, 0x6d, 0x6d, 0x8a, 0xa1,
78668c2ecf20Sopenharmony_ci	0x3a, 0xe7, 0x28, 0xd4, 0x78, 0x4c, 0xa6, 0xa2,
78678c2ecf20Sopenharmony_ci	0x2a, 0xa6, 0x03, 0x30, 0xd7, 0xa8, 0x25, 0x66,
78688c2ecf20Sopenharmony_ci	0x87, 0x2f, 0x69, 0x5c, 0x4e, 0xdd, 0xa5, 0x49,
78698c2ecf20Sopenharmony_ci	0x5d, 0x37, 0x4a, 0x59, 0xc4, 0xaf, 0x1f, 0xa2,
78708c2ecf20Sopenharmony_ci	0xe4, 0xf8, 0xa6, 0x12, 0x97, 0xd5, 0x79, 0xf5,
78718c2ecf20Sopenharmony_ci	0xe2, 0x4a, 0x2b, 0x5f, 0x61, 0xe4, 0x9e, 0xe3,
78728c2ecf20Sopenharmony_ci	0xee, 0xb8, 0xa7, 0x5b, 0x2f, 0xf4, 0x9e, 0x6c,
78738c2ecf20Sopenharmony_ci	0xfb, 0xd1, 0xc6, 0x56, 0x77, 0xba, 0x75, 0xaa,
78748c2ecf20Sopenharmony_ci	0x3d, 0x1a, 0xa8, 0x0b, 0xb3, 0x68, 0x24, 0x00,
78758c2ecf20Sopenharmony_ci	0x10, 0x7f, 0xfd, 0xd7, 0xa1, 0x8d, 0x83, 0x54,
78768c2ecf20Sopenharmony_ci	0x4f, 0x1f, 0xd8, 0x2a, 0xbe, 0x8a, 0x0c, 0x87,
78778c2ecf20Sopenharmony_ci	0xab, 0xa2, 0xde, 0xc3, 0x39, 0xbf, 0x09, 0x03,
78788c2ecf20Sopenharmony_ci	0xa5, 0xf3, 0x05, 0x28, 0xe1, 0xe1, 0xee, 0x39,
78798c2ecf20Sopenharmony_ci	0x70, 0x9c, 0xd8, 0x81, 0x12, 0x1e, 0x02, 0x40,
78808c2ecf20Sopenharmony_ci	0xd2, 0x6e, 0xf0, 0xeb, 0x1b, 0x3d, 0x22, 0xc6,
78818c2ecf20Sopenharmony_ci	0xe5, 0xe3, 0xb4, 0x5a, 0x98, 0xbb, 0xf0, 0x22,
78828c2ecf20Sopenharmony_ci	0x28, 0x8d, 0xe5, 0xd3, 0x16, 0x48, 0x24, 0xa5,
78838c2ecf20Sopenharmony_ci	0xe6, 0x66, 0x0c, 0xf9, 0x08, 0xf9, 0x7e, 0x1e,
78848c2ecf20Sopenharmony_ci	0xe1, 0x28, 0x26, 0x22, 0xc7, 0xc7, 0x0a, 0x32,
78858c2ecf20Sopenharmony_ci	0x47, 0xfa, 0xa3, 0xbe, 0x3c, 0xc4, 0xc5, 0x53,
78868c2ecf20Sopenharmony_ci	0x0a, 0xd5, 0x94, 0x4a, 0xd7, 0x93, 0xd8, 0x42,
78878c2ecf20Sopenharmony_ci	0x99, 0xb9, 0x0a, 0xdb, 0x56, 0xf7, 0xb9, 0x1c,
78888c2ecf20Sopenharmony_ci	0x53, 0x4f, 0xfa, 0xd3, 0x74, 0xad, 0xd9, 0x68,
78898c2ecf20Sopenharmony_ci	0xf1, 0x1b, 0xdf, 0x61, 0xc6, 0x5e, 0xa8, 0x48,
78908c2ecf20Sopenharmony_ci	0xfc, 0xd4, 0x4a, 0x4c, 0x3c, 0x32, 0xf7, 0x1c,
78918c2ecf20Sopenharmony_ci	0x96, 0x21, 0x9b, 0xf9, 0xa3, 0xcc, 0x5a, 0xce,
78928c2ecf20Sopenharmony_ci	0xd5, 0xd7, 0x08, 0x24, 0xf6, 0x1c, 0xfd, 0xdd,
78938c2ecf20Sopenharmony_ci	0x38, 0xc2, 0x32, 0xe9, 0xb8, 0xe7, 0xb6, 0xfa,
78948c2ecf20Sopenharmony_ci	0x9d, 0x45, 0x13, 0x2c, 0x83, 0xfd, 0x4a, 0x69,
78958c2ecf20Sopenharmony_ci	0x82, 0xcd, 0xdc, 0xb3, 0x76, 0x0c, 0x9e, 0xd8,
78968c2ecf20Sopenharmony_ci	0xf4, 0x1b, 0x45, 0x15, 0xb4, 0x97, 0xe7, 0x58,
78978c2ecf20Sopenharmony_ci	0x34, 0xe2, 0x03, 0x29, 0x5a, 0xbf, 0xb6, 0xe0,
78988c2ecf20Sopenharmony_ci	0x5d, 0x13, 0xd9, 0x2b, 0xb4, 0x80, 0xb2, 0x45,
78998c2ecf20Sopenharmony_ci	0x81, 0x6a, 0x2e, 0x6c, 0x89, 0x7d, 0xee, 0xbb,
79008c2ecf20Sopenharmony_ci	0x52, 0xdd, 0x1f, 0x18, 0xe7, 0x13, 0x6b, 0x33,
79018c2ecf20Sopenharmony_ci	0x0e, 0xea, 0x36, 0x92, 0x77, 0x7b, 0x6d, 0x9c,
79028c2ecf20Sopenharmony_ci	0x5a, 0x5f, 0x45, 0x7b, 0x7b, 0x35, 0x62, 0x23,
79038c2ecf20Sopenharmony_ci	0xd1, 0xbf, 0x0f, 0xd0, 0x08, 0x1b, 0x2b, 0x80,
79048c2ecf20Sopenharmony_ci	0x6b, 0x7e, 0xf1, 0x21, 0x47, 0xb0, 0x57, 0xd1,
79058c2ecf20Sopenharmony_ci	0x98, 0x72, 0x90, 0x34, 0x1c, 0x20, 0x04, 0xff,
79068c2ecf20Sopenharmony_ci	0x3d, 0x5c, 0xee, 0x0e, 0x57, 0x5f, 0x6f, 0x24,
79078c2ecf20Sopenharmony_ci	0x4e, 0x3c, 0xea, 0xfc, 0xa5, 0xa9, 0x83, 0xc9,
79088c2ecf20Sopenharmony_ci	0x61, 0xb4, 0x51, 0x24, 0xf8, 0x27, 0x5e, 0x46,
79098c2ecf20Sopenharmony_ci	0x8c, 0xb1, 0x53, 0x02, 0x96, 0x35, 0xba, 0xb8,
79108c2ecf20Sopenharmony_ci	0x4c, 0x71, 0xd3, 0x15, 0x59, 0x35, 0x22, 0x20,
79118c2ecf20Sopenharmony_ci	0xad, 0x03, 0x9f, 0x66, 0x44, 0x3b, 0x9c, 0x35,
79128c2ecf20Sopenharmony_ci	0x37, 0x1f, 0x9b, 0xbb, 0xf3, 0xdb, 0x35, 0x63,
79138c2ecf20Sopenharmony_ci	0x30, 0x64, 0xaa, 0xa2, 0x06, 0xa8, 0x5d, 0xbb,
79148c2ecf20Sopenharmony_ci	0xe1, 0x9f, 0x70, 0xec, 0x82, 0x11, 0x06, 0x36,
79158c2ecf20Sopenharmony_ci	0xec, 0x8b, 0x69, 0x66, 0x24, 0x44, 0xc9, 0x4a,
79168c2ecf20Sopenharmony_ci	0x57, 0xbb, 0x9b, 0x78, 0x13, 0xce, 0x9c, 0x0c,
79178c2ecf20Sopenharmony_ci	0xba, 0x92, 0x93, 0x63, 0xb8, 0xe2, 0x95, 0x0f,
79188c2ecf20Sopenharmony_ci	0x0f, 0x16, 0x39, 0x52, 0xfd, 0x3a, 0x6d, 0x02,
79198c2ecf20Sopenharmony_ci	0x4b, 0xdf, 0x13, 0xd3, 0x2a, 0x22, 0xb4, 0x03,
79208c2ecf20Sopenharmony_ci	0x7c, 0x54, 0x49, 0x96, 0x68, 0x54, 0x10, 0xfa,
79218c2ecf20Sopenharmony_ci	0xef, 0xaa, 0x6c, 0xe8, 0x22, 0xdc, 0x71, 0x16,
79228c2ecf20Sopenharmony_ci	0x13, 0x1a, 0xf6, 0x28, 0xe5, 0x6d, 0x77, 0x3d,
79238c2ecf20Sopenharmony_ci	0xcd, 0x30, 0x63, 0xb1, 0x70, 0x52, 0xa1, 0xc5,
79248c2ecf20Sopenharmony_ci	0x94, 0x5f, 0xcf, 0xe8, 0xb8, 0x26, 0x98, 0xf7,
79258c2ecf20Sopenharmony_ci	0x06, 0xa0, 0x0a, 0x70, 0xfa, 0x03, 0x80, 0xac,
79268c2ecf20Sopenharmony_ci	0xc1, 0xec, 0xd6, 0x4c, 0x54, 0xd7, 0xfe, 0x47,
79278c2ecf20Sopenharmony_ci	0xb6, 0x88, 0x4a, 0xf7, 0x71, 0x24, 0xee, 0xf3,
79288c2ecf20Sopenharmony_ci	0xd2, 0xc2, 0x4a, 0x7f, 0xfe, 0x61, 0xc7, 0x35,
79298c2ecf20Sopenharmony_ci	0xc9, 0x37, 0x67, 0xcb, 0x24, 0x35, 0xda, 0x7e,
79308c2ecf20Sopenharmony_ci	0xca, 0x5f, 0xf3, 0x8d, 0xd4, 0x13, 0x8e, 0xd6,
79318c2ecf20Sopenharmony_ci	0xcb, 0x4d, 0x53, 0x8f, 0x53, 0x1f, 0xc0, 0x74,
79328c2ecf20Sopenharmony_ci	0xf7, 0x53, 0xb9, 0x5e, 0x23, 0x37, 0xba, 0x6e,
79338c2ecf20Sopenharmony_ci	0xe3, 0x9d, 0x07, 0x55, 0x25, 0x7b, 0xe6, 0x2a,
79348c2ecf20Sopenharmony_ci	0x64, 0xd1, 0x32, 0xdd, 0x54, 0x1b, 0x4b, 0xc0,
79358c2ecf20Sopenharmony_ci	0xe1, 0xd7, 0x69, 0x58, 0xf8, 0x93, 0x29, 0xc4,
79368c2ecf20Sopenharmony_ci	0xdd, 0x23, 0x2f, 0xa5, 0xfc, 0x9d, 0x7e, 0xf8,
79378c2ecf20Sopenharmony_ci	0xd4, 0x90, 0xcd, 0x82, 0x55, 0xdc, 0x16, 0x16,
79388c2ecf20Sopenharmony_ci	0x9f, 0x07, 0x52, 0x9b, 0x9d, 0x25, 0xed, 0x32,
79398c2ecf20Sopenharmony_ci	0xc5, 0x7b, 0xdf, 0xf6, 0x83, 0x46, 0x3d, 0x65,
79408c2ecf20Sopenharmony_ci	0xb7, 0xef, 0x87, 0x7a, 0x12, 0x69, 0x8f, 0x06,
79418c2ecf20Sopenharmony_ci	0x7c, 0x51, 0x15, 0x4a, 0x08, 0xe8, 0xac, 0x9a,
79428c2ecf20Sopenharmony_ci	0x0c, 0x24, 0xa7, 0x27, 0xd8, 0x46, 0x2f, 0xe7,
79438c2ecf20Sopenharmony_ci	0x01, 0x0e, 0x1c, 0xc6, 0x91, 0xb0, 0x6e, 0x85,
79448c2ecf20Sopenharmony_ci	0x65, 0xf0, 0x29, 0x0d, 0x2e, 0x6b, 0x3b, 0xfb,
79458c2ecf20Sopenharmony_ci	0x4b, 0xdf, 0xe4, 0x80, 0x93, 0x03, 0x66, 0x46,
79468c2ecf20Sopenharmony_ci	0x3e, 0x8a, 0x6e, 0xf3, 0x5e, 0x4d, 0x62, 0x0e,
79478c2ecf20Sopenharmony_ci	0x49, 0x05, 0xaf, 0xd4, 0xf8, 0x21, 0x20, 0x61,
79488c2ecf20Sopenharmony_ci	0x1d, 0x39, 0x17, 0xf4, 0x61, 0x47, 0x95, 0xfb,
79498c2ecf20Sopenharmony_ci	0x15, 0x2e, 0xb3, 0x4f, 0xd0, 0x5d, 0xf5, 0x7d,
79508c2ecf20Sopenharmony_ci	0x40, 0xda, 0x90, 0x3c, 0x6b, 0xcb, 0x17, 0x00,
79518c2ecf20Sopenharmony_ci	0x13, 0x3b, 0x64, 0x34, 0x1b, 0xf0, 0xf2, 0xe5,
79528c2ecf20Sopenharmony_ci	0x3b, 0xb2, 0xc7, 0xd3, 0x5f, 0x3a, 0x44, 0xa6,
79538c2ecf20Sopenharmony_ci	0x9b, 0xb7, 0x78, 0x0e, 0x42, 0x5d, 0x4c, 0xc1,
79548c2ecf20Sopenharmony_ci	0xe9, 0xd2, 0xcb, 0xb7, 0x78, 0xd1, 0xfe, 0x9a,
79558c2ecf20Sopenharmony_ci	0xb5, 0x07, 0xe9, 0xe0, 0xbe, 0xe2, 0x8a, 0xa7,
79568c2ecf20Sopenharmony_ci	0x01, 0x83, 0x00, 0x8c, 0x5c, 0x08, 0xe6, 0x63,
79578c2ecf20Sopenharmony_ci	0x12, 0x92, 0xb7, 0xb7, 0xa6, 0x19, 0x7d, 0x38,
79588c2ecf20Sopenharmony_ci	0x13, 0x38, 0x92, 0x87, 0x24, 0xf9, 0x48, 0xb3,
79598c2ecf20Sopenharmony_ci	0x5e, 0x87, 0x6a, 0x40, 0x39, 0x5c, 0x3f, 0xed,
79608c2ecf20Sopenharmony_ci	0x8f, 0xee, 0xdb, 0x15, 0x82, 0x06, 0xda, 0x49,
79618c2ecf20Sopenharmony_ci	0x21, 0x2b, 0xb5, 0xbf, 0x32, 0x7c, 0x9f, 0x42,
79628c2ecf20Sopenharmony_ci	0x28, 0x63, 0xcf, 0xaf, 0x1e, 0xf8, 0xc6, 0xa0,
79638c2ecf20Sopenharmony_ci	0xd1, 0x02, 0x43, 0x57, 0x62, 0xec, 0x9b, 0x0f,
79648c2ecf20Sopenharmony_ci	0x01, 0x9e, 0x71, 0xd8, 0x87, 0x9d, 0x01, 0xc1,
79658c2ecf20Sopenharmony_ci	0x58, 0x77, 0xd9, 0xaf, 0xb1, 0x10, 0x7e, 0xdd,
79668c2ecf20Sopenharmony_ci	0xa6, 0x50, 0x96, 0xe5, 0xf0, 0x72, 0x00, 0x6d,
79678c2ecf20Sopenharmony_ci	0x4b, 0xf8, 0x2a, 0x8f, 0x19, 0xf3, 0x22, 0x88,
79688c2ecf20Sopenharmony_ci	0x11, 0x4a, 0x8b, 0x7c, 0xfd, 0xb7, 0xed, 0xe1,
79698c2ecf20Sopenharmony_ci	0xf6, 0x40, 0x39, 0xe0, 0xe9, 0xf6, 0x3d, 0x25,
79708c2ecf20Sopenharmony_ci	0xe6, 0x74, 0x3c, 0x58, 0x57, 0x7f, 0xe1, 0x22,
79718c2ecf20Sopenharmony_ci	0x96, 0x47, 0x31, 0x91, 0xba, 0x70, 0x85, 0x28,
79728c2ecf20Sopenharmony_ci	0x6b, 0x9f, 0x6e, 0x25, 0xac, 0x23, 0x66, 0x2f,
79738c2ecf20Sopenharmony_ci	0x29, 0x88, 0x28, 0xce, 0x8c, 0x5c, 0x88, 0x53,
79748c2ecf20Sopenharmony_ci	0xd1, 0x3b, 0xcc, 0x6a, 0x51, 0xb2, 0xe1, 0x28,
79758c2ecf20Sopenharmony_ci	0x3f, 0x91, 0xb4, 0x0d, 0x00, 0x3a, 0xe3, 0xf8,
79768c2ecf20Sopenharmony_ci	0xc3, 0x8f, 0xd7, 0x96, 0x62, 0x0e, 0x2e, 0xfc,
79778c2ecf20Sopenharmony_ci	0xc8, 0x6c, 0x77, 0xa6, 0x1d, 0x22, 0xc1, 0xb8,
79788c2ecf20Sopenharmony_ci	0xe6, 0x61, 0xd7, 0x67, 0x36, 0x13, 0x7b, 0xbb,
79798c2ecf20Sopenharmony_ci	0x9b, 0x59, 0x09, 0xa6, 0xdf, 0xf7, 0x6b, 0xa3,
79808c2ecf20Sopenharmony_ci	0x40, 0x1a, 0xf5, 0x4f, 0xb4, 0xda, 0xd3, 0xf3,
79818c2ecf20Sopenharmony_ci	0x81, 0x93, 0xc6, 0x18, 0xd9, 0x26, 0xee, 0xac,
79828c2ecf20Sopenharmony_ci	0xf0, 0xaa, 0xdf, 0xc5, 0x9c, 0xca, 0xc2, 0xa2,
79838c2ecf20Sopenharmony_ci	0xcc, 0x7b, 0x5c, 0x24, 0xb0, 0xbc, 0xd0, 0x6a,
79848c2ecf20Sopenharmony_ci	0x4d, 0x89, 0x09, 0xb8, 0x07, 0xfe, 0x87, 0xad,
79858c2ecf20Sopenharmony_ci	0x0a, 0xea, 0xb8, 0x42, 0xf9, 0x5e, 0xb3, 0x3e,
79868c2ecf20Sopenharmony_ci	0x36, 0x4c, 0xaf, 0x75, 0x9e, 0x1c, 0xeb, 0xbd,
79878c2ecf20Sopenharmony_ci	0xbc, 0xbb, 0x80, 0x40, 0xa7, 0x3a, 0x30, 0xbf,
79888c2ecf20Sopenharmony_ci	0xa8, 0x44, 0xf4, 0xeb, 0x38, 0xad, 0x29, 0xba,
79898c2ecf20Sopenharmony_ci	0x23, 0xed, 0x41, 0x0c, 0xea, 0xd2, 0xbb, 0x41,
79908c2ecf20Sopenharmony_ci	0x18, 0xd6, 0xb9, 0xba, 0x65, 0x2b, 0xa3, 0x91,
79918c2ecf20Sopenharmony_ci	0x6d, 0x1f, 0xa9, 0xf4, 0xd1, 0x25, 0x8d, 0x4d,
79928c2ecf20Sopenharmony_ci	0x38, 0xff, 0x64, 0xa0, 0xec, 0xde, 0xa6, 0xb6,
79938c2ecf20Sopenharmony_ci	0x79, 0xab, 0x8e, 0x33, 0x6c, 0x47, 0xde, 0xaf,
79948c2ecf20Sopenharmony_ci	0x94, 0xa4, 0xa5, 0x86, 0x77, 0x55, 0x09, 0x92,
79958c2ecf20Sopenharmony_ci	0x81, 0x31, 0x76, 0xc7, 0x34, 0x22, 0x89, 0x8e,
79968c2ecf20Sopenharmony_ci	0x3d, 0x26, 0x26, 0xd7, 0xfc, 0x1e, 0x16, 0x72,
79978c2ecf20Sopenharmony_ci	0x13, 0x33, 0x63, 0xd5, 0x22, 0xbe, 0xb8, 0x04,
79988c2ecf20Sopenharmony_ci	0x34, 0x84, 0x41, 0xbb, 0x80, 0xd0, 0x9f, 0x46,
79998c2ecf20Sopenharmony_ci	0x48, 0x07, 0xa7, 0xfc, 0x2b, 0x3a, 0x75, 0x55,
80008c2ecf20Sopenharmony_ci	0x8c, 0xc7, 0x6a, 0xbd, 0x7e, 0x46, 0x08, 0x84,
80018c2ecf20Sopenharmony_ci	0x0f, 0xd5, 0x74, 0xc0, 0x82, 0x8e, 0xaa, 0x61,
80028c2ecf20Sopenharmony_ci	0x05, 0x01, 0xb2, 0x47, 0x6e, 0x20, 0x6a, 0x2d,
80038c2ecf20Sopenharmony_ci	0x58, 0x70, 0x48, 0x32, 0xa7, 0x37, 0xd2, 0xb8,
80048c2ecf20Sopenharmony_ci	0x82, 0x1a, 0x51, 0xb9, 0x61, 0xdd, 0xfd, 0x9d,
80058c2ecf20Sopenharmony_ci	0x6b, 0x0e, 0x18, 0x97, 0xf8, 0x45, 0x5f, 0x87,
80068c2ecf20Sopenharmony_ci	0x10, 0xcf, 0x34, 0x72, 0x45, 0x26, 0x49, 0x70,
80078c2ecf20Sopenharmony_ci	0xe7, 0xa3, 0x78, 0xe0, 0x52, 0x89, 0x84, 0x94,
80088c2ecf20Sopenharmony_ci	0x83, 0x82, 0xc2, 0x69, 0x8f, 0xe3, 0xe1, 0x3f,
80098c2ecf20Sopenharmony_ci	0x60, 0x74, 0x88, 0xc4, 0xf7, 0x75, 0x2c, 0xfb,
80108c2ecf20Sopenharmony_ci	0xbd, 0xb6, 0xc4, 0x7e, 0x10, 0x0a, 0x6c, 0x90,
80118c2ecf20Sopenharmony_ci	0x04, 0x9e, 0xc3, 0x3f, 0x59, 0x7c, 0xce, 0x31,
80128c2ecf20Sopenharmony_ci	0x18, 0x60, 0x57, 0x73, 0x46, 0x94, 0x7d, 0x06,
80138c2ecf20Sopenharmony_ci	0xa0, 0x6d, 0x44, 0xec, 0xa2, 0x0a, 0x9e, 0x05,
80148c2ecf20Sopenharmony_ci	0x15, 0xef, 0xca, 0x5c, 0xbf, 0x00, 0xeb, 0xf7,
80158c2ecf20Sopenharmony_ci	0x3d, 0x32, 0xd4, 0xa5, 0xef, 0x49, 0x89, 0x5e,
80168c2ecf20Sopenharmony_ci	0x46, 0xb0, 0xa6, 0x63, 0x5b, 0x8a, 0x73, 0xae,
80178c2ecf20Sopenharmony_ci	0x6f, 0xd5, 0x9d, 0xf8, 0x4f, 0x40, 0xb5, 0xb2,
80188c2ecf20Sopenharmony_ci	0x6e, 0xd3, 0xb6, 0x01, 0xa9, 0x26, 0xa2, 0x21,
80198c2ecf20Sopenharmony_ci	0xcf, 0x33, 0x7a, 0x3a, 0xa4, 0x23, 0x13, 0xb0,
80208c2ecf20Sopenharmony_ci	0x69, 0x6a, 0xee, 0xce, 0xd8, 0x9d, 0x01, 0x1d,
80218c2ecf20Sopenharmony_ci	0x50, 0xc1, 0x30, 0x6c, 0xb1, 0xcd, 0xa0, 0xf0,
80228c2ecf20Sopenharmony_ci	0xf0, 0xa2, 0x64, 0x6f, 0xbb, 0xbf, 0x5e, 0xe6,
80238c2ecf20Sopenharmony_ci	0xab, 0x87, 0xb4, 0x0f, 0x4f, 0x15, 0xaf, 0xb5,
80248c2ecf20Sopenharmony_ci	0x25, 0xa1, 0xb2, 0xd0, 0x80, 0x2c, 0xfb, 0xf9,
80258c2ecf20Sopenharmony_ci	0xfe, 0xd2, 0x33, 0xbb, 0x76, 0xfe, 0x7c, 0xa8,
80268c2ecf20Sopenharmony_ci	0x66, 0xf7, 0xe7, 0x85, 0x9f, 0x1f, 0x85, 0x57,
80278c2ecf20Sopenharmony_ci	0x88, 0xe1, 0xe9, 0x63, 0xe4, 0xd8, 0x1c, 0xa1,
80288c2ecf20Sopenharmony_ci	0xfb, 0xda, 0x44, 0x05, 0x2e, 0x1d, 0x3a, 0x1c,
80298c2ecf20Sopenharmony_ci	0xff, 0xc8, 0x3b, 0xc0, 0xfe, 0xda, 0x22, 0x0b,
80308c2ecf20Sopenharmony_ci	0x43, 0xd6, 0x88, 0x39, 0x4c, 0x4a, 0xa6, 0x69,
80318c2ecf20Sopenharmony_ci	0x18, 0x93, 0x42, 0x4e, 0xb5, 0xcc, 0x66, 0x0d,
80328c2ecf20Sopenharmony_ci	0x09, 0xf8, 0x1e, 0x7c, 0xd3, 0x3c, 0x99, 0x0d,
80338c2ecf20Sopenharmony_ci	0x50, 0x1d, 0x62, 0xe9, 0x57, 0x06, 0xbf, 0x19,
80348c2ecf20Sopenharmony_ci	0x88, 0xdd, 0xad, 0x7b, 0x4f, 0xf9, 0xc7, 0x82,
80358c2ecf20Sopenharmony_ci	0x6d, 0x8d, 0xc8, 0xc4, 0xc5, 0x78, 0x17, 0x20,
80368c2ecf20Sopenharmony_ci	0x15, 0xc5, 0x52, 0x41, 0xcf, 0x5b, 0xd6, 0x7f,
80378c2ecf20Sopenharmony_ci	0x94, 0x02, 0x41, 0xe0, 0x40, 0x22, 0x03, 0x5e,
80388c2ecf20Sopenharmony_ci	0xd1, 0x53, 0xd4, 0x86, 0xd3, 0x2c, 0x9f, 0x0f,
80398c2ecf20Sopenharmony_ci	0x96, 0xe3, 0x6b, 0x9a, 0x76, 0x32, 0x06, 0x47,
80408c2ecf20Sopenharmony_ci	0x4b, 0x11, 0xb3, 0xdd, 0x03, 0x65, 0xbd, 0x9b,
80418c2ecf20Sopenharmony_ci	0x01, 0xda, 0x9c, 0xb9, 0x7e, 0x3f, 0x6a, 0xc4,
80428c2ecf20Sopenharmony_ci	0x7b, 0xea, 0xd4, 0x3c, 0xb9, 0xfb, 0x5c, 0x6b,
80438c2ecf20Sopenharmony_ci	0x64, 0x33, 0x52, 0xba, 0x64, 0x78, 0x8f, 0xa4,
80448c2ecf20Sopenharmony_ci	0xaf, 0x7a, 0x61, 0x8d, 0xbc, 0xc5, 0x73, 0xe9,
80458c2ecf20Sopenharmony_ci	0x6b, 0x58, 0x97, 0x4b, 0xbf, 0x63, 0x22, 0xd3,
80468c2ecf20Sopenharmony_ci	0x37, 0x02, 0x54, 0xc5, 0xb9, 0x16, 0x4a, 0xf0,
80478c2ecf20Sopenharmony_ci	0x19, 0xd8, 0x94, 0x57, 0xb8, 0x8a, 0xb3, 0x16,
80488c2ecf20Sopenharmony_ci	0x3b, 0xd0, 0x84, 0x8e, 0x67, 0xa6, 0xa3, 0x7d,
80498c2ecf20Sopenharmony_ci	0x78, 0xec, 0x00
80508c2ecf20Sopenharmony_ci};
80518c2ecf20Sopenharmony_cistatic const u8 dec_assoc012[] __initconst = {
80528c2ecf20Sopenharmony_ci	0xb1, 0x69, 0x83, 0x87, 0x30, 0xaa, 0x5d, 0xb8,
80538c2ecf20Sopenharmony_ci	0x77, 0xe8, 0x21, 0xff, 0x06, 0x59, 0x35, 0xce,
80548c2ecf20Sopenharmony_ci	0x75, 0xfe, 0x38, 0xef, 0xb8, 0x91, 0x43, 0x8c,
80558c2ecf20Sopenharmony_ci	0xcf, 0x70, 0xdd, 0x0a, 0x68, 0xbf, 0xd4, 0xbc,
80568c2ecf20Sopenharmony_ci	0x16, 0x76, 0x99, 0x36, 0x1e, 0x58, 0x79, 0x5e,
80578c2ecf20Sopenharmony_ci	0xd4, 0x29, 0xf7, 0x33, 0x93, 0x48, 0xdb, 0x5f,
80588c2ecf20Sopenharmony_ci	0x01, 0xae, 0x9c, 0xb6, 0xe4, 0x88, 0x6d, 0x2b,
80598c2ecf20Sopenharmony_ci	0x76, 0x75, 0xe0, 0xf3, 0x74, 0xe2, 0xc9
80608c2ecf20Sopenharmony_ci};
80618c2ecf20Sopenharmony_cistatic const u8 dec_nonce012[] __initconst = {
80628c2ecf20Sopenharmony_ci	0x05, 0xa3, 0x93, 0xed, 0x30, 0xc5, 0xa2, 0x06
80638c2ecf20Sopenharmony_ci};
80648c2ecf20Sopenharmony_cistatic const u8 dec_key012[] __initconst = {
80658c2ecf20Sopenharmony_ci	0xb3, 0x35, 0x50, 0x03, 0x54, 0x2e, 0x40, 0x5e,
80668c2ecf20Sopenharmony_ci	0x8f, 0x59, 0x8e, 0xc5, 0x90, 0xd5, 0x27, 0x2d,
80678c2ecf20Sopenharmony_ci	0xba, 0x29, 0x2e, 0xcb, 0x1b, 0x70, 0x44, 0x1e,
80688c2ecf20Sopenharmony_ci	0x65, 0x91, 0x6e, 0x2a, 0x79, 0x22, 0xda, 0x64
80698c2ecf20Sopenharmony_ci};
80708c2ecf20Sopenharmony_ci
80718c2ecf20Sopenharmony_cistatic const u8 dec_input013[] __initconst = {
80728c2ecf20Sopenharmony_ci	0x52, 0x34, 0xb3, 0x65, 0x3b, 0xb7, 0xe5, 0xd3,
80738c2ecf20Sopenharmony_ci	0xab, 0x49, 0x17, 0x60, 0xd2, 0x52, 0x56, 0xdf,
80748c2ecf20Sopenharmony_ci	0xdf, 0x34, 0x56, 0x82, 0xe2, 0xbe, 0xe5, 0xe1,
80758c2ecf20Sopenharmony_ci	0x28, 0xd1, 0x4e, 0x5f, 0x4f, 0x01, 0x7d, 0x3f,
80768c2ecf20Sopenharmony_ci	0x99, 0x6b, 0x30, 0x6e, 0x1a, 0x7c, 0x4c, 0x8e,
80778c2ecf20Sopenharmony_ci	0x62, 0x81, 0xae, 0x86, 0x3f, 0x6b, 0xd0, 0xb5,
80788c2ecf20Sopenharmony_ci	0xa9, 0xcf, 0x50, 0xf1, 0x02, 0x12, 0xa0, 0x0b,
80798c2ecf20Sopenharmony_ci	0x24, 0xe9, 0xe6, 0x72, 0x89, 0x2c, 0x52, 0x1b,
80808c2ecf20Sopenharmony_ci	0x34, 0x38, 0xf8, 0x75, 0x5f, 0xa0, 0x74, 0xe2,
80818c2ecf20Sopenharmony_ci	0x99, 0xdd, 0xa6, 0x4b, 0x14, 0x50, 0x4e, 0xf1,
80828c2ecf20Sopenharmony_ci	0xbe, 0xd6, 0x9e, 0xdb, 0xb2, 0x24, 0x27, 0x74,
80838c2ecf20Sopenharmony_ci	0x12, 0x4a, 0x78, 0x78, 0x17, 0xa5, 0x58, 0x8e,
80848c2ecf20Sopenharmony_ci	0x2f, 0xf9, 0xf4, 0x8d, 0xee, 0x03, 0x88, 0xae,
80858c2ecf20Sopenharmony_ci	0xb8, 0x29, 0xa1, 0x2f, 0x4b, 0xee, 0x92, 0xbd,
80868c2ecf20Sopenharmony_ci	0x87, 0xb3, 0xce, 0x34, 0x21, 0x57, 0x46, 0x04,
80878c2ecf20Sopenharmony_ci	0x49, 0x0c, 0x80, 0xf2, 0x01, 0x13, 0xa1, 0x55,
80888c2ecf20Sopenharmony_ci	0xb3, 0xff, 0x44, 0x30, 0x3c, 0x1c, 0xd0, 0xef,
80898c2ecf20Sopenharmony_ci	0xbc, 0x18, 0x74, 0x26, 0xad, 0x41, 0x5b, 0x5b,
80908c2ecf20Sopenharmony_ci	0x3e, 0x9a, 0x7a, 0x46, 0x4f, 0x16, 0xd6, 0x74,
80918c2ecf20Sopenharmony_ci	0x5a, 0xb7, 0x3a, 0x28, 0x31, 0xd8, 0xae, 0x26,
80928c2ecf20Sopenharmony_ci	0xac, 0x50, 0x53, 0x86, 0xf2, 0x56, 0xd7, 0x3f,
80938c2ecf20Sopenharmony_ci	0x29, 0xbc, 0x45, 0x68, 0x8e, 0xcb, 0x98, 0x64,
80948c2ecf20Sopenharmony_ci	0xdd, 0xc9, 0xba, 0xb8, 0x4b, 0x7b, 0x82, 0xdd,
80958c2ecf20Sopenharmony_ci	0x14, 0xa7, 0xcb, 0x71, 0x72, 0x00, 0x5c, 0xad,
80968c2ecf20Sopenharmony_ci	0x7b, 0x6a, 0x89, 0xa4, 0x3d, 0xbf, 0xb5, 0x4b,
80978c2ecf20Sopenharmony_ci	0x3e, 0x7c, 0x5a, 0xcf, 0xb8, 0xa1, 0xc5, 0x6e,
80988c2ecf20Sopenharmony_ci	0xc8, 0xb6, 0x31, 0x57, 0x7b, 0xdf, 0xa5, 0x7e,
80998c2ecf20Sopenharmony_ci	0xb1, 0xd6, 0x42, 0x2a, 0x31, 0x36, 0xd1, 0xd0,
81008c2ecf20Sopenharmony_ci	0x3f, 0x7a, 0xe5, 0x94, 0xd6, 0x36, 0xa0, 0x6f,
81018c2ecf20Sopenharmony_ci	0xb7, 0x40, 0x7d, 0x37, 0xc6, 0x55, 0x7c, 0x50,
81028c2ecf20Sopenharmony_ci	0x40, 0x6d, 0x29, 0x89, 0xe3, 0x5a, 0xae, 0x97,
81038c2ecf20Sopenharmony_ci	0xe7, 0x44, 0x49, 0x6e, 0xbd, 0x81, 0x3d, 0x03,
81048c2ecf20Sopenharmony_ci	0x93, 0x06, 0x12, 0x06, 0xe2, 0x41, 0x12, 0x4a,
81058c2ecf20Sopenharmony_ci	0xf1, 0x6a, 0xa4, 0x58, 0xa2, 0xfb, 0xd2, 0x15,
81068c2ecf20Sopenharmony_ci	0xba, 0xc9, 0x79, 0xc9, 0xce, 0x5e, 0x13, 0xbb,
81078c2ecf20Sopenharmony_ci	0xf1, 0x09, 0x04, 0xcc, 0xfd, 0xe8, 0x51, 0x34,
81088c2ecf20Sopenharmony_ci	0x6a, 0xe8, 0x61, 0x88, 0xda, 0xed, 0x01, 0x47,
81098c2ecf20Sopenharmony_ci	0x84, 0xf5, 0x73, 0x25, 0xf9, 0x1c, 0x42, 0x86,
81108c2ecf20Sopenharmony_ci	0x07, 0xf3, 0x5b, 0x1a, 0x01, 0xb3, 0xeb, 0x24,
81118c2ecf20Sopenharmony_ci	0x32, 0x8d, 0xf6, 0xed, 0x7c, 0x4b, 0xeb, 0x3c,
81128c2ecf20Sopenharmony_ci	0x36, 0x42, 0x28, 0xdf, 0xdf, 0xb6, 0xbe, 0xd9,
81138c2ecf20Sopenharmony_ci	0x8c, 0x52, 0xd3, 0x2b, 0x08, 0x90, 0x8c, 0xe7,
81148c2ecf20Sopenharmony_ci	0x98, 0x31, 0xe2, 0x32, 0x8e, 0xfc, 0x11, 0x48,
81158c2ecf20Sopenharmony_ci	0x00, 0xa8, 0x6a, 0x42, 0x4a, 0x02, 0xc6, 0x4b,
81168c2ecf20Sopenharmony_ci	0x09, 0xf1, 0xe3, 0x49, 0xf3, 0x45, 0x1f, 0x0e,
81178c2ecf20Sopenharmony_ci	0xbc, 0x56, 0xe2, 0xe4, 0xdf, 0xfb, 0xeb, 0x61,
81188c2ecf20Sopenharmony_ci	0xfa, 0x24, 0xc1, 0x63, 0x75, 0xbb, 0x47, 0x75,
81198c2ecf20Sopenharmony_ci	0xaf, 0xe1, 0x53, 0x16, 0x96, 0x21, 0x85, 0x26,
81208c2ecf20Sopenharmony_ci	0x11, 0xb3, 0x76, 0xe3, 0x23, 0xa1, 0x6b, 0x74,
81218c2ecf20Sopenharmony_ci	0x37, 0xd0, 0xde, 0x06, 0x90, 0x71, 0x5d, 0x43,
81228c2ecf20Sopenharmony_ci	0x88, 0x9b, 0x00, 0x54, 0xa6, 0x75, 0x2f, 0xa1,
81238c2ecf20Sopenharmony_ci	0xc2, 0x0b, 0x73, 0x20, 0x1d, 0xb6, 0x21, 0x79,
81248c2ecf20Sopenharmony_ci	0x57, 0x3f, 0xfa, 0x09, 0xbe, 0x8a, 0x33, 0xc3,
81258c2ecf20Sopenharmony_ci	0x52, 0xf0, 0x1d, 0x82, 0x31, 0xd1, 0x55, 0xb5,
81268c2ecf20Sopenharmony_ci	0x6c, 0x99, 0x25, 0xcf, 0x5c, 0x32, 0xce, 0xe9,
81278c2ecf20Sopenharmony_ci	0x0d, 0xfa, 0x69, 0x2c, 0xd5, 0x0d, 0xc5, 0x6d,
81288c2ecf20Sopenharmony_ci	0x86, 0xd0, 0x0c, 0x3b, 0x06, 0x50, 0x79, 0xe8,
81298c2ecf20Sopenharmony_ci	0xc3, 0xae, 0x04, 0xe6, 0xcd, 0x51, 0xe4, 0x26,
81308c2ecf20Sopenharmony_ci	0x9b, 0x4f, 0x7e, 0xa6, 0x0f, 0xab, 0xd8, 0xe5,
81318c2ecf20Sopenharmony_ci	0xde, 0xa9, 0x00, 0x95, 0xbe, 0xa3, 0x9d, 0x5d,
81328c2ecf20Sopenharmony_ci	0xb2, 0x09, 0x70, 0x18, 0x1c, 0xf0, 0xac, 0x29,
81338c2ecf20Sopenharmony_ci	0x23, 0x02, 0x29, 0x28, 0xd2, 0x74, 0x35, 0x57,
81348c2ecf20Sopenharmony_ci	0x62, 0x0f, 0x24, 0xea, 0x5e, 0x33, 0xc2, 0x92,
81358c2ecf20Sopenharmony_ci	0xf3, 0x78, 0x4d, 0x30, 0x1e, 0xa1, 0x99, 0xa9,
81368c2ecf20Sopenharmony_ci	0x82, 0xb0, 0x42, 0x31, 0x8d, 0xad, 0x8a, 0xbc,
81378c2ecf20Sopenharmony_ci	0xfc, 0xd4, 0x57, 0x47, 0x3e, 0xb4, 0x50, 0xdd,
81388c2ecf20Sopenharmony_ci	0x6e, 0x2c, 0x80, 0x4d, 0x22, 0xf1, 0xfb, 0x57,
81398c2ecf20Sopenharmony_ci	0xc4, 0xdd, 0x17, 0xe1, 0x8a, 0x36, 0x4a, 0xb3,
81408c2ecf20Sopenharmony_ci	0x37, 0xca, 0xc9, 0x4e, 0xab, 0xd5, 0x69, 0xc4,
81418c2ecf20Sopenharmony_ci	0xf4, 0xbc, 0x0b, 0x3b, 0x44, 0x4b, 0x29, 0x9c,
81428c2ecf20Sopenharmony_ci	0xee, 0xd4, 0x35, 0x22, 0x21, 0xb0, 0x1f, 0x27,
81438c2ecf20Sopenharmony_ci	0x64, 0xa8, 0x51, 0x1b, 0xf0, 0x9f, 0x19, 0x5c,
81448c2ecf20Sopenharmony_ci	0xfb, 0x5a, 0x64, 0x74, 0x70, 0x45, 0x09, 0xf5,
81458c2ecf20Sopenharmony_ci	0x64, 0xfe, 0x1a, 0x2d, 0xc9, 0x14, 0x04, 0x14,
81468c2ecf20Sopenharmony_ci	0xcf, 0xd5, 0x7d, 0x60, 0xaf, 0x94, 0x39, 0x94,
81478c2ecf20Sopenharmony_ci	0xe2, 0x7d, 0x79, 0x82, 0xd0, 0x65, 0x3b, 0x6b,
81488c2ecf20Sopenharmony_ci	0x9c, 0x19, 0x84, 0xb4, 0x6d, 0xb3, 0x0c, 0x99,
81498c2ecf20Sopenharmony_ci	0xc0, 0x56, 0xa8, 0xbd, 0x73, 0xce, 0x05, 0x84,
81508c2ecf20Sopenharmony_ci	0x3e, 0x30, 0xaa, 0xc4, 0x9b, 0x1b, 0x04, 0x2a,
81518c2ecf20Sopenharmony_ci	0x9f, 0xd7, 0x43, 0x2b, 0x23, 0xdf, 0xbf, 0xaa,
81528c2ecf20Sopenharmony_ci	0xd5, 0xc2, 0x43, 0x2d, 0x70, 0xab, 0xdc, 0x75,
81538c2ecf20Sopenharmony_ci	0xad, 0xac, 0xf7, 0xc0, 0xbe, 0x67, 0xb2, 0x74,
81548c2ecf20Sopenharmony_ci	0xed, 0x67, 0x10, 0x4a, 0x92, 0x60, 0xc1, 0x40,
81558c2ecf20Sopenharmony_ci	0x50, 0x19, 0x8a, 0x8a, 0x8c, 0x09, 0x0e, 0x72,
81568c2ecf20Sopenharmony_ci	0xe1, 0x73, 0x5e, 0xe8, 0x41, 0x85, 0x63, 0x9f,
81578c2ecf20Sopenharmony_ci	0x3f, 0xd7, 0x7d, 0xc4, 0xfb, 0x22, 0x5d, 0x92,
81588c2ecf20Sopenharmony_ci	0x6c, 0xb3, 0x1e, 0xe2, 0x50, 0x2f, 0x82, 0xa8,
81598c2ecf20Sopenharmony_ci	0x28, 0xc0, 0xb5, 0xd7, 0x5f, 0x68, 0x0d, 0x2c,
81608c2ecf20Sopenharmony_ci	0x2d, 0xaf, 0x7e, 0xfa, 0x2e, 0x08, 0x0f, 0x1f,
81618c2ecf20Sopenharmony_ci	0x70, 0x9f, 0xe9, 0x19, 0x72, 0x55, 0xf8, 0xfb,
81628c2ecf20Sopenharmony_ci	0x51, 0xd2, 0x33, 0x5d, 0xa0, 0xd3, 0x2b, 0x0a,
81638c2ecf20Sopenharmony_ci	0x6c, 0xbc, 0x4e, 0xcf, 0x36, 0x4d, 0xdc, 0x3b,
81648c2ecf20Sopenharmony_ci	0xe9, 0x3e, 0x81, 0x7c, 0x61, 0xdb, 0x20, 0x2d,
81658c2ecf20Sopenharmony_ci	0x3a, 0xc3, 0xb3, 0x0c, 0x1e, 0x00, 0xb9, 0x7c,
81668c2ecf20Sopenharmony_ci	0xf5, 0xca, 0x10, 0x5f, 0x3a, 0x71, 0xb3, 0xe4,
81678c2ecf20Sopenharmony_ci	0x20, 0xdb, 0x0c, 0x2a, 0x98, 0x63, 0x45, 0x00,
81688c2ecf20Sopenharmony_ci	0x58, 0xf6, 0x68, 0xe4, 0x0b, 0xda, 0x13, 0x3b,
81698c2ecf20Sopenharmony_ci	0x60, 0x5c, 0x76, 0xdb, 0xb9, 0x97, 0x71, 0xe4,
81708c2ecf20Sopenharmony_ci	0xd9, 0xb7, 0xdb, 0xbd, 0x68, 0xc7, 0x84, 0x84,
81718c2ecf20Sopenharmony_ci	0xaa, 0x7c, 0x68, 0x62, 0x5e, 0x16, 0xfc, 0xba,
81728c2ecf20Sopenharmony_ci	0x72, 0xaa, 0x9a, 0xa9, 0xeb, 0x7c, 0x75, 0x47,
81738c2ecf20Sopenharmony_ci	0x97, 0x7e, 0xad, 0xe2, 0xd9, 0x91, 0xe8, 0xe4,
81748c2ecf20Sopenharmony_ci	0xa5, 0x31, 0xd7, 0x01, 0x8e, 0xa2, 0x11, 0x88,
81758c2ecf20Sopenharmony_ci	0x95, 0xb9, 0xf2, 0x9b, 0xd3, 0x7f, 0x1b, 0x81,
81768c2ecf20Sopenharmony_ci	0x22, 0xf7, 0x98, 0x60, 0x0a, 0x64, 0xa6, 0xc1,
81778c2ecf20Sopenharmony_ci	0xf6, 0x49, 0xc7, 0xe3, 0x07, 0x4d, 0x94, 0x7a,
81788c2ecf20Sopenharmony_ci	0xcf, 0x6e, 0x68, 0x0c, 0x1b, 0x3f, 0x6e, 0x2e,
81798c2ecf20Sopenharmony_ci	0xee, 0x92, 0xfa, 0x52, 0xb3, 0x59, 0xf8, 0xf1,
81808c2ecf20Sopenharmony_ci	0x8f, 0x6a, 0x66, 0xa3, 0x82, 0x76, 0x4a, 0x07,
81818c2ecf20Sopenharmony_ci	0x1a, 0xc7, 0xdd, 0xf5, 0xda, 0x9c, 0x3c, 0x24,
81828c2ecf20Sopenharmony_ci	0xbf, 0xfd, 0x42, 0xa1, 0x10, 0x64, 0x6a, 0x0f,
81838c2ecf20Sopenharmony_ci	0x89, 0xee, 0x36, 0xa5, 0xce, 0x99, 0x48, 0x6a,
81848c2ecf20Sopenharmony_ci	0xf0, 0x9f, 0x9e, 0x69, 0xa4, 0x40, 0x20, 0xe9,
81858c2ecf20Sopenharmony_ci	0x16, 0x15, 0xf7, 0xdb, 0x75, 0x02, 0xcb, 0xe9,
81868c2ecf20Sopenharmony_ci	0x73, 0x8b, 0x3b, 0x49, 0x2f, 0xf0, 0xaf, 0x51,
81878c2ecf20Sopenharmony_ci	0x06, 0x5c, 0xdf, 0x27, 0x27, 0x49, 0x6a, 0xd1,
81888c2ecf20Sopenharmony_ci	0xcc, 0xc7, 0xb5, 0x63, 0xb5, 0xfc, 0xb8, 0x5c,
81898c2ecf20Sopenharmony_ci	0x87, 0x7f, 0x84, 0xb4, 0xcc, 0x14, 0xa9, 0x53,
81908c2ecf20Sopenharmony_ci	0xda, 0xa4, 0x56, 0xf8, 0xb6, 0x1b, 0xcc, 0x40,
81918c2ecf20Sopenharmony_ci	0x27, 0x52, 0x06, 0x5a, 0x13, 0x81, 0xd7, 0x3a,
81928c2ecf20Sopenharmony_ci	0xd4, 0x3b, 0xfb, 0x49, 0x65, 0x31, 0x33, 0xb2,
81938c2ecf20Sopenharmony_ci	0xfa, 0xcd, 0xad, 0x58, 0x4e, 0x2b, 0xae, 0xd2,
81948c2ecf20Sopenharmony_ci	0x20, 0xfb, 0x1a, 0x48, 0xb4, 0x3f, 0x9a, 0xd8,
81958c2ecf20Sopenharmony_ci	0x7a, 0x35, 0x4a, 0xc8, 0xee, 0x88, 0x5e, 0x07,
81968c2ecf20Sopenharmony_ci	0x66, 0x54, 0xb9, 0xec, 0x9f, 0xa3, 0xe3, 0xb9,
81978c2ecf20Sopenharmony_ci	0x37, 0xaa, 0x49, 0x76, 0x31, 0xda, 0x74, 0x2d,
81988c2ecf20Sopenharmony_ci	0x3c, 0xa4, 0x65, 0x10, 0x32, 0x38, 0xf0, 0xde,
81998c2ecf20Sopenharmony_ci	0xd3, 0x99, 0x17, 0xaa, 0x71, 0xaa, 0x8f, 0x0f,
82008c2ecf20Sopenharmony_ci	0x8c, 0xaf, 0xa2, 0xf8, 0x5d, 0x64, 0xba, 0x1d,
82018c2ecf20Sopenharmony_ci	0xa3, 0xef, 0x96, 0x73, 0xe8, 0xa1, 0x02, 0x8d,
82028c2ecf20Sopenharmony_ci	0x0c, 0x6d, 0xb8, 0x06, 0x90, 0xb8, 0x08, 0x56,
82038c2ecf20Sopenharmony_ci	0x2c, 0xa7, 0x06, 0xc9, 0xc2, 0x38, 0xdb, 0x7c,
82048c2ecf20Sopenharmony_ci	0x63, 0xb1, 0x57, 0x8e, 0xea, 0x7c, 0x79, 0xf3,
82058c2ecf20Sopenharmony_ci	0x49, 0x1d, 0xfe, 0x9f, 0xf3, 0x6e, 0xb1, 0x1d,
82068c2ecf20Sopenharmony_ci	0xba, 0x19, 0x80, 0x1a, 0x0a, 0xd3, 0xb0, 0x26,
82078c2ecf20Sopenharmony_ci	0x21, 0x40, 0xb1, 0x7c, 0xf9, 0x4d, 0x8d, 0x10,
82088c2ecf20Sopenharmony_ci	0xc1, 0x7e, 0xf4, 0xf6, 0x3c, 0xa8, 0xfd, 0x7c,
82098c2ecf20Sopenharmony_ci	0xa3, 0x92, 0xb2, 0x0f, 0xaa, 0xcc, 0xa6, 0x11,
82108c2ecf20Sopenharmony_ci	0xfe, 0x04, 0xe3, 0xd1, 0x7a, 0x32, 0x89, 0xdf,
82118c2ecf20Sopenharmony_ci	0x0d, 0xc4, 0x8f, 0x79, 0x6b, 0xca, 0x16, 0x7c,
82128c2ecf20Sopenharmony_ci	0x6e, 0xf9, 0xad, 0x0f, 0xf6, 0xfe, 0x27, 0xdb,
82138c2ecf20Sopenharmony_ci	0xc4, 0x13, 0x70, 0xf1, 0x62, 0x1a, 0x4f, 0x79,
82148c2ecf20Sopenharmony_ci	0x40, 0xc9, 0x9b, 0x8b, 0x21, 0xea, 0x84, 0xfa,
82158c2ecf20Sopenharmony_ci	0xf5, 0xf1, 0x89, 0xce, 0xb7, 0x55, 0x0a, 0x80,
82168c2ecf20Sopenharmony_ci	0x39, 0x2f, 0x55, 0x36, 0x16, 0x9c, 0x7b, 0x08,
82178c2ecf20Sopenharmony_ci	0xbd, 0x87, 0x0d, 0xa5, 0x32, 0xf1, 0x52, 0x7c,
82188c2ecf20Sopenharmony_ci	0xe8, 0x55, 0x60, 0x5b, 0xd7, 0x69, 0xe4, 0xfc,
82198c2ecf20Sopenharmony_ci	0xfa, 0x12, 0x85, 0x96, 0xea, 0x50, 0x28, 0xab,
82208c2ecf20Sopenharmony_ci	0x8a, 0xf7, 0xbb, 0x0e, 0x53, 0x74, 0xca, 0xa6,
82218c2ecf20Sopenharmony_ci	0x27, 0x09, 0xc2, 0xb5, 0xde, 0x18, 0x14, 0xd9,
82228c2ecf20Sopenharmony_ci	0xea, 0xe5, 0x29, 0x1c, 0x40, 0x56, 0xcf, 0xd7,
82238c2ecf20Sopenharmony_ci	0xae, 0x05, 0x3f, 0x65, 0xaf, 0x05, 0x73, 0xe2,
82248c2ecf20Sopenharmony_ci	0x35, 0x96, 0x27, 0x07, 0x14, 0xc0, 0xad, 0x33,
82258c2ecf20Sopenharmony_ci	0xf1, 0xdc, 0x44, 0x7a, 0x89, 0x17, 0x77, 0xd2,
82268c2ecf20Sopenharmony_ci	0x9c, 0x58, 0x60, 0xf0, 0x3f, 0x7b, 0x2d, 0x2e,
82278c2ecf20Sopenharmony_ci	0x57, 0x95, 0x54, 0x87, 0xed, 0xf2, 0xc7, 0x4c,
82288c2ecf20Sopenharmony_ci	0xf0, 0xae, 0x56, 0x29, 0x19, 0x7d, 0x66, 0x4b,
82298c2ecf20Sopenharmony_ci	0x9b, 0x83, 0x84, 0x42, 0x3b, 0x01, 0x25, 0x66,
82308c2ecf20Sopenharmony_ci	0x8e, 0x02, 0xde, 0xb9, 0x83, 0x54, 0x19, 0xf6,
82318c2ecf20Sopenharmony_ci	0x9f, 0x79, 0x0d, 0x67, 0xc5, 0x1d, 0x7a, 0x44,
82328c2ecf20Sopenharmony_ci	0x02, 0x98, 0xa7, 0x16, 0x1c, 0x29, 0x0d, 0x74,
82338c2ecf20Sopenharmony_ci	0xff, 0x85, 0x40, 0x06, 0xef, 0x2c, 0xa9, 0xc6,
82348c2ecf20Sopenharmony_ci	0xf5, 0x53, 0x07, 0x06, 0xae, 0xe4, 0xfa, 0x5f,
82358c2ecf20Sopenharmony_ci	0xd8, 0x39, 0x4d, 0xf1, 0x9b, 0x6b, 0xd9, 0x24,
82368c2ecf20Sopenharmony_ci	0x84, 0xfe, 0x03, 0x4c, 0xb2, 0x3f, 0xdf, 0xa1,
82378c2ecf20Sopenharmony_ci	0x05, 0x9e, 0x50, 0x14, 0x5a, 0xd9, 0x1a, 0xa2,
82388c2ecf20Sopenharmony_ci	0xa7, 0xfa, 0xfa, 0x17, 0xf7, 0x78, 0xd6, 0xb5,
82398c2ecf20Sopenharmony_ci	0x92, 0x61, 0x91, 0xac, 0x36, 0xfa, 0x56, 0x0d,
82408c2ecf20Sopenharmony_ci	0x38, 0x32, 0x18, 0x85, 0x08, 0x58, 0x37, 0xf0,
82418c2ecf20Sopenharmony_ci	0x4b, 0xdb, 0x59, 0xe7, 0xa4, 0x34, 0xc0, 0x1b,
82428c2ecf20Sopenharmony_ci	0x01, 0xaf, 0x2d, 0xde, 0xa1, 0xaa, 0x5d, 0xd3,
82438c2ecf20Sopenharmony_ci	0xec, 0xe1, 0xd4, 0xf7, 0xe6, 0x54, 0x68, 0xf0,
82448c2ecf20Sopenharmony_ci	0x51, 0x97, 0xa7, 0x89, 0xea, 0x24, 0xad, 0xd3,
82458c2ecf20Sopenharmony_ci	0x6e, 0x47, 0x93, 0x8b, 0x4b, 0xb4, 0xf7, 0x1c,
82468c2ecf20Sopenharmony_ci	0x42, 0x06, 0x67, 0xe8, 0x99, 0xf6, 0xf5, 0x7b,
82478c2ecf20Sopenharmony_ci	0x85, 0xb5, 0x65, 0xb5, 0xb5, 0xd2, 0x37, 0xf5,
82488c2ecf20Sopenharmony_ci	0xf3, 0x02, 0xa6, 0x4d, 0x11, 0xa7, 0xdc, 0x51,
82498c2ecf20Sopenharmony_ci	0x09, 0x7f, 0xa0, 0xd8, 0x88, 0x1c, 0x13, 0x71,
82508c2ecf20Sopenharmony_ci	0xae, 0x9c, 0xb7, 0x7b, 0x34, 0xd6, 0x4e, 0x68,
82518c2ecf20Sopenharmony_ci	0x26, 0x83, 0x51, 0xaf, 0x1d, 0xee, 0x8b, 0xbb,
82528c2ecf20Sopenharmony_ci	0x69, 0x43, 0x2b, 0x9e, 0x8a, 0xbc, 0x02, 0x0e,
82538c2ecf20Sopenharmony_ci	0xa0, 0x1b, 0xe0, 0xa8, 0x5f, 0x6f, 0xaf, 0x1b,
82548c2ecf20Sopenharmony_ci	0x8f, 0xe7, 0x64, 0x71, 0x74, 0x11, 0x7e, 0xa8,
82558c2ecf20Sopenharmony_ci	0xd8, 0xf9, 0x97, 0x06, 0xc3, 0xb6, 0xfb, 0xfb,
82568c2ecf20Sopenharmony_ci	0xb7, 0x3d, 0x35, 0x9d, 0x3b, 0x52, 0xed, 0x54,
82578c2ecf20Sopenharmony_ci	0xca, 0xf4, 0x81, 0x01, 0x2d, 0x1b, 0xc3, 0xa7,
82588c2ecf20Sopenharmony_ci	0x00, 0x3d, 0x1a, 0x39, 0x54, 0xe1, 0xf6, 0xff,
82598c2ecf20Sopenharmony_ci	0xed, 0x6f, 0x0b, 0x5a, 0x68, 0xda, 0x58, 0xdd,
82608c2ecf20Sopenharmony_ci	0xa9, 0xcf, 0x5c, 0x4a, 0xe5, 0x09, 0x4e, 0xde,
82618c2ecf20Sopenharmony_ci	0x9d, 0xbc, 0x3e, 0xee, 0x5a, 0x00, 0x3b, 0x2c,
82628c2ecf20Sopenharmony_ci	0x87, 0x10, 0x65, 0x60, 0xdd, 0xd7, 0x56, 0xd1,
82638c2ecf20Sopenharmony_ci	0x4c, 0x64, 0x45, 0xe4, 0x21, 0xec, 0x78, 0xf8,
82648c2ecf20Sopenharmony_ci	0x25, 0x7a, 0x3e, 0x16, 0x5d, 0x09, 0x53, 0x14,
82658c2ecf20Sopenharmony_ci	0xbe, 0x4f, 0xae, 0x87, 0xd8, 0xd1, 0xaa, 0x3c,
82668c2ecf20Sopenharmony_ci	0xf6, 0x3e, 0xa4, 0x70, 0x8c, 0x5e, 0x70, 0xa4,
82678c2ecf20Sopenharmony_ci	0xb3, 0x6b, 0x66, 0x73, 0xd3, 0xbf, 0x31, 0x06,
82688c2ecf20Sopenharmony_ci	0x19, 0x62, 0x93, 0x15, 0xf2, 0x86, 0xe4, 0x52,
82698c2ecf20Sopenharmony_ci	0x7e, 0x53, 0x4c, 0x12, 0x38, 0xcc, 0x34, 0x7d,
82708c2ecf20Sopenharmony_ci	0x57, 0xf6, 0x42, 0x93, 0x8a, 0xc4, 0xee, 0x5c,
82718c2ecf20Sopenharmony_ci	0x8a, 0xe1, 0x52, 0x8f, 0x56, 0x64, 0xf6, 0xa6,
82728c2ecf20Sopenharmony_ci	0xd1, 0x91, 0x57, 0x70, 0xcd, 0x11, 0x76, 0xf5,
82738c2ecf20Sopenharmony_ci	0x59, 0x60, 0x60, 0x3c, 0xc1, 0xc3, 0x0b, 0x7f,
82748c2ecf20Sopenharmony_ci	0x58, 0x1a, 0x50, 0x91, 0xf1, 0x68, 0x8f, 0x6e,
82758c2ecf20Sopenharmony_ci	0x74, 0x74, 0xa8, 0x51, 0x0b, 0xf7, 0x7a, 0x98,
82768c2ecf20Sopenharmony_ci	0x37, 0xf2, 0x0a, 0x0e, 0xa4, 0x97, 0x04, 0xb8,
82778c2ecf20Sopenharmony_ci	0x9b, 0xfd, 0xa0, 0xea, 0xf7, 0x0d, 0xe1, 0xdb,
82788c2ecf20Sopenharmony_ci	0x03, 0xf0, 0x31, 0x29, 0xf8, 0xdd, 0x6b, 0x8b,
82798c2ecf20Sopenharmony_ci	0x5d, 0xd8, 0x59, 0xa9, 0x29, 0xcf, 0x9a, 0x79,
82808c2ecf20Sopenharmony_ci	0x89, 0x19, 0x63, 0x46, 0x09, 0x79, 0x6a, 0x11,
82818c2ecf20Sopenharmony_ci	0xda, 0x63, 0x68, 0x48, 0x77, 0x23, 0xfb, 0x7d,
82828c2ecf20Sopenharmony_ci	0x3a, 0x43, 0xcb, 0x02, 0x3b, 0x7a, 0x6d, 0x10,
82838c2ecf20Sopenharmony_ci	0x2a, 0x9e, 0xac, 0xf1, 0xd4, 0x19, 0xf8, 0x23,
82848c2ecf20Sopenharmony_ci	0x64, 0x1d, 0x2c, 0x5f, 0xf2, 0xb0, 0x5c, 0x23,
82858c2ecf20Sopenharmony_ci	0x27, 0xf7, 0x27, 0x30, 0x16, 0x37, 0xb1, 0x90,
82868c2ecf20Sopenharmony_ci	0xab, 0x38, 0xfb, 0x55, 0xcd, 0x78, 0x58, 0xd4,
82878c2ecf20Sopenharmony_ci	0x7d, 0x43, 0xf6, 0x45, 0x5e, 0x55, 0x8d, 0xb1,
82888c2ecf20Sopenharmony_ci	0x02, 0x65, 0x58, 0xb4, 0x13, 0x4b, 0x36, 0xf7,
82898c2ecf20Sopenharmony_ci	0xcc, 0xfe, 0x3d, 0x0b, 0x82, 0xe2, 0x12, 0x11,
82908c2ecf20Sopenharmony_ci	0xbb, 0xe6, 0xb8, 0x3a, 0x48, 0x71, 0xc7, 0x50,
82918c2ecf20Sopenharmony_ci	0x06, 0x16, 0x3a, 0xe6, 0x7c, 0x05, 0xc7, 0xc8,
82928c2ecf20Sopenharmony_ci	0x4d, 0x2f, 0x08, 0x6a, 0x17, 0x9a, 0x95, 0x97,
82938c2ecf20Sopenharmony_ci	0x50, 0x68, 0xdc, 0x28, 0x18, 0xc4, 0x61, 0x38,
82948c2ecf20Sopenharmony_ci	0xb9, 0xe0, 0x3e, 0x78, 0xdb, 0x29, 0xe0, 0x9f,
82958c2ecf20Sopenharmony_ci	0x52, 0xdd, 0xf8, 0x4f, 0x91, 0xc1, 0xd0, 0x33,
82968c2ecf20Sopenharmony_ci	0xa1, 0x7a, 0x8e, 0x30, 0x13, 0x82, 0x07, 0x9f,
82978c2ecf20Sopenharmony_ci	0xd3, 0x31, 0x0f, 0x23, 0xbe, 0x32, 0x5a, 0x75,
82988c2ecf20Sopenharmony_ci	0xcf, 0x96, 0xb2, 0xec, 0xb5, 0x32, 0xac, 0x21,
82998c2ecf20Sopenharmony_ci	0xd1, 0x82, 0x33, 0xd3, 0x15, 0x74, 0xbd, 0x90,
83008c2ecf20Sopenharmony_ci	0xf1, 0x2c, 0xe6, 0x5f, 0x8d, 0xe3, 0x02, 0xe8,
83018c2ecf20Sopenharmony_ci	0xe9, 0xc4, 0xca, 0x96, 0xeb, 0x0e, 0xbc, 0x91,
83028c2ecf20Sopenharmony_ci	0xf4, 0xb9, 0xea, 0xd9, 0x1b, 0x75, 0xbd, 0xe1,
83038c2ecf20Sopenharmony_ci	0xac, 0x2a, 0x05, 0x37, 0x52, 0x9b, 0x1b, 0x3f,
83048c2ecf20Sopenharmony_ci	0x5a, 0xdc, 0x21, 0xc3, 0x98, 0xbb, 0xaf, 0xa3,
83058c2ecf20Sopenharmony_ci	0xf2, 0x00, 0xbf, 0x0d, 0x30, 0x89, 0x05, 0xcc,
83068c2ecf20Sopenharmony_ci	0xa5, 0x76, 0xf5, 0x06, 0xf0, 0xc6, 0x54, 0x8a,
83078c2ecf20Sopenharmony_ci	0x5d, 0xd4, 0x1e, 0xc1, 0xf2, 0xce, 0xb0, 0x62,
83088c2ecf20Sopenharmony_ci	0xc8, 0xfc, 0x59, 0x42, 0x9a, 0x90, 0x60, 0x55,
83098c2ecf20Sopenharmony_ci	0xfe, 0x88, 0xa5, 0x8b, 0xb8, 0x33, 0x0c, 0x23,
83108c2ecf20Sopenharmony_ci	0x24, 0x0d, 0x15, 0x70, 0x37, 0x1e, 0x3d, 0xf6,
83118c2ecf20Sopenharmony_ci	0xd2, 0xea, 0x92, 0x10, 0xb2, 0xc4, 0x51, 0xac,
83128c2ecf20Sopenharmony_ci	0xf2, 0xac, 0xf3, 0x6b, 0x6c, 0xaa, 0xcf, 0x12,
83138c2ecf20Sopenharmony_ci	0xc5, 0x6c, 0x90, 0x50, 0xb5, 0x0c, 0xfc, 0x1a,
83148c2ecf20Sopenharmony_ci	0x15, 0x52, 0xe9, 0x26, 0xc6, 0x52, 0xa4, 0xe7,
83158c2ecf20Sopenharmony_ci	0x81, 0x69, 0xe1, 0xe7, 0x9e, 0x30, 0x01, 0xec,
83168c2ecf20Sopenharmony_ci	0x84, 0x89, 0xb2, 0x0d, 0x66, 0xdd, 0xce, 0x28,
83178c2ecf20Sopenharmony_ci	0x5c, 0xec, 0x98, 0x46, 0x68, 0x21, 0x9f, 0x88,
83188c2ecf20Sopenharmony_ci	0x3f, 0x1f, 0x42, 0x77, 0xce, 0xd0, 0x61, 0xd4,
83198c2ecf20Sopenharmony_ci	0x20, 0xa7, 0xff, 0x53, 0xad, 0x37, 0xd0, 0x17,
83208c2ecf20Sopenharmony_ci	0x35, 0xc9, 0xfc, 0xba, 0x0a, 0x78, 0x3f, 0xf2,
83218c2ecf20Sopenharmony_ci	0xcc, 0x86, 0x89, 0xe8, 0x4b, 0x3c, 0x48, 0x33,
83228c2ecf20Sopenharmony_ci	0x09, 0x7f, 0xc6, 0xc0, 0xdd, 0xb8, 0xfd, 0x7a,
83238c2ecf20Sopenharmony_ci	0x66, 0x66, 0x65, 0xeb, 0x47, 0xa7, 0x04, 0x28,
83248c2ecf20Sopenharmony_ci	0xa3, 0x19, 0x8e, 0xa9, 0xb1, 0x13, 0x67, 0x62,
83258c2ecf20Sopenharmony_ci	0x70, 0xcf, 0xd7
83268c2ecf20Sopenharmony_ci};
83278c2ecf20Sopenharmony_cistatic const u8 dec_output013[] __initconst = {
83288c2ecf20Sopenharmony_ci	0x74, 0xa6, 0x3e, 0xe4, 0xb1, 0xcb, 0xaf, 0xb0,
83298c2ecf20Sopenharmony_ci	0x40, 0xe5, 0x0f, 0x9e, 0xf1, 0xf2, 0x89, 0xb5,
83308c2ecf20Sopenharmony_ci	0x42, 0x34, 0x8a, 0xa1, 0x03, 0xb7, 0xe9, 0x57,
83318c2ecf20Sopenharmony_ci	0x46, 0xbe, 0x20, 0xe4, 0x6e, 0xb0, 0xeb, 0xff,
83328c2ecf20Sopenharmony_ci	0xea, 0x07, 0x7e, 0xef, 0xe2, 0x55, 0x9f, 0xe5,
83338c2ecf20Sopenharmony_ci	0x78, 0x3a, 0xb7, 0x83, 0xc2, 0x18, 0x40, 0x7b,
83348c2ecf20Sopenharmony_ci	0xeb, 0xcd, 0x81, 0xfb, 0x90, 0x12, 0x9e, 0x46,
83358c2ecf20Sopenharmony_ci	0xa9, 0xd6, 0x4a, 0xba, 0xb0, 0x62, 0xdb, 0x6b,
83368c2ecf20Sopenharmony_ci	0x99, 0xc4, 0xdb, 0x54, 0x4b, 0xb8, 0xa5, 0x71,
83378c2ecf20Sopenharmony_ci	0xcb, 0xcd, 0x63, 0x32, 0x55, 0xfb, 0x31, 0xf0,
83388c2ecf20Sopenharmony_ci	0x38, 0xf5, 0xbe, 0x78, 0xe4, 0x45, 0xce, 0x1b,
83398c2ecf20Sopenharmony_ci	0x6a, 0x5b, 0x0e, 0xf4, 0x16, 0xe4, 0xb1, 0x3d,
83408c2ecf20Sopenharmony_ci	0xf6, 0x63, 0x7b, 0xa7, 0x0c, 0xde, 0x6f, 0x8f,
83418c2ecf20Sopenharmony_ci	0x74, 0xdf, 0xe0, 0x1e, 0x9d, 0xce, 0x8f, 0x24,
83428c2ecf20Sopenharmony_ci	0xef, 0x23, 0x35, 0x33, 0x7b, 0x83, 0x34, 0x23,
83438c2ecf20Sopenharmony_ci	0x58, 0x74, 0x14, 0x77, 0x1f, 0xc2, 0x4f, 0x4e,
83448c2ecf20Sopenharmony_ci	0xc6, 0x89, 0xf9, 0x52, 0x09, 0x37, 0x64, 0x14,
83458c2ecf20Sopenharmony_ci	0xc4, 0x01, 0x6b, 0x9d, 0x77, 0xe8, 0x90, 0x5d,
83468c2ecf20Sopenharmony_ci	0xa8, 0x4a, 0x2a, 0xef, 0x5c, 0x7f, 0xeb, 0xbb,
83478c2ecf20Sopenharmony_ci	0xb2, 0xc6, 0x93, 0x99, 0x66, 0xdc, 0x7f, 0xd4,
83488c2ecf20Sopenharmony_ci	0x9e, 0x2a, 0xca, 0x8d, 0xdb, 0xe7, 0x20, 0xcf,
83498c2ecf20Sopenharmony_ci	0xe4, 0x73, 0xae, 0x49, 0x7d, 0x64, 0x0f, 0x0e,
83508c2ecf20Sopenharmony_ci	0x28, 0x46, 0xa9, 0xa8, 0x32, 0xe4, 0x0e, 0xf6,
83518c2ecf20Sopenharmony_ci	0x51, 0x53, 0xb8, 0x3c, 0xb1, 0xff, 0xa3, 0x33,
83528c2ecf20Sopenharmony_ci	0x41, 0x75, 0xff, 0xf1, 0x6f, 0xf1, 0xfb, 0xbb,
83538c2ecf20Sopenharmony_ci	0x83, 0x7f, 0x06, 0x9b, 0xe7, 0x1b, 0x0a, 0xe0,
83548c2ecf20Sopenharmony_ci	0x5c, 0x33, 0x60, 0x5b, 0xdb, 0x5b, 0xed, 0xfe,
83558c2ecf20Sopenharmony_ci	0xa5, 0x16, 0x19, 0x72, 0xa3, 0x64, 0x23, 0x00,
83568c2ecf20Sopenharmony_ci	0x02, 0xc7, 0xf3, 0x6a, 0x81, 0x3e, 0x44, 0x1d,
83578c2ecf20Sopenharmony_ci	0x79, 0x15, 0x5f, 0x9a, 0xde, 0xe2, 0xfd, 0x1b,
83588c2ecf20Sopenharmony_ci	0x73, 0xc1, 0xbc, 0x23, 0xba, 0x31, 0xd2, 0x50,
83598c2ecf20Sopenharmony_ci	0xd5, 0xad, 0x7f, 0x74, 0xa7, 0xc9, 0xf8, 0x3e,
83608c2ecf20Sopenharmony_ci	0x2b, 0x26, 0x10, 0xf6, 0x03, 0x36, 0x74, 0xe4,
83618c2ecf20Sopenharmony_ci	0x0e, 0x6a, 0x72, 0xb7, 0x73, 0x0a, 0x42, 0x28,
83628c2ecf20Sopenharmony_ci	0xc2, 0xad, 0x5e, 0x03, 0xbe, 0xb8, 0x0b, 0xa8,
83638c2ecf20Sopenharmony_ci	0x5b, 0xd4, 0xb8, 0xba, 0x52, 0x89, 0xb1, 0x9b,
83648c2ecf20Sopenharmony_ci	0xc1, 0xc3, 0x65, 0x87, 0xed, 0xa5, 0xf4, 0x86,
83658c2ecf20Sopenharmony_ci	0xfd, 0x41, 0x80, 0x91, 0x27, 0x59, 0x53, 0x67,
83668c2ecf20Sopenharmony_ci	0x15, 0x78, 0x54, 0x8b, 0x2d, 0x3d, 0xc7, 0xff,
83678c2ecf20Sopenharmony_ci	0x02, 0x92, 0x07, 0x5f, 0x7a, 0x4b, 0x60, 0x59,
83688c2ecf20Sopenharmony_ci	0x3c, 0x6f, 0x5c, 0xd8, 0xec, 0x95, 0xd2, 0xfe,
83698c2ecf20Sopenharmony_ci	0xa0, 0x3b, 0xd8, 0x3f, 0xd1, 0x69, 0xa6, 0xd6,
83708c2ecf20Sopenharmony_ci	0x41, 0xb2, 0xf4, 0x4d, 0x12, 0xf4, 0x58, 0x3e,
83718c2ecf20Sopenharmony_ci	0x66, 0x64, 0x80, 0x31, 0x9b, 0xa8, 0x4c, 0x8b,
83728c2ecf20Sopenharmony_ci	0x07, 0xb2, 0xec, 0x66, 0x94, 0x66, 0x47, 0x50,
83738c2ecf20Sopenharmony_ci	0x50, 0x5f, 0x18, 0x0b, 0x0e, 0xd6, 0xc0, 0x39,
83748c2ecf20Sopenharmony_ci	0x21, 0x13, 0x9e, 0x33, 0xbc, 0x79, 0x36, 0x02,
83758c2ecf20Sopenharmony_ci	0x96, 0x70, 0xf0, 0x48, 0x67, 0x2f, 0x26, 0xe9,
83768c2ecf20Sopenharmony_ci	0x6d, 0x10, 0xbb, 0xd6, 0x3f, 0xd1, 0x64, 0x7a,
83778c2ecf20Sopenharmony_ci	0x2e, 0xbe, 0x0c, 0x61, 0xf0, 0x75, 0x42, 0x38,
83788c2ecf20Sopenharmony_ci	0x23, 0xb1, 0x9e, 0x9f, 0x7c, 0x67, 0x66, 0xd9,
83798c2ecf20Sopenharmony_ci	0x58, 0x9a, 0xf1, 0xbb, 0x41, 0x2a, 0x8d, 0x65,
83808c2ecf20Sopenharmony_ci	0x84, 0x94, 0xfc, 0xdc, 0x6a, 0x50, 0x64, 0xdb,
83818c2ecf20Sopenharmony_ci	0x56, 0x33, 0x76, 0x00, 0x10, 0xed, 0xbe, 0xd2,
83828c2ecf20Sopenharmony_ci	0x12, 0xf6, 0xf6, 0x1b, 0xa2, 0x16, 0xde, 0xae,
83838c2ecf20Sopenharmony_ci	0x31, 0x95, 0xdd, 0xb1, 0x08, 0x7e, 0x4e, 0xee,
83848c2ecf20Sopenharmony_ci	0xe7, 0xf9, 0xa5, 0xfb, 0x5b, 0x61, 0x43, 0x00,
83858c2ecf20Sopenharmony_ci	0x40, 0xf6, 0x7e, 0x02, 0x04, 0x32, 0x4e, 0x0c,
83868c2ecf20Sopenharmony_ci	0xe2, 0x66, 0x0d, 0xd7, 0x07, 0x98, 0x0e, 0xf8,
83878c2ecf20Sopenharmony_ci	0x72, 0x34, 0x6d, 0x95, 0x86, 0xd7, 0xcb, 0x31,
83888c2ecf20Sopenharmony_ci	0x54, 0x47, 0xd0, 0x38, 0x29, 0x9c, 0x5a, 0x68,
83898c2ecf20Sopenharmony_ci	0xd4, 0x87, 0x76, 0xc9, 0xe7, 0x7e, 0xe3, 0xf4,
83908c2ecf20Sopenharmony_ci	0x81, 0x6d, 0x18, 0xcb, 0xc9, 0x05, 0xaf, 0xa0,
83918c2ecf20Sopenharmony_ci	0xfb, 0x66, 0xf7, 0xf1, 0x1c, 0xc6, 0x14, 0x11,
83928c2ecf20Sopenharmony_ci	0x4f, 0x2b, 0x79, 0x42, 0x8b, 0xbc, 0xac, 0xe7,
83938c2ecf20Sopenharmony_ci	0x6c, 0xfe, 0x0f, 0x58, 0xe7, 0x7c, 0x78, 0x39,
83948c2ecf20Sopenharmony_ci	0x30, 0xb0, 0x66, 0x2c, 0x9b, 0x6d, 0x3a, 0xe1,
83958c2ecf20Sopenharmony_ci	0xcf, 0xc9, 0xa4, 0x0e, 0x6d, 0x6d, 0x8a, 0xa1,
83968c2ecf20Sopenharmony_ci	0x3a, 0xe7, 0x28, 0xd4, 0x78, 0x4c, 0xa6, 0xa2,
83978c2ecf20Sopenharmony_ci	0x2a, 0xa6, 0x03, 0x30, 0xd7, 0xa8, 0x25, 0x66,
83988c2ecf20Sopenharmony_ci	0x87, 0x2f, 0x69, 0x5c, 0x4e, 0xdd, 0xa5, 0x49,
83998c2ecf20Sopenharmony_ci	0x5d, 0x37, 0x4a, 0x59, 0xc4, 0xaf, 0x1f, 0xa2,
84008c2ecf20Sopenharmony_ci	0xe4, 0xf8, 0xa6, 0x12, 0x97, 0xd5, 0x79, 0xf5,
84018c2ecf20Sopenharmony_ci	0xe2, 0x4a, 0x2b, 0x5f, 0x61, 0xe4, 0x9e, 0xe3,
84028c2ecf20Sopenharmony_ci	0xee, 0xb8, 0xa7, 0x5b, 0x2f, 0xf4, 0x9e, 0x6c,
84038c2ecf20Sopenharmony_ci	0xfb, 0xd1, 0xc6, 0x56, 0x77, 0xba, 0x75, 0xaa,
84048c2ecf20Sopenharmony_ci	0x3d, 0x1a, 0xa8, 0x0b, 0xb3, 0x68, 0x24, 0x00,
84058c2ecf20Sopenharmony_ci	0x10, 0x7f, 0xfd, 0xd7, 0xa1, 0x8d, 0x83, 0x54,
84068c2ecf20Sopenharmony_ci	0x4f, 0x1f, 0xd8, 0x2a, 0xbe, 0x8a, 0x0c, 0x87,
84078c2ecf20Sopenharmony_ci	0xab, 0xa2, 0xde, 0xc3, 0x39, 0xbf, 0x09, 0x03,
84088c2ecf20Sopenharmony_ci	0xa5, 0xf3, 0x05, 0x28, 0xe1, 0xe1, 0xee, 0x39,
84098c2ecf20Sopenharmony_ci	0x70, 0x9c, 0xd8, 0x81, 0x12, 0x1e, 0x02, 0x40,
84108c2ecf20Sopenharmony_ci	0xd2, 0x6e, 0xf0, 0xeb, 0x1b, 0x3d, 0x22, 0xc6,
84118c2ecf20Sopenharmony_ci	0xe5, 0xe3, 0xb4, 0x5a, 0x98, 0xbb, 0xf0, 0x22,
84128c2ecf20Sopenharmony_ci	0x28, 0x8d, 0xe5, 0xd3, 0x16, 0x48, 0x24, 0xa5,
84138c2ecf20Sopenharmony_ci	0xe6, 0x66, 0x0c, 0xf9, 0x08, 0xf9, 0x7e, 0x1e,
84148c2ecf20Sopenharmony_ci	0xe1, 0x28, 0x26, 0x22, 0xc7, 0xc7, 0x0a, 0x32,
84158c2ecf20Sopenharmony_ci	0x47, 0xfa, 0xa3, 0xbe, 0x3c, 0xc4, 0xc5, 0x53,
84168c2ecf20Sopenharmony_ci	0x0a, 0xd5, 0x94, 0x4a, 0xd7, 0x93, 0xd8, 0x42,
84178c2ecf20Sopenharmony_ci	0x99, 0xb9, 0x0a, 0xdb, 0x56, 0xf7, 0xb9, 0x1c,
84188c2ecf20Sopenharmony_ci	0x53, 0x4f, 0xfa, 0xd3, 0x74, 0xad, 0xd9, 0x68,
84198c2ecf20Sopenharmony_ci	0xf1, 0x1b, 0xdf, 0x61, 0xc6, 0x5e, 0xa8, 0x48,
84208c2ecf20Sopenharmony_ci	0xfc, 0xd4, 0x4a, 0x4c, 0x3c, 0x32, 0xf7, 0x1c,
84218c2ecf20Sopenharmony_ci	0x96, 0x21, 0x9b, 0xf9, 0xa3, 0xcc, 0x5a, 0xce,
84228c2ecf20Sopenharmony_ci	0xd5, 0xd7, 0x08, 0x24, 0xf6, 0x1c, 0xfd, 0xdd,
84238c2ecf20Sopenharmony_ci	0x38, 0xc2, 0x32, 0xe9, 0xb8, 0xe7, 0xb6, 0xfa,
84248c2ecf20Sopenharmony_ci	0x9d, 0x45, 0x13, 0x2c, 0x83, 0xfd, 0x4a, 0x69,
84258c2ecf20Sopenharmony_ci	0x82, 0xcd, 0xdc, 0xb3, 0x76, 0x0c, 0x9e, 0xd8,
84268c2ecf20Sopenharmony_ci	0xf4, 0x1b, 0x45, 0x15, 0xb4, 0x97, 0xe7, 0x58,
84278c2ecf20Sopenharmony_ci	0x34, 0xe2, 0x03, 0x29, 0x5a, 0xbf, 0xb6, 0xe0,
84288c2ecf20Sopenharmony_ci	0x5d, 0x13, 0xd9, 0x2b, 0xb4, 0x80, 0xb2, 0x45,
84298c2ecf20Sopenharmony_ci	0x81, 0x6a, 0x2e, 0x6c, 0x89, 0x7d, 0xee, 0xbb,
84308c2ecf20Sopenharmony_ci	0x52, 0xdd, 0x1f, 0x18, 0xe7, 0x13, 0x6b, 0x33,
84318c2ecf20Sopenharmony_ci	0x0e, 0xea, 0x36, 0x92, 0x77, 0x7b, 0x6d, 0x9c,
84328c2ecf20Sopenharmony_ci	0x5a, 0x5f, 0x45, 0x7b, 0x7b, 0x35, 0x62, 0x23,
84338c2ecf20Sopenharmony_ci	0xd1, 0xbf, 0x0f, 0xd0, 0x08, 0x1b, 0x2b, 0x80,
84348c2ecf20Sopenharmony_ci	0x6b, 0x7e, 0xf1, 0x21, 0x47, 0xb0, 0x57, 0xd1,
84358c2ecf20Sopenharmony_ci	0x98, 0x72, 0x90, 0x34, 0x1c, 0x20, 0x04, 0xff,
84368c2ecf20Sopenharmony_ci	0x3d, 0x5c, 0xee, 0x0e, 0x57, 0x5f, 0x6f, 0x24,
84378c2ecf20Sopenharmony_ci	0x4e, 0x3c, 0xea, 0xfc, 0xa5, 0xa9, 0x83, 0xc9,
84388c2ecf20Sopenharmony_ci	0x61, 0xb4, 0x51, 0x24, 0xf8, 0x27, 0x5e, 0x46,
84398c2ecf20Sopenharmony_ci	0x8c, 0xb1, 0x53, 0x02, 0x96, 0x35, 0xba, 0xb8,
84408c2ecf20Sopenharmony_ci	0x4c, 0x71, 0xd3, 0x15, 0x59, 0x35, 0x22, 0x20,
84418c2ecf20Sopenharmony_ci	0xad, 0x03, 0x9f, 0x66, 0x44, 0x3b, 0x9c, 0x35,
84428c2ecf20Sopenharmony_ci	0x37, 0x1f, 0x9b, 0xbb, 0xf3, 0xdb, 0x35, 0x63,
84438c2ecf20Sopenharmony_ci	0x30, 0x64, 0xaa, 0xa2, 0x06, 0xa8, 0x5d, 0xbb,
84448c2ecf20Sopenharmony_ci	0xe1, 0x9f, 0x70, 0xec, 0x82, 0x11, 0x06, 0x36,
84458c2ecf20Sopenharmony_ci	0xec, 0x8b, 0x69, 0x66, 0x24, 0x44, 0xc9, 0x4a,
84468c2ecf20Sopenharmony_ci	0x57, 0xbb, 0x9b, 0x78, 0x13, 0xce, 0x9c, 0x0c,
84478c2ecf20Sopenharmony_ci	0xba, 0x92, 0x93, 0x63, 0xb8, 0xe2, 0x95, 0x0f,
84488c2ecf20Sopenharmony_ci	0x0f, 0x16, 0x39, 0x52, 0xfd, 0x3a, 0x6d, 0x02,
84498c2ecf20Sopenharmony_ci	0x4b, 0xdf, 0x13, 0xd3, 0x2a, 0x22, 0xb4, 0x03,
84508c2ecf20Sopenharmony_ci	0x7c, 0x54, 0x49, 0x96, 0x68, 0x54, 0x10, 0xfa,
84518c2ecf20Sopenharmony_ci	0xef, 0xaa, 0x6c, 0xe8, 0x22, 0xdc, 0x71, 0x16,
84528c2ecf20Sopenharmony_ci	0x13, 0x1a, 0xf6, 0x28, 0xe5, 0x6d, 0x77, 0x3d,
84538c2ecf20Sopenharmony_ci	0xcd, 0x30, 0x63, 0xb1, 0x70, 0x52, 0xa1, 0xc5,
84548c2ecf20Sopenharmony_ci	0x94, 0x5f, 0xcf, 0xe8, 0xb8, 0x26, 0x98, 0xf7,
84558c2ecf20Sopenharmony_ci	0x06, 0xa0, 0x0a, 0x70, 0xfa, 0x03, 0x80, 0xac,
84568c2ecf20Sopenharmony_ci	0xc1, 0xec, 0xd6, 0x4c, 0x54, 0xd7, 0xfe, 0x47,
84578c2ecf20Sopenharmony_ci	0xb6, 0x88, 0x4a, 0xf7, 0x71, 0x24, 0xee, 0xf3,
84588c2ecf20Sopenharmony_ci	0xd2, 0xc2, 0x4a, 0x7f, 0xfe, 0x61, 0xc7, 0x35,
84598c2ecf20Sopenharmony_ci	0xc9, 0x37, 0x67, 0xcb, 0x24, 0x35, 0xda, 0x7e,
84608c2ecf20Sopenharmony_ci	0xca, 0x5f, 0xf3, 0x8d, 0xd4, 0x13, 0x8e, 0xd6,
84618c2ecf20Sopenharmony_ci	0xcb, 0x4d, 0x53, 0x8f, 0x53, 0x1f, 0xc0, 0x74,
84628c2ecf20Sopenharmony_ci	0xf7, 0x53, 0xb9, 0x5e, 0x23, 0x37, 0xba, 0x6e,
84638c2ecf20Sopenharmony_ci	0xe3, 0x9d, 0x07, 0x55, 0x25, 0x7b, 0xe6, 0x2a,
84648c2ecf20Sopenharmony_ci	0x64, 0xd1, 0x32, 0xdd, 0x54, 0x1b, 0x4b, 0xc0,
84658c2ecf20Sopenharmony_ci	0xe1, 0xd7, 0x69, 0x58, 0xf8, 0x93, 0x29, 0xc4,
84668c2ecf20Sopenharmony_ci	0xdd, 0x23, 0x2f, 0xa5, 0xfc, 0x9d, 0x7e, 0xf8,
84678c2ecf20Sopenharmony_ci	0xd4, 0x90, 0xcd, 0x82, 0x55, 0xdc, 0x16, 0x16,
84688c2ecf20Sopenharmony_ci	0x9f, 0x07, 0x52, 0x9b, 0x9d, 0x25, 0xed, 0x32,
84698c2ecf20Sopenharmony_ci	0xc5, 0x7b, 0xdf, 0xf6, 0x83, 0x46, 0x3d, 0x65,
84708c2ecf20Sopenharmony_ci	0xb7, 0xef, 0x87, 0x7a, 0x12, 0x69, 0x8f, 0x06,
84718c2ecf20Sopenharmony_ci	0x7c, 0x51, 0x15, 0x4a, 0x08, 0xe8, 0xac, 0x9a,
84728c2ecf20Sopenharmony_ci	0x0c, 0x24, 0xa7, 0x27, 0xd8, 0x46, 0x2f, 0xe7,
84738c2ecf20Sopenharmony_ci	0x01, 0x0e, 0x1c, 0xc6, 0x91, 0xb0, 0x6e, 0x85,
84748c2ecf20Sopenharmony_ci	0x65, 0xf0, 0x29, 0x0d, 0x2e, 0x6b, 0x3b, 0xfb,
84758c2ecf20Sopenharmony_ci	0x4b, 0xdf, 0xe4, 0x80, 0x93, 0x03, 0x66, 0x46,
84768c2ecf20Sopenharmony_ci	0x3e, 0x8a, 0x6e, 0xf3, 0x5e, 0x4d, 0x62, 0x0e,
84778c2ecf20Sopenharmony_ci	0x49, 0x05, 0xaf, 0xd4, 0xf8, 0x21, 0x20, 0x61,
84788c2ecf20Sopenharmony_ci	0x1d, 0x39, 0x17, 0xf4, 0x61, 0x47, 0x95, 0xfb,
84798c2ecf20Sopenharmony_ci	0x15, 0x2e, 0xb3, 0x4f, 0xd0, 0x5d, 0xf5, 0x7d,
84808c2ecf20Sopenharmony_ci	0x40, 0xda, 0x90, 0x3c, 0x6b, 0xcb, 0x17, 0x00,
84818c2ecf20Sopenharmony_ci	0x13, 0x3b, 0x64, 0x34, 0x1b, 0xf0, 0xf2, 0xe5,
84828c2ecf20Sopenharmony_ci	0x3b, 0xb2, 0xc7, 0xd3, 0x5f, 0x3a, 0x44, 0xa6,
84838c2ecf20Sopenharmony_ci	0x9b, 0xb7, 0x78, 0x0e, 0x42, 0x5d, 0x4c, 0xc1,
84848c2ecf20Sopenharmony_ci	0xe9, 0xd2, 0xcb, 0xb7, 0x78, 0xd1, 0xfe, 0x9a,
84858c2ecf20Sopenharmony_ci	0xb5, 0x07, 0xe9, 0xe0, 0xbe, 0xe2, 0x8a, 0xa7,
84868c2ecf20Sopenharmony_ci	0x01, 0x83, 0x00, 0x8c, 0x5c, 0x08, 0xe6, 0x63,
84878c2ecf20Sopenharmony_ci	0x12, 0x92, 0xb7, 0xb7, 0xa6, 0x19, 0x7d, 0x38,
84888c2ecf20Sopenharmony_ci	0x13, 0x38, 0x92, 0x87, 0x24, 0xf9, 0x48, 0xb3,
84898c2ecf20Sopenharmony_ci	0x5e, 0x87, 0x6a, 0x40, 0x39, 0x5c, 0x3f, 0xed,
84908c2ecf20Sopenharmony_ci	0x8f, 0xee, 0xdb, 0x15, 0x82, 0x06, 0xda, 0x49,
84918c2ecf20Sopenharmony_ci	0x21, 0x2b, 0xb5, 0xbf, 0x32, 0x7c, 0x9f, 0x42,
84928c2ecf20Sopenharmony_ci	0x28, 0x63, 0xcf, 0xaf, 0x1e, 0xf8, 0xc6, 0xa0,
84938c2ecf20Sopenharmony_ci	0xd1, 0x02, 0x43, 0x57, 0x62, 0xec, 0x9b, 0x0f,
84948c2ecf20Sopenharmony_ci	0x01, 0x9e, 0x71, 0xd8, 0x87, 0x9d, 0x01, 0xc1,
84958c2ecf20Sopenharmony_ci	0x58, 0x77, 0xd9, 0xaf, 0xb1, 0x10, 0x7e, 0xdd,
84968c2ecf20Sopenharmony_ci	0xa6, 0x50, 0x96, 0xe5, 0xf0, 0x72, 0x00, 0x6d,
84978c2ecf20Sopenharmony_ci	0x4b, 0xf8, 0x2a, 0x8f, 0x19, 0xf3, 0x22, 0x88,
84988c2ecf20Sopenharmony_ci	0x11, 0x4a, 0x8b, 0x7c, 0xfd, 0xb7, 0xed, 0xe1,
84998c2ecf20Sopenharmony_ci	0xf6, 0x40, 0x39, 0xe0, 0xe9, 0xf6, 0x3d, 0x25,
85008c2ecf20Sopenharmony_ci	0xe6, 0x74, 0x3c, 0x58, 0x57, 0x7f, 0xe1, 0x22,
85018c2ecf20Sopenharmony_ci	0x96, 0x47, 0x31, 0x91, 0xba, 0x70, 0x85, 0x28,
85028c2ecf20Sopenharmony_ci	0x6b, 0x9f, 0x6e, 0x25, 0xac, 0x23, 0x66, 0x2f,
85038c2ecf20Sopenharmony_ci	0x29, 0x88, 0x28, 0xce, 0x8c, 0x5c, 0x88, 0x53,
85048c2ecf20Sopenharmony_ci	0xd1, 0x3b, 0xcc, 0x6a, 0x51, 0xb2, 0xe1, 0x28,
85058c2ecf20Sopenharmony_ci	0x3f, 0x91, 0xb4, 0x0d, 0x00, 0x3a, 0xe3, 0xf8,
85068c2ecf20Sopenharmony_ci	0xc3, 0x8f, 0xd7, 0x96, 0x62, 0x0e, 0x2e, 0xfc,
85078c2ecf20Sopenharmony_ci	0xc8, 0x6c, 0x77, 0xa6, 0x1d, 0x22, 0xc1, 0xb8,
85088c2ecf20Sopenharmony_ci	0xe6, 0x61, 0xd7, 0x67, 0x36, 0x13, 0x7b, 0xbb,
85098c2ecf20Sopenharmony_ci	0x9b, 0x59, 0x09, 0xa6, 0xdf, 0xf7, 0x6b, 0xa3,
85108c2ecf20Sopenharmony_ci	0x40, 0x1a, 0xf5, 0x4f, 0xb4, 0xda, 0xd3, 0xf3,
85118c2ecf20Sopenharmony_ci	0x81, 0x93, 0xc6, 0x18, 0xd9, 0x26, 0xee, 0xac,
85128c2ecf20Sopenharmony_ci	0xf0, 0xaa, 0xdf, 0xc5, 0x9c, 0xca, 0xc2, 0xa2,
85138c2ecf20Sopenharmony_ci	0xcc, 0x7b, 0x5c, 0x24, 0xb0, 0xbc, 0xd0, 0x6a,
85148c2ecf20Sopenharmony_ci	0x4d, 0x89, 0x09, 0xb8, 0x07, 0xfe, 0x87, 0xad,
85158c2ecf20Sopenharmony_ci	0x0a, 0xea, 0xb8, 0x42, 0xf9, 0x5e, 0xb3, 0x3e,
85168c2ecf20Sopenharmony_ci	0x36, 0x4c, 0xaf, 0x75, 0x9e, 0x1c, 0xeb, 0xbd,
85178c2ecf20Sopenharmony_ci	0xbc, 0xbb, 0x80, 0x40, 0xa7, 0x3a, 0x30, 0xbf,
85188c2ecf20Sopenharmony_ci	0xa8, 0x44, 0xf4, 0xeb, 0x38, 0xad, 0x29, 0xba,
85198c2ecf20Sopenharmony_ci	0x23, 0xed, 0x41, 0x0c, 0xea, 0xd2, 0xbb, 0x41,
85208c2ecf20Sopenharmony_ci	0x18, 0xd6, 0xb9, 0xba, 0x65, 0x2b, 0xa3, 0x91,
85218c2ecf20Sopenharmony_ci	0x6d, 0x1f, 0xa9, 0xf4, 0xd1, 0x25, 0x8d, 0x4d,
85228c2ecf20Sopenharmony_ci	0x38, 0xff, 0x64, 0xa0, 0xec, 0xde, 0xa6, 0xb6,
85238c2ecf20Sopenharmony_ci	0x79, 0xab, 0x8e, 0x33, 0x6c, 0x47, 0xde, 0xaf,
85248c2ecf20Sopenharmony_ci	0x94, 0xa4, 0xa5, 0x86, 0x77, 0x55, 0x09, 0x92,
85258c2ecf20Sopenharmony_ci	0x81, 0x31, 0x76, 0xc7, 0x34, 0x22, 0x89, 0x8e,
85268c2ecf20Sopenharmony_ci	0x3d, 0x26, 0x26, 0xd7, 0xfc, 0x1e, 0x16, 0x72,
85278c2ecf20Sopenharmony_ci	0x13, 0x33, 0x63, 0xd5, 0x22, 0xbe, 0xb8, 0x04,
85288c2ecf20Sopenharmony_ci	0x34, 0x84, 0x41, 0xbb, 0x80, 0xd0, 0x9f, 0x46,
85298c2ecf20Sopenharmony_ci	0x48, 0x07, 0xa7, 0xfc, 0x2b, 0x3a, 0x75, 0x55,
85308c2ecf20Sopenharmony_ci	0x8c, 0xc7, 0x6a, 0xbd, 0x7e, 0x46, 0x08, 0x84,
85318c2ecf20Sopenharmony_ci	0x0f, 0xd5, 0x74, 0xc0, 0x82, 0x8e, 0xaa, 0x61,
85328c2ecf20Sopenharmony_ci	0x05, 0x01, 0xb2, 0x47, 0x6e, 0x20, 0x6a, 0x2d,
85338c2ecf20Sopenharmony_ci	0x58, 0x70, 0x48, 0x32, 0xa7, 0x37, 0xd2, 0xb8,
85348c2ecf20Sopenharmony_ci	0x82, 0x1a, 0x51, 0xb9, 0x61, 0xdd, 0xfd, 0x9d,
85358c2ecf20Sopenharmony_ci	0x6b, 0x0e, 0x18, 0x97, 0xf8, 0x45, 0x5f, 0x87,
85368c2ecf20Sopenharmony_ci	0x10, 0xcf, 0x34, 0x72, 0x45, 0x26, 0x49, 0x70,
85378c2ecf20Sopenharmony_ci	0xe7, 0xa3, 0x78, 0xe0, 0x52, 0x89, 0x84, 0x94,
85388c2ecf20Sopenharmony_ci	0x83, 0x82, 0xc2, 0x69, 0x8f, 0xe3, 0xe1, 0x3f,
85398c2ecf20Sopenharmony_ci	0x60, 0x74, 0x88, 0xc4, 0xf7, 0x75, 0x2c, 0xfb,
85408c2ecf20Sopenharmony_ci	0xbd, 0xb6, 0xc4, 0x7e, 0x10, 0x0a, 0x6c, 0x90,
85418c2ecf20Sopenharmony_ci	0x04, 0x9e, 0xc3, 0x3f, 0x59, 0x7c, 0xce, 0x31,
85428c2ecf20Sopenharmony_ci	0x18, 0x60, 0x57, 0x73, 0x46, 0x94, 0x7d, 0x06,
85438c2ecf20Sopenharmony_ci	0xa0, 0x6d, 0x44, 0xec, 0xa2, 0x0a, 0x9e, 0x05,
85448c2ecf20Sopenharmony_ci	0x15, 0xef, 0xca, 0x5c, 0xbf, 0x00, 0xeb, 0xf7,
85458c2ecf20Sopenharmony_ci	0x3d, 0x32, 0xd4, 0xa5, 0xef, 0x49, 0x89, 0x5e,
85468c2ecf20Sopenharmony_ci	0x46, 0xb0, 0xa6, 0x63, 0x5b, 0x8a, 0x73, 0xae,
85478c2ecf20Sopenharmony_ci	0x6f, 0xd5, 0x9d, 0xf8, 0x4f, 0x40, 0xb5, 0xb2,
85488c2ecf20Sopenharmony_ci	0x6e, 0xd3, 0xb6, 0x01, 0xa9, 0x26, 0xa2, 0x21,
85498c2ecf20Sopenharmony_ci	0xcf, 0x33, 0x7a, 0x3a, 0xa4, 0x23, 0x13, 0xb0,
85508c2ecf20Sopenharmony_ci	0x69, 0x6a, 0xee, 0xce, 0xd8, 0x9d, 0x01, 0x1d,
85518c2ecf20Sopenharmony_ci	0x50, 0xc1, 0x30, 0x6c, 0xb1, 0xcd, 0xa0, 0xf0,
85528c2ecf20Sopenharmony_ci	0xf0, 0xa2, 0x64, 0x6f, 0xbb, 0xbf, 0x5e, 0xe6,
85538c2ecf20Sopenharmony_ci	0xab, 0x87, 0xb4, 0x0f, 0x4f, 0x15, 0xaf, 0xb5,
85548c2ecf20Sopenharmony_ci	0x25, 0xa1, 0xb2, 0xd0, 0x80, 0x2c, 0xfb, 0xf9,
85558c2ecf20Sopenharmony_ci	0xfe, 0xd2, 0x33, 0xbb, 0x76, 0xfe, 0x7c, 0xa8,
85568c2ecf20Sopenharmony_ci	0x66, 0xf7, 0xe7, 0x85, 0x9f, 0x1f, 0x85, 0x57,
85578c2ecf20Sopenharmony_ci	0x88, 0xe1, 0xe9, 0x63, 0xe4, 0xd8, 0x1c, 0xa1,
85588c2ecf20Sopenharmony_ci	0xfb, 0xda, 0x44, 0x05, 0x2e, 0x1d, 0x3a, 0x1c,
85598c2ecf20Sopenharmony_ci	0xff, 0xc8, 0x3b, 0xc0, 0xfe, 0xda, 0x22, 0x0b,
85608c2ecf20Sopenharmony_ci	0x43, 0xd6, 0x88, 0x39, 0x4c, 0x4a, 0xa6, 0x69,
85618c2ecf20Sopenharmony_ci	0x18, 0x93, 0x42, 0x4e, 0xb5, 0xcc, 0x66, 0x0d,
85628c2ecf20Sopenharmony_ci	0x09, 0xf8, 0x1e, 0x7c, 0xd3, 0x3c, 0x99, 0x0d,
85638c2ecf20Sopenharmony_ci	0x50, 0x1d, 0x62, 0xe9, 0x57, 0x06, 0xbf, 0x19,
85648c2ecf20Sopenharmony_ci	0x88, 0xdd, 0xad, 0x7b, 0x4f, 0xf9, 0xc7, 0x82,
85658c2ecf20Sopenharmony_ci	0x6d, 0x8d, 0xc8, 0xc4, 0xc5, 0x78, 0x17, 0x20,
85668c2ecf20Sopenharmony_ci	0x15, 0xc5, 0x52, 0x41, 0xcf, 0x5b, 0xd6, 0x7f,
85678c2ecf20Sopenharmony_ci	0x94, 0x02, 0x41, 0xe0, 0x40, 0x22, 0x03, 0x5e,
85688c2ecf20Sopenharmony_ci	0xd1, 0x53, 0xd4, 0x86, 0xd3, 0x2c, 0x9f, 0x0f,
85698c2ecf20Sopenharmony_ci	0x96, 0xe3, 0x6b, 0x9a, 0x76, 0x32, 0x06, 0x47,
85708c2ecf20Sopenharmony_ci	0x4b, 0x11, 0xb3, 0xdd, 0x03, 0x65, 0xbd, 0x9b,
85718c2ecf20Sopenharmony_ci	0x01, 0xda, 0x9c, 0xb9, 0x7e, 0x3f, 0x6a, 0xc4,
85728c2ecf20Sopenharmony_ci	0x7b, 0xea, 0xd4, 0x3c, 0xb9, 0xfb, 0x5c, 0x6b,
85738c2ecf20Sopenharmony_ci	0x64, 0x33, 0x52, 0xba, 0x64, 0x78, 0x8f, 0xa4,
85748c2ecf20Sopenharmony_ci	0xaf, 0x7a, 0x61, 0x8d, 0xbc, 0xc5, 0x73, 0xe9,
85758c2ecf20Sopenharmony_ci	0x6b, 0x58, 0x97, 0x4b, 0xbf, 0x63, 0x22, 0xd3,
85768c2ecf20Sopenharmony_ci	0x37, 0x02, 0x54, 0xc5, 0xb9, 0x16, 0x4a, 0xf0,
85778c2ecf20Sopenharmony_ci	0x19, 0xd8, 0x94, 0x57, 0xb8, 0x8a, 0xb3, 0x16,
85788c2ecf20Sopenharmony_ci	0x3b, 0xd0, 0x84, 0x8e, 0x67, 0xa6, 0xa3, 0x7d,
85798c2ecf20Sopenharmony_ci	0x78, 0xec, 0x00
85808c2ecf20Sopenharmony_ci};
85818c2ecf20Sopenharmony_cistatic const u8 dec_assoc013[] __initconst = {
85828c2ecf20Sopenharmony_ci	0xb1, 0x69, 0x83, 0x87, 0x30, 0xaa, 0x5d, 0xb8,
85838c2ecf20Sopenharmony_ci	0x77, 0xe8, 0x21, 0xff, 0x06, 0x59, 0x35, 0xce,
85848c2ecf20Sopenharmony_ci	0x75, 0xfe, 0x38, 0xef, 0xb8, 0x91, 0x43, 0x8c,
85858c2ecf20Sopenharmony_ci	0xcf, 0x70, 0xdd, 0x0a, 0x68, 0xbf, 0xd4, 0xbc,
85868c2ecf20Sopenharmony_ci	0x16, 0x76, 0x99, 0x36, 0x1e, 0x58, 0x79, 0x5e,
85878c2ecf20Sopenharmony_ci	0xd4, 0x29, 0xf7, 0x33, 0x93, 0x48, 0xdb, 0x5f,
85888c2ecf20Sopenharmony_ci	0x01, 0xae, 0x9c, 0xb6, 0xe4, 0x88, 0x6d, 0x2b,
85898c2ecf20Sopenharmony_ci	0x76, 0x75, 0xe0, 0xf3, 0x74, 0xe2, 0xc9
85908c2ecf20Sopenharmony_ci};
85918c2ecf20Sopenharmony_cistatic const u8 dec_nonce013[] __initconst = {
85928c2ecf20Sopenharmony_ci	0x05, 0xa3, 0x93, 0xed, 0x30, 0xc5, 0xa2, 0x06
85938c2ecf20Sopenharmony_ci};
85948c2ecf20Sopenharmony_cistatic const u8 dec_key013[] __initconst = {
85958c2ecf20Sopenharmony_ci	0xb3, 0x35, 0x50, 0x03, 0x54, 0x2e, 0x40, 0x5e,
85968c2ecf20Sopenharmony_ci	0x8f, 0x59, 0x8e, 0xc5, 0x90, 0xd5, 0x27, 0x2d,
85978c2ecf20Sopenharmony_ci	0xba, 0x29, 0x2e, 0xcb, 0x1b, 0x70, 0x44, 0x1e,
85988c2ecf20Sopenharmony_ci	0x65, 0x91, 0x6e, 0x2a, 0x79, 0x22, 0xda, 0x64
85998c2ecf20Sopenharmony_ci};
86008c2ecf20Sopenharmony_ci
86018c2ecf20Sopenharmony_cistatic const struct chacha20poly1305_testvec
86028c2ecf20Sopenharmony_cichacha20poly1305_dec_vectors[] __initconst = {
86038c2ecf20Sopenharmony_ci	{ dec_input001, dec_output001, dec_assoc001, dec_nonce001, dec_key001,
86048c2ecf20Sopenharmony_ci	  sizeof(dec_input001), sizeof(dec_assoc001), sizeof(dec_nonce001) },
86058c2ecf20Sopenharmony_ci	{ dec_input002, dec_output002, dec_assoc002, dec_nonce002, dec_key002,
86068c2ecf20Sopenharmony_ci	  sizeof(dec_input002), sizeof(dec_assoc002), sizeof(dec_nonce002) },
86078c2ecf20Sopenharmony_ci	{ dec_input003, dec_output003, dec_assoc003, dec_nonce003, dec_key003,
86088c2ecf20Sopenharmony_ci	  sizeof(dec_input003), sizeof(dec_assoc003), sizeof(dec_nonce003) },
86098c2ecf20Sopenharmony_ci	{ dec_input004, dec_output004, dec_assoc004, dec_nonce004, dec_key004,
86108c2ecf20Sopenharmony_ci	  sizeof(dec_input004), sizeof(dec_assoc004), sizeof(dec_nonce004) },
86118c2ecf20Sopenharmony_ci	{ dec_input005, dec_output005, dec_assoc005, dec_nonce005, dec_key005,
86128c2ecf20Sopenharmony_ci	  sizeof(dec_input005), sizeof(dec_assoc005), sizeof(dec_nonce005) },
86138c2ecf20Sopenharmony_ci	{ dec_input006, dec_output006, dec_assoc006, dec_nonce006, dec_key006,
86148c2ecf20Sopenharmony_ci	  sizeof(dec_input006), sizeof(dec_assoc006), sizeof(dec_nonce006) },
86158c2ecf20Sopenharmony_ci	{ dec_input007, dec_output007, dec_assoc007, dec_nonce007, dec_key007,
86168c2ecf20Sopenharmony_ci	  sizeof(dec_input007), sizeof(dec_assoc007), sizeof(dec_nonce007) },
86178c2ecf20Sopenharmony_ci	{ dec_input008, dec_output008, dec_assoc008, dec_nonce008, dec_key008,
86188c2ecf20Sopenharmony_ci	  sizeof(dec_input008), sizeof(dec_assoc008), sizeof(dec_nonce008) },
86198c2ecf20Sopenharmony_ci	{ dec_input009, dec_output009, dec_assoc009, dec_nonce009, dec_key009,
86208c2ecf20Sopenharmony_ci	  sizeof(dec_input009), sizeof(dec_assoc009), sizeof(dec_nonce009) },
86218c2ecf20Sopenharmony_ci	{ dec_input010, dec_output010, dec_assoc010, dec_nonce010, dec_key010,
86228c2ecf20Sopenharmony_ci	  sizeof(dec_input010), sizeof(dec_assoc010), sizeof(dec_nonce010) },
86238c2ecf20Sopenharmony_ci	{ dec_input011, dec_output011, dec_assoc011, dec_nonce011, dec_key011,
86248c2ecf20Sopenharmony_ci	  sizeof(dec_input011), sizeof(dec_assoc011), sizeof(dec_nonce011) },
86258c2ecf20Sopenharmony_ci	{ dec_input012, dec_output012, dec_assoc012, dec_nonce012, dec_key012,
86268c2ecf20Sopenharmony_ci	  sizeof(dec_input012), sizeof(dec_assoc012), sizeof(dec_nonce012) },
86278c2ecf20Sopenharmony_ci	{ dec_input013, dec_output013, dec_assoc013, dec_nonce013, dec_key013,
86288c2ecf20Sopenharmony_ci	  sizeof(dec_input013), sizeof(dec_assoc013), sizeof(dec_nonce013),
86298c2ecf20Sopenharmony_ci	  true }
86308c2ecf20Sopenharmony_ci};
86318c2ecf20Sopenharmony_ci
86328c2ecf20Sopenharmony_cistatic const u8 xenc_input001[] __initconst = {
86338c2ecf20Sopenharmony_ci	0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74,
86348c2ecf20Sopenharmony_ci	0x2d, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x20,
86358c2ecf20Sopenharmony_ci	0x61, 0x72, 0x65, 0x20, 0x64, 0x72, 0x61, 0x66,
86368c2ecf20Sopenharmony_ci	0x74, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
86378c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x69,
86388c2ecf20Sopenharmony_ci	0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x20,
86398c2ecf20Sopenharmony_ci	0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x20,
86408c2ecf20Sopenharmony_ci	0x6f, 0x66, 0x20, 0x73, 0x69, 0x78, 0x20, 0x6d,
86418c2ecf20Sopenharmony_ci	0x6f, 0x6e, 0x74, 0x68, 0x73, 0x20, 0x61, 0x6e,
86428c2ecf20Sopenharmony_ci	0x64, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65,
86438c2ecf20Sopenharmony_ci	0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
86448c2ecf20Sopenharmony_ci	0x2c, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63,
86458c2ecf20Sopenharmony_ci	0x65, 0x64, 0x2c, 0x20, 0x6f, 0x72, 0x20, 0x6f,
86468c2ecf20Sopenharmony_ci	0x62, 0x73, 0x6f, 0x6c, 0x65, 0x74, 0x65, 0x64,
86478c2ecf20Sopenharmony_ci	0x20, 0x62, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65,
86488c2ecf20Sopenharmony_ci	0x72, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
86498c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x61, 0x74, 0x20, 0x61,
86508c2ecf20Sopenharmony_ci	0x6e, 0x79, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2e,
86518c2ecf20Sopenharmony_ci	0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x69,
86528c2ecf20Sopenharmony_ci	0x6e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x70, 0x72,
86538c2ecf20Sopenharmony_ci	0x69, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20,
86548c2ecf20Sopenharmony_ci	0x75, 0x73, 0x65, 0x20, 0x49, 0x6e, 0x74, 0x65,
86558c2ecf20Sopenharmony_ci	0x72, 0x6e, 0x65, 0x74, 0x2d, 0x44, 0x72, 0x61,
86568c2ecf20Sopenharmony_ci	0x66, 0x74, 0x73, 0x20, 0x61, 0x73, 0x20, 0x72,
86578c2ecf20Sopenharmony_ci	0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
86588c2ecf20Sopenharmony_ci	0x20, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
86598c2ecf20Sopenharmony_ci	0x6c, 0x20, 0x6f, 0x72, 0x20, 0x74, 0x6f, 0x20,
86608c2ecf20Sopenharmony_ci	0x63, 0x69, 0x74, 0x65, 0x20, 0x74, 0x68, 0x65,
86618c2ecf20Sopenharmony_ci	0x6d, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20,
86628c2ecf20Sopenharmony_ci	0x74, 0x68, 0x61, 0x6e, 0x20, 0x61, 0x73, 0x20,
86638c2ecf20Sopenharmony_ci	0x2f, 0xe2, 0x80, 0x9c, 0x77, 0x6f, 0x72, 0x6b,
86648c2ecf20Sopenharmony_ci	0x20, 0x69, 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x67,
86658c2ecf20Sopenharmony_ci	0x72, 0x65, 0x73, 0x73, 0x2e, 0x2f, 0xe2, 0x80,
86668c2ecf20Sopenharmony_ci	0x9d
86678c2ecf20Sopenharmony_ci};
86688c2ecf20Sopenharmony_cistatic const u8 xenc_output001[] __initconst = {
86698c2ecf20Sopenharmony_ci	0x1a, 0x6e, 0x3a, 0xd9, 0xfd, 0x41, 0x3f, 0x77,
86708c2ecf20Sopenharmony_ci	0x54, 0x72, 0x0a, 0x70, 0x9a, 0xa0, 0x29, 0x92,
86718c2ecf20Sopenharmony_ci	0x2e, 0xed, 0x93, 0xcf, 0x0f, 0x71, 0x88, 0x18,
86728c2ecf20Sopenharmony_ci	0x7a, 0x9d, 0x2d, 0x24, 0xe0, 0xf5, 0xea, 0x3d,
86738c2ecf20Sopenharmony_ci	0x55, 0x64, 0xd7, 0xad, 0x2a, 0x1a, 0x1f, 0x7e,
86748c2ecf20Sopenharmony_ci	0x86, 0x6d, 0xb0, 0xce, 0x80, 0x41, 0x72, 0x86,
86758c2ecf20Sopenharmony_ci	0x26, 0xee, 0x84, 0xd7, 0xef, 0x82, 0x9e, 0xe2,
86768c2ecf20Sopenharmony_ci	0x60, 0x9d, 0x5a, 0xfc, 0xf0, 0xe4, 0x19, 0x85,
86778c2ecf20Sopenharmony_ci	0xea, 0x09, 0xc6, 0xfb, 0xb3, 0xa9, 0x50, 0x09,
86788c2ecf20Sopenharmony_ci	0xec, 0x5e, 0x11, 0x90, 0xa1, 0xc5, 0x4e, 0x49,
86798c2ecf20Sopenharmony_ci	0xef, 0x50, 0xd8, 0x8f, 0xe0, 0x78, 0xd7, 0xfd,
86808c2ecf20Sopenharmony_ci	0xb9, 0x3b, 0xc9, 0xf2, 0x91, 0xc8, 0x25, 0xc8,
86818c2ecf20Sopenharmony_ci	0xa7, 0x63, 0x60, 0xce, 0x10, 0xcd, 0xc6, 0x7f,
86828c2ecf20Sopenharmony_ci	0xf8, 0x16, 0xf8, 0xe1, 0x0a, 0xd9, 0xde, 0x79,
86838c2ecf20Sopenharmony_ci	0x50, 0x33, 0xf2, 0x16, 0x0f, 0x17, 0xba, 0xb8,
86848c2ecf20Sopenharmony_ci	0x5d, 0xd8, 0xdf, 0x4e, 0x51, 0xa8, 0x39, 0xd0,
86858c2ecf20Sopenharmony_ci	0x85, 0xca, 0x46, 0x6a, 0x10, 0xa7, 0xa3, 0x88,
86868c2ecf20Sopenharmony_ci	0xef, 0x79, 0xb9, 0xf8, 0x24, 0xf3, 0xe0, 0x71,
86878c2ecf20Sopenharmony_ci	0x7b, 0x76, 0x28, 0x46, 0x3a, 0x3a, 0x1b, 0x91,
86888c2ecf20Sopenharmony_ci	0xb6, 0xd4, 0x3e, 0x23, 0xe5, 0x44, 0x15, 0xbf,
86898c2ecf20Sopenharmony_ci	0x60, 0x43, 0x9d, 0xa4, 0xbb, 0xd5, 0x5f, 0x89,
86908c2ecf20Sopenharmony_ci	0xeb, 0xef, 0x8e, 0xfd, 0xdd, 0xb4, 0x0d, 0x46,
86918c2ecf20Sopenharmony_ci	0xf0, 0x69, 0x23, 0x63, 0xae, 0x94, 0xf5, 0x5e,
86928c2ecf20Sopenharmony_ci	0xa5, 0xad, 0x13, 0x1c, 0x41, 0x76, 0xe6, 0x90,
86938c2ecf20Sopenharmony_ci	0xd6, 0x6d, 0xa2, 0x8f, 0x97, 0x4c, 0xa8, 0x0b,
86948c2ecf20Sopenharmony_ci	0xcf, 0x8d, 0x43, 0x2b, 0x9c, 0x9b, 0xc5, 0x58,
86958c2ecf20Sopenharmony_ci	0xa5, 0xb6, 0x95, 0x9a, 0xbf, 0x81, 0xc6, 0x54,
86968c2ecf20Sopenharmony_ci	0xc9, 0x66, 0x0c, 0xe5, 0x4f, 0x6a, 0x53, 0xa1,
86978c2ecf20Sopenharmony_ci	0xe5, 0x0c, 0xba, 0x31, 0xde, 0x34, 0x64, 0x73,
86988c2ecf20Sopenharmony_ci	0x8a, 0x3b, 0xbd, 0x92, 0x01, 0xdb, 0x71, 0x69,
86998c2ecf20Sopenharmony_ci	0xf3, 0x58, 0x99, 0xbc, 0xd1, 0xcb, 0x4a, 0x05,
87008c2ecf20Sopenharmony_ci	0xe2, 0x58, 0x9c, 0x25, 0x17, 0xcd, 0xdc, 0x83,
87018c2ecf20Sopenharmony_ci	0xb7, 0xff, 0xfb, 0x09, 0x61, 0xad, 0xbf, 0x13,
87028c2ecf20Sopenharmony_ci	0x5b, 0x5e, 0xed, 0x46, 0x82, 0x6f, 0x22, 0xd8,
87038c2ecf20Sopenharmony_ci	0x93, 0xa6, 0x85, 0x5b, 0x40, 0x39, 0x5c, 0xc5,
87048c2ecf20Sopenharmony_ci	0x9c
87058c2ecf20Sopenharmony_ci};
87068c2ecf20Sopenharmony_cistatic const u8 xenc_assoc001[] __initconst = {
87078c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x00, 0x00, 0x00, 0x00,
87088c2ecf20Sopenharmony_ci	0x00, 0x00, 0x4e, 0x91
87098c2ecf20Sopenharmony_ci};
87108c2ecf20Sopenharmony_cistatic const u8 xenc_nonce001[] __initconst = {
87118c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
87128c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
87138c2ecf20Sopenharmony_ci	0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17
87148c2ecf20Sopenharmony_ci};
87158c2ecf20Sopenharmony_cistatic const u8 xenc_key001[] __initconst = {
87168c2ecf20Sopenharmony_ci	0x1c, 0x92, 0x40, 0xa5, 0xeb, 0x55, 0xd3, 0x8a,
87178c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x04, 0xf6, 0xb5, 0xf0,
87188c2ecf20Sopenharmony_ci	0x47, 0x39, 0x17, 0xc1, 0x40, 0x2b, 0x80, 0x09,
87198c2ecf20Sopenharmony_ci	0x9d, 0xca, 0x5c, 0xbc, 0x20, 0x70, 0x75, 0xc0
87208c2ecf20Sopenharmony_ci};
87218c2ecf20Sopenharmony_ci
87228c2ecf20Sopenharmony_cistatic const struct chacha20poly1305_testvec
87238c2ecf20Sopenharmony_cixchacha20poly1305_enc_vectors[] __initconst = {
87248c2ecf20Sopenharmony_ci	{ xenc_input001, xenc_output001, xenc_assoc001, xenc_nonce001, xenc_key001,
87258c2ecf20Sopenharmony_ci	  sizeof(xenc_input001), sizeof(xenc_assoc001), sizeof(xenc_nonce001) }
87268c2ecf20Sopenharmony_ci};
87278c2ecf20Sopenharmony_ci
87288c2ecf20Sopenharmony_cistatic const u8 xdec_input001[] __initconst = {
87298c2ecf20Sopenharmony_ci	0x1a, 0x6e, 0x3a, 0xd9, 0xfd, 0x41, 0x3f, 0x77,
87308c2ecf20Sopenharmony_ci	0x54, 0x72, 0x0a, 0x70, 0x9a, 0xa0, 0x29, 0x92,
87318c2ecf20Sopenharmony_ci	0x2e, 0xed, 0x93, 0xcf, 0x0f, 0x71, 0x88, 0x18,
87328c2ecf20Sopenharmony_ci	0x7a, 0x9d, 0x2d, 0x24, 0xe0, 0xf5, 0xea, 0x3d,
87338c2ecf20Sopenharmony_ci	0x55, 0x64, 0xd7, 0xad, 0x2a, 0x1a, 0x1f, 0x7e,
87348c2ecf20Sopenharmony_ci	0x86, 0x6d, 0xb0, 0xce, 0x80, 0x41, 0x72, 0x86,
87358c2ecf20Sopenharmony_ci	0x26, 0xee, 0x84, 0xd7, 0xef, 0x82, 0x9e, 0xe2,
87368c2ecf20Sopenharmony_ci	0x60, 0x9d, 0x5a, 0xfc, 0xf0, 0xe4, 0x19, 0x85,
87378c2ecf20Sopenharmony_ci	0xea, 0x09, 0xc6, 0xfb, 0xb3, 0xa9, 0x50, 0x09,
87388c2ecf20Sopenharmony_ci	0xec, 0x5e, 0x11, 0x90, 0xa1, 0xc5, 0x4e, 0x49,
87398c2ecf20Sopenharmony_ci	0xef, 0x50, 0xd8, 0x8f, 0xe0, 0x78, 0xd7, 0xfd,
87408c2ecf20Sopenharmony_ci	0xb9, 0x3b, 0xc9, 0xf2, 0x91, 0xc8, 0x25, 0xc8,
87418c2ecf20Sopenharmony_ci	0xa7, 0x63, 0x60, 0xce, 0x10, 0xcd, 0xc6, 0x7f,
87428c2ecf20Sopenharmony_ci	0xf8, 0x16, 0xf8, 0xe1, 0x0a, 0xd9, 0xde, 0x79,
87438c2ecf20Sopenharmony_ci	0x50, 0x33, 0xf2, 0x16, 0x0f, 0x17, 0xba, 0xb8,
87448c2ecf20Sopenharmony_ci	0x5d, 0xd8, 0xdf, 0x4e, 0x51, 0xa8, 0x39, 0xd0,
87458c2ecf20Sopenharmony_ci	0x85, 0xca, 0x46, 0x6a, 0x10, 0xa7, 0xa3, 0x88,
87468c2ecf20Sopenharmony_ci	0xef, 0x79, 0xb9, 0xf8, 0x24, 0xf3, 0xe0, 0x71,
87478c2ecf20Sopenharmony_ci	0x7b, 0x76, 0x28, 0x46, 0x3a, 0x3a, 0x1b, 0x91,
87488c2ecf20Sopenharmony_ci	0xb6, 0xd4, 0x3e, 0x23, 0xe5, 0x44, 0x15, 0xbf,
87498c2ecf20Sopenharmony_ci	0x60, 0x43, 0x9d, 0xa4, 0xbb, 0xd5, 0x5f, 0x89,
87508c2ecf20Sopenharmony_ci	0xeb, 0xef, 0x8e, 0xfd, 0xdd, 0xb4, 0x0d, 0x46,
87518c2ecf20Sopenharmony_ci	0xf0, 0x69, 0x23, 0x63, 0xae, 0x94, 0xf5, 0x5e,
87528c2ecf20Sopenharmony_ci	0xa5, 0xad, 0x13, 0x1c, 0x41, 0x76, 0xe6, 0x90,
87538c2ecf20Sopenharmony_ci	0xd6, 0x6d, 0xa2, 0x8f, 0x97, 0x4c, 0xa8, 0x0b,
87548c2ecf20Sopenharmony_ci	0xcf, 0x8d, 0x43, 0x2b, 0x9c, 0x9b, 0xc5, 0x58,
87558c2ecf20Sopenharmony_ci	0xa5, 0xb6, 0x95, 0x9a, 0xbf, 0x81, 0xc6, 0x54,
87568c2ecf20Sopenharmony_ci	0xc9, 0x66, 0x0c, 0xe5, 0x4f, 0x6a, 0x53, 0xa1,
87578c2ecf20Sopenharmony_ci	0xe5, 0x0c, 0xba, 0x31, 0xde, 0x34, 0x64, 0x73,
87588c2ecf20Sopenharmony_ci	0x8a, 0x3b, 0xbd, 0x92, 0x01, 0xdb, 0x71, 0x69,
87598c2ecf20Sopenharmony_ci	0xf3, 0x58, 0x99, 0xbc, 0xd1, 0xcb, 0x4a, 0x05,
87608c2ecf20Sopenharmony_ci	0xe2, 0x58, 0x9c, 0x25, 0x17, 0xcd, 0xdc, 0x83,
87618c2ecf20Sopenharmony_ci	0xb7, 0xff, 0xfb, 0x09, 0x61, 0xad, 0xbf, 0x13,
87628c2ecf20Sopenharmony_ci	0x5b, 0x5e, 0xed, 0x46, 0x82, 0x6f, 0x22, 0xd8,
87638c2ecf20Sopenharmony_ci	0x93, 0xa6, 0x85, 0x5b, 0x40, 0x39, 0x5c, 0xc5,
87648c2ecf20Sopenharmony_ci	0x9c
87658c2ecf20Sopenharmony_ci};
87668c2ecf20Sopenharmony_cistatic const u8 xdec_output001[] __initconst = {
87678c2ecf20Sopenharmony_ci	0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74,
87688c2ecf20Sopenharmony_ci	0x2d, 0x44, 0x72, 0x61, 0x66, 0x74, 0x73, 0x20,
87698c2ecf20Sopenharmony_ci	0x61, 0x72, 0x65, 0x20, 0x64, 0x72, 0x61, 0x66,
87708c2ecf20Sopenharmony_ci	0x74, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
87718c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x69,
87728c2ecf20Sopenharmony_ci	0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x20,
87738c2ecf20Sopenharmony_ci	0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x20,
87748c2ecf20Sopenharmony_ci	0x6f, 0x66, 0x20, 0x73, 0x69, 0x78, 0x20, 0x6d,
87758c2ecf20Sopenharmony_ci	0x6f, 0x6e, 0x74, 0x68, 0x73, 0x20, 0x61, 0x6e,
87768c2ecf20Sopenharmony_ci	0x64, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65,
87778c2ecf20Sopenharmony_ci	0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64,
87788c2ecf20Sopenharmony_ci	0x2c, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63,
87798c2ecf20Sopenharmony_ci	0x65, 0x64, 0x2c, 0x20, 0x6f, 0x72, 0x20, 0x6f,
87808c2ecf20Sopenharmony_ci	0x62, 0x73, 0x6f, 0x6c, 0x65, 0x74, 0x65, 0x64,
87818c2ecf20Sopenharmony_ci	0x20, 0x62, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65,
87828c2ecf20Sopenharmony_ci	0x72, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
87838c2ecf20Sopenharmony_ci	0x6e, 0x74, 0x73, 0x20, 0x61, 0x74, 0x20, 0x61,
87848c2ecf20Sopenharmony_ci	0x6e, 0x79, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2e,
87858c2ecf20Sopenharmony_ci	0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x69,
87868c2ecf20Sopenharmony_ci	0x6e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x70, 0x72,
87878c2ecf20Sopenharmony_ci	0x69, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20,
87888c2ecf20Sopenharmony_ci	0x75, 0x73, 0x65, 0x20, 0x49, 0x6e, 0x74, 0x65,
87898c2ecf20Sopenharmony_ci	0x72, 0x6e, 0x65, 0x74, 0x2d, 0x44, 0x72, 0x61,
87908c2ecf20Sopenharmony_ci	0x66, 0x74, 0x73, 0x20, 0x61, 0x73, 0x20, 0x72,
87918c2ecf20Sopenharmony_ci	0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
87928c2ecf20Sopenharmony_ci	0x20, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
87938c2ecf20Sopenharmony_ci	0x6c, 0x20, 0x6f, 0x72, 0x20, 0x74, 0x6f, 0x20,
87948c2ecf20Sopenharmony_ci	0x63, 0x69, 0x74, 0x65, 0x20, 0x74, 0x68, 0x65,
87958c2ecf20Sopenharmony_ci	0x6d, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20,
87968c2ecf20Sopenharmony_ci	0x74, 0x68, 0x61, 0x6e, 0x20, 0x61, 0x73, 0x20,
87978c2ecf20Sopenharmony_ci	0x2f, 0xe2, 0x80, 0x9c, 0x77, 0x6f, 0x72, 0x6b,
87988c2ecf20Sopenharmony_ci	0x20, 0x69, 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x67,
87998c2ecf20Sopenharmony_ci	0x72, 0x65, 0x73, 0x73, 0x2e, 0x2f, 0xe2, 0x80,
88008c2ecf20Sopenharmony_ci	0x9d
88018c2ecf20Sopenharmony_ci};
88028c2ecf20Sopenharmony_cistatic const u8 xdec_assoc001[] __initconst = {
88038c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x00, 0x00, 0x00, 0x00,
88048c2ecf20Sopenharmony_ci	0x00, 0x00, 0x4e, 0x91
88058c2ecf20Sopenharmony_ci};
88068c2ecf20Sopenharmony_cistatic const u8 xdec_nonce001[] __initconst = {
88078c2ecf20Sopenharmony_ci	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
88088c2ecf20Sopenharmony_ci	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
88098c2ecf20Sopenharmony_ci	0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17
88108c2ecf20Sopenharmony_ci};
88118c2ecf20Sopenharmony_cistatic const u8 xdec_key001[] __initconst = {
88128c2ecf20Sopenharmony_ci	0x1c, 0x92, 0x40, 0xa5, 0xeb, 0x55, 0xd3, 0x8a,
88138c2ecf20Sopenharmony_ci	0xf3, 0x33, 0x88, 0x86, 0x04, 0xf6, 0xb5, 0xf0,
88148c2ecf20Sopenharmony_ci	0x47, 0x39, 0x17, 0xc1, 0x40, 0x2b, 0x80, 0x09,
88158c2ecf20Sopenharmony_ci	0x9d, 0xca, 0x5c, 0xbc, 0x20, 0x70, 0x75, 0xc0
88168c2ecf20Sopenharmony_ci};
88178c2ecf20Sopenharmony_ci
88188c2ecf20Sopenharmony_cistatic const struct chacha20poly1305_testvec
88198c2ecf20Sopenharmony_cixchacha20poly1305_dec_vectors[] __initconst = {
88208c2ecf20Sopenharmony_ci	{ xdec_input001, xdec_output001, xdec_assoc001, xdec_nonce001, xdec_key001,
88218c2ecf20Sopenharmony_ci	  sizeof(xdec_input001), sizeof(xdec_assoc001), sizeof(xdec_nonce001) }
88228c2ecf20Sopenharmony_ci};
88238c2ecf20Sopenharmony_ci
88248c2ecf20Sopenharmony_ci/* This is for the selftests-only, since it is only useful for the purpose of
88258c2ecf20Sopenharmony_ci * testing the underlying primitives and interactions.
88268c2ecf20Sopenharmony_ci */
88278c2ecf20Sopenharmony_cistatic void __init
88288c2ecf20Sopenharmony_cichacha20poly1305_encrypt_bignonce(u8 *dst, const u8 *src, const size_t src_len,
88298c2ecf20Sopenharmony_ci				  const u8 *ad, const size_t ad_len,
88308c2ecf20Sopenharmony_ci				  const u8 nonce[12],
88318c2ecf20Sopenharmony_ci				  const u8 key[CHACHA20POLY1305_KEY_SIZE])
88328c2ecf20Sopenharmony_ci{
88338c2ecf20Sopenharmony_ci	const u8 *pad0 = page_address(ZERO_PAGE(0));
88348c2ecf20Sopenharmony_ci	struct poly1305_desc_ctx poly1305_state;
88358c2ecf20Sopenharmony_ci	u32 chacha20_state[CHACHA_STATE_WORDS];
88368c2ecf20Sopenharmony_ci	union {
88378c2ecf20Sopenharmony_ci		u8 block0[POLY1305_KEY_SIZE];
88388c2ecf20Sopenharmony_ci		__le64 lens[2];
88398c2ecf20Sopenharmony_ci	} b = {{ 0 }};
88408c2ecf20Sopenharmony_ci	u8 bottom_row[16] = { 0 };
88418c2ecf20Sopenharmony_ci	u32 le_key[8];
88428c2ecf20Sopenharmony_ci	int i;
88438c2ecf20Sopenharmony_ci
88448c2ecf20Sopenharmony_ci	memcpy(&bottom_row[4], nonce, 12);
88458c2ecf20Sopenharmony_ci	for (i = 0; i < 8; ++i)
88468c2ecf20Sopenharmony_ci		le_key[i] = get_unaligned_le32(key + sizeof(le_key[i]) * i);
88478c2ecf20Sopenharmony_ci	chacha_init(chacha20_state, le_key, bottom_row);
88488c2ecf20Sopenharmony_ci	chacha20_crypt(chacha20_state, b.block0, b.block0, sizeof(b.block0));
88498c2ecf20Sopenharmony_ci	poly1305_init(&poly1305_state, b.block0);
88508c2ecf20Sopenharmony_ci	poly1305_update(&poly1305_state, ad, ad_len);
88518c2ecf20Sopenharmony_ci	poly1305_update(&poly1305_state, pad0, (0x10 - ad_len) & 0xf);
88528c2ecf20Sopenharmony_ci	chacha20_crypt(chacha20_state, dst, src, src_len);
88538c2ecf20Sopenharmony_ci	poly1305_update(&poly1305_state, dst, src_len);
88548c2ecf20Sopenharmony_ci	poly1305_update(&poly1305_state, pad0, (0x10 - src_len) & 0xf);
88558c2ecf20Sopenharmony_ci	b.lens[0] = cpu_to_le64(ad_len);
88568c2ecf20Sopenharmony_ci	b.lens[1] = cpu_to_le64(src_len);
88578c2ecf20Sopenharmony_ci	poly1305_update(&poly1305_state, (u8 *)b.lens, sizeof(b.lens));
88588c2ecf20Sopenharmony_ci	poly1305_final(&poly1305_state, dst + src_len);
88598c2ecf20Sopenharmony_ci}
88608c2ecf20Sopenharmony_ci
88618c2ecf20Sopenharmony_cistatic void __init
88628c2ecf20Sopenharmony_cichacha20poly1305_selftest_encrypt(u8 *dst, const u8 *src, const size_t src_len,
88638c2ecf20Sopenharmony_ci				  const u8 *ad, const size_t ad_len,
88648c2ecf20Sopenharmony_ci				  const u8 *nonce, const size_t nonce_len,
88658c2ecf20Sopenharmony_ci				  const u8 key[CHACHA20POLY1305_KEY_SIZE])
88668c2ecf20Sopenharmony_ci{
88678c2ecf20Sopenharmony_ci	if (nonce_len == 8)
88688c2ecf20Sopenharmony_ci		chacha20poly1305_encrypt(dst, src, src_len, ad, ad_len,
88698c2ecf20Sopenharmony_ci					 get_unaligned_le64(nonce), key);
88708c2ecf20Sopenharmony_ci	else if (nonce_len == 12)
88718c2ecf20Sopenharmony_ci		chacha20poly1305_encrypt_bignonce(dst, src, src_len, ad,
88728c2ecf20Sopenharmony_ci						  ad_len, nonce, key);
88738c2ecf20Sopenharmony_ci	else
88748c2ecf20Sopenharmony_ci		BUG();
88758c2ecf20Sopenharmony_ci}
88768c2ecf20Sopenharmony_ci
88778c2ecf20Sopenharmony_cistatic bool __init
88788c2ecf20Sopenharmony_cidecryption_success(bool func_ret, bool expect_failure, int memcmp_result)
88798c2ecf20Sopenharmony_ci{
88808c2ecf20Sopenharmony_ci	if (expect_failure)
88818c2ecf20Sopenharmony_ci		return !func_ret;
88828c2ecf20Sopenharmony_ci	return func_ret && !memcmp_result;
88838c2ecf20Sopenharmony_ci}
88848c2ecf20Sopenharmony_ci
88858c2ecf20Sopenharmony_cibool __init chacha20poly1305_selftest(void)
88868c2ecf20Sopenharmony_ci{
88878c2ecf20Sopenharmony_ci	enum { MAXIMUM_TEST_BUFFER_LEN = 1UL << 12 };
88888c2ecf20Sopenharmony_ci	size_t i, j, k, total_len;
88898c2ecf20Sopenharmony_ci	u8 *computed_output = NULL, *input = NULL;
88908c2ecf20Sopenharmony_ci	bool success = true, ret;
88918c2ecf20Sopenharmony_ci	struct scatterlist sg_src[3];
88928c2ecf20Sopenharmony_ci
88938c2ecf20Sopenharmony_ci	computed_output = kmalloc(MAXIMUM_TEST_BUFFER_LEN, GFP_KERNEL);
88948c2ecf20Sopenharmony_ci	input = kmalloc(MAXIMUM_TEST_BUFFER_LEN, GFP_KERNEL);
88958c2ecf20Sopenharmony_ci	if (!computed_output || !input) {
88968c2ecf20Sopenharmony_ci		pr_err("chacha20poly1305 self-test malloc: FAIL\n");
88978c2ecf20Sopenharmony_ci		success = false;
88988c2ecf20Sopenharmony_ci		goto out;
88998c2ecf20Sopenharmony_ci	}
89008c2ecf20Sopenharmony_ci
89018c2ecf20Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(chacha20poly1305_enc_vectors); ++i) {
89028c2ecf20Sopenharmony_ci		memset(computed_output, 0, MAXIMUM_TEST_BUFFER_LEN);
89038c2ecf20Sopenharmony_ci		chacha20poly1305_selftest_encrypt(computed_output,
89048c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].input,
89058c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].ilen,
89068c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].assoc,
89078c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].alen,
89088c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].nonce,
89098c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].nlen,
89108c2ecf20Sopenharmony_ci					chacha20poly1305_enc_vectors[i].key);
89118c2ecf20Sopenharmony_ci		if (memcmp(computed_output,
89128c2ecf20Sopenharmony_ci			   chacha20poly1305_enc_vectors[i].output,
89138c2ecf20Sopenharmony_ci			   chacha20poly1305_enc_vectors[i].ilen +
89148c2ecf20Sopenharmony_ci							POLY1305_DIGEST_SIZE)) {
89158c2ecf20Sopenharmony_ci			pr_err("chacha20poly1305 encryption self-test %zu: FAIL\n",
89168c2ecf20Sopenharmony_ci			       i + 1);
89178c2ecf20Sopenharmony_ci			success = false;
89188c2ecf20Sopenharmony_ci		}
89198c2ecf20Sopenharmony_ci	}
89208c2ecf20Sopenharmony_ci
89218c2ecf20Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(chacha20poly1305_enc_vectors); ++i) {
89228c2ecf20Sopenharmony_ci		if (chacha20poly1305_enc_vectors[i].nlen != 8)
89238c2ecf20Sopenharmony_ci			continue;
89248c2ecf20Sopenharmony_ci		memcpy(computed_output, chacha20poly1305_enc_vectors[i].input,
89258c2ecf20Sopenharmony_ci		       chacha20poly1305_enc_vectors[i].ilen);
89268c2ecf20Sopenharmony_ci		sg_init_one(sg_src, computed_output,
89278c2ecf20Sopenharmony_ci			    chacha20poly1305_enc_vectors[i].ilen + POLY1305_DIGEST_SIZE);
89288c2ecf20Sopenharmony_ci		ret = chacha20poly1305_encrypt_sg_inplace(sg_src,
89298c2ecf20Sopenharmony_ci			chacha20poly1305_enc_vectors[i].ilen,
89308c2ecf20Sopenharmony_ci			chacha20poly1305_enc_vectors[i].assoc,
89318c2ecf20Sopenharmony_ci			chacha20poly1305_enc_vectors[i].alen,
89328c2ecf20Sopenharmony_ci			get_unaligned_le64(chacha20poly1305_enc_vectors[i].nonce),
89338c2ecf20Sopenharmony_ci			chacha20poly1305_enc_vectors[i].key);
89348c2ecf20Sopenharmony_ci		if (!ret || memcmp(computed_output,
89358c2ecf20Sopenharmony_ci				   chacha20poly1305_enc_vectors[i].output,
89368c2ecf20Sopenharmony_ci				   chacha20poly1305_enc_vectors[i].ilen +
89378c2ecf20Sopenharmony_ci							POLY1305_DIGEST_SIZE)) {
89388c2ecf20Sopenharmony_ci			pr_err("chacha20poly1305 sg encryption self-test %zu: FAIL\n",
89398c2ecf20Sopenharmony_ci			       i + 1);
89408c2ecf20Sopenharmony_ci			success = false;
89418c2ecf20Sopenharmony_ci		}
89428c2ecf20Sopenharmony_ci	}
89438c2ecf20Sopenharmony_ci
89448c2ecf20Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(chacha20poly1305_dec_vectors); ++i) {
89458c2ecf20Sopenharmony_ci		memset(computed_output, 0, MAXIMUM_TEST_BUFFER_LEN);
89468c2ecf20Sopenharmony_ci		ret = chacha20poly1305_decrypt(computed_output,
89478c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].input,
89488c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].ilen,
89498c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].assoc,
89508c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].alen,
89518c2ecf20Sopenharmony_ci			get_unaligned_le64(chacha20poly1305_dec_vectors[i].nonce),
89528c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].key);
89538c2ecf20Sopenharmony_ci		if (!decryption_success(ret,
89548c2ecf20Sopenharmony_ci				chacha20poly1305_dec_vectors[i].failure,
89558c2ecf20Sopenharmony_ci				memcmp(computed_output,
89568c2ecf20Sopenharmony_ci				       chacha20poly1305_dec_vectors[i].output,
89578c2ecf20Sopenharmony_ci				       chacha20poly1305_dec_vectors[i].ilen -
89588c2ecf20Sopenharmony_ci							POLY1305_DIGEST_SIZE))) {
89598c2ecf20Sopenharmony_ci			pr_err("chacha20poly1305 decryption self-test %zu: FAIL\n",
89608c2ecf20Sopenharmony_ci			       i + 1);
89618c2ecf20Sopenharmony_ci			success = false;
89628c2ecf20Sopenharmony_ci		}
89638c2ecf20Sopenharmony_ci	}
89648c2ecf20Sopenharmony_ci
89658c2ecf20Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(chacha20poly1305_dec_vectors); ++i) {
89668c2ecf20Sopenharmony_ci		memcpy(computed_output, chacha20poly1305_dec_vectors[i].input,
89678c2ecf20Sopenharmony_ci		       chacha20poly1305_dec_vectors[i].ilen);
89688c2ecf20Sopenharmony_ci		sg_init_one(sg_src, computed_output,
89698c2ecf20Sopenharmony_ci			    chacha20poly1305_dec_vectors[i].ilen);
89708c2ecf20Sopenharmony_ci		ret = chacha20poly1305_decrypt_sg_inplace(sg_src,
89718c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].ilen,
89728c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].assoc,
89738c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].alen,
89748c2ecf20Sopenharmony_ci			get_unaligned_le64(chacha20poly1305_dec_vectors[i].nonce),
89758c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].key);
89768c2ecf20Sopenharmony_ci		if (!decryption_success(ret,
89778c2ecf20Sopenharmony_ci			chacha20poly1305_dec_vectors[i].failure,
89788c2ecf20Sopenharmony_ci			memcmp(computed_output, chacha20poly1305_dec_vectors[i].output,
89798c2ecf20Sopenharmony_ci			       chacha20poly1305_dec_vectors[i].ilen -
89808c2ecf20Sopenharmony_ci							POLY1305_DIGEST_SIZE))) {
89818c2ecf20Sopenharmony_ci			pr_err("chacha20poly1305 sg decryption self-test %zu: FAIL\n",
89828c2ecf20Sopenharmony_ci			       i + 1);
89838c2ecf20Sopenharmony_ci			success = false;
89848c2ecf20Sopenharmony_ci		}
89858c2ecf20Sopenharmony_ci	}
89868c2ecf20Sopenharmony_ci
89878c2ecf20Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(xchacha20poly1305_enc_vectors); ++i) {
89888c2ecf20Sopenharmony_ci		memset(computed_output, 0, MAXIMUM_TEST_BUFFER_LEN);
89898c2ecf20Sopenharmony_ci		xchacha20poly1305_encrypt(computed_output,
89908c2ecf20Sopenharmony_ci					xchacha20poly1305_enc_vectors[i].input,
89918c2ecf20Sopenharmony_ci					xchacha20poly1305_enc_vectors[i].ilen,
89928c2ecf20Sopenharmony_ci					xchacha20poly1305_enc_vectors[i].assoc,
89938c2ecf20Sopenharmony_ci					xchacha20poly1305_enc_vectors[i].alen,
89948c2ecf20Sopenharmony_ci					xchacha20poly1305_enc_vectors[i].nonce,
89958c2ecf20Sopenharmony_ci					xchacha20poly1305_enc_vectors[i].key);
89968c2ecf20Sopenharmony_ci		if (memcmp(computed_output,
89978c2ecf20Sopenharmony_ci			   xchacha20poly1305_enc_vectors[i].output,
89988c2ecf20Sopenharmony_ci			   xchacha20poly1305_enc_vectors[i].ilen +
89998c2ecf20Sopenharmony_ci							POLY1305_DIGEST_SIZE)) {
90008c2ecf20Sopenharmony_ci			pr_err("xchacha20poly1305 encryption self-test %zu: FAIL\n",
90018c2ecf20Sopenharmony_ci			       i + 1);
90028c2ecf20Sopenharmony_ci			success = false;
90038c2ecf20Sopenharmony_ci		}
90048c2ecf20Sopenharmony_ci	}
90058c2ecf20Sopenharmony_ci
90068c2ecf20Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(xchacha20poly1305_dec_vectors); ++i) {
90078c2ecf20Sopenharmony_ci		memset(computed_output, 0, MAXIMUM_TEST_BUFFER_LEN);
90088c2ecf20Sopenharmony_ci		ret = xchacha20poly1305_decrypt(computed_output,
90098c2ecf20Sopenharmony_ci					xchacha20poly1305_dec_vectors[i].input,
90108c2ecf20Sopenharmony_ci					xchacha20poly1305_dec_vectors[i].ilen,
90118c2ecf20Sopenharmony_ci					xchacha20poly1305_dec_vectors[i].assoc,
90128c2ecf20Sopenharmony_ci					xchacha20poly1305_dec_vectors[i].alen,
90138c2ecf20Sopenharmony_ci					xchacha20poly1305_dec_vectors[i].nonce,
90148c2ecf20Sopenharmony_ci					xchacha20poly1305_dec_vectors[i].key);
90158c2ecf20Sopenharmony_ci		if (!decryption_success(ret,
90168c2ecf20Sopenharmony_ci				xchacha20poly1305_dec_vectors[i].failure,
90178c2ecf20Sopenharmony_ci				memcmp(computed_output,
90188c2ecf20Sopenharmony_ci				       xchacha20poly1305_dec_vectors[i].output,
90198c2ecf20Sopenharmony_ci				       xchacha20poly1305_dec_vectors[i].ilen -
90208c2ecf20Sopenharmony_ci							POLY1305_DIGEST_SIZE))) {
90218c2ecf20Sopenharmony_ci			pr_err("xchacha20poly1305 decryption self-test %zu: FAIL\n",
90228c2ecf20Sopenharmony_ci			       i + 1);
90238c2ecf20Sopenharmony_ci			success = false;
90248c2ecf20Sopenharmony_ci		}
90258c2ecf20Sopenharmony_ci	}
90268c2ecf20Sopenharmony_ci
90278c2ecf20Sopenharmony_ci	for (total_len = POLY1305_DIGEST_SIZE; IS_ENABLED(DEBUG_CHACHA20POLY1305_SLOW_CHUNK_TEST)
90288c2ecf20Sopenharmony_ci	     && total_len <= 1 << 10; ++total_len) {
90298c2ecf20Sopenharmony_ci		for (i = 0; i <= total_len; ++i) {
90308c2ecf20Sopenharmony_ci			for (j = i; j <= total_len; ++j) {
90318c2ecf20Sopenharmony_ci				k = 0;
90328c2ecf20Sopenharmony_ci				sg_init_table(sg_src, 3);
90338c2ecf20Sopenharmony_ci				if (i)
90348c2ecf20Sopenharmony_ci					sg_set_buf(&sg_src[k++], input, i);
90358c2ecf20Sopenharmony_ci				if (j - i)
90368c2ecf20Sopenharmony_ci					sg_set_buf(&sg_src[k++], input + i, j - i);
90378c2ecf20Sopenharmony_ci				if (total_len - j)
90388c2ecf20Sopenharmony_ci					sg_set_buf(&sg_src[k++], input + j, total_len - j);
90398c2ecf20Sopenharmony_ci				sg_init_marker(sg_src, k);
90408c2ecf20Sopenharmony_ci				memset(computed_output, 0, total_len);
90418c2ecf20Sopenharmony_ci				memset(input, 0, total_len);
90428c2ecf20Sopenharmony_ci
90438c2ecf20Sopenharmony_ci				if (!chacha20poly1305_encrypt_sg_inplace(sg_src,
90448c2ecf20Sopenharmony_ci					total_len - POLY1305_DIGEST_SIZE, NULL, 0,
90458c2ecf20Sopenharmony_ci					0, enc_key001))
90468c2ecf20Sopenharmony_ci					goto chunkfail;
90478c2ecf20Sopenharmony_ci				chacha20poly1305_encrypt(computed_output,
90488c2ecf20Sopenharmony_ci					computed_output,
90498c2ecf20Sopenharmony_ci					total_len - POLY1305_DIGEST_SIZE, NULL, 0, 0,
90508c2ecf20Sopenharmony_ci					enc_key001);
90518c2ecf20Sopenharmony_ci				if (memcmp(computed_output, input, total_len))
90528c2ecf20Sopenharmony_ci					goto chunkfail;
90538c2ecf20Sopenharmony_ci				if (!chacha20poly1305_decrypt(computed_output,
90548c2ecf20Sopenharmony_ci					input, total_len, NULL, 0, 0, enc_key001))
90558c2ecf20Sopenharmony_ci					goto chunkfail;
90568c2ecf20Sopenharmony_ci				for (k = 0; k < total_len - POLY1305_DIGEST_SIZE; ++k) {
90578c2ecf20Sopenharmony_ci					if (computed_output[k])
90588c2ecf20Sopenharmony_ci						goto chunkfail;
90598c2ecf20Sopenharmony_ci				}
90608c2ecf20Sopenharmony_ci				if (!chacha20poly1305_decrypt_sg_inplace(sg_src,
90618c2ecf20Sopenharmony_ci					total_len, NULL, 0, 0, enc_key001))
90628c2ecf20Sopenharmony_ci					goto chunkfail;
90638c2ecf20Sopenharmony_ci				for (k = 0; k < total_len - POLY1305_DIGEST_SIZE; ++k) {
90648c2ecf20Sopenharmony_ci					if (input[k])
90658c2ecf20Sopenharmony_ci						goto chunkfail;
90668c2ecf20Sopenharmony_ci				}
90678c2ecf20Sopenharmony_ci				continue;
90688c2ecf20Sopenharmony_ci
90698c2ecf20Sopenharmony_ci			chunkfail:
90708c2ecf20Sopenharmony_ci				pr_err("chacha20poly1305 chunked self-test %zu/%zu/%zu: FAIL\n",
90718c2ecf20Sopenharmony_ci				       total_len, i, j);
90728c2ecf20Sopenharmony_ci				success = false;
90738c2ecf20Sopenharmony_ci			}
90748c2ecf20Sopenharmony_ci
90758c2ecf20Sopenharmony_ci		}
90768c2ecf20Sopenharmony_ci	}
90778c2ecf20Sopenharmony_ci
90788c2ecf20Sopenharmony_ciout:
90798c2ecf20Sopenharmony_ci	kfree(computed_output);
90808c2ecf20Sopenharmony_ci	kfree(input);
90818c2ecf20Sopenharmony_ci	return success;
90828c2ecf20Sopenharmony_ci}
9083