Home
last modified time | relevance | path

Searched refs:pmac (Results 1 – 25 of 1685) sorted by relevance

12345678910>>...68

/dports/security/dropbear/dropbear-2020.81/libtomcrypt/src/mac/pmac/
H A Dpmac_init.c49 LTC_ARGCHK(pmac != NULL); in pmac_init()
96 XMEMCPY(pmac->Ls[0], L, pmac->block_len); in pmac_init()
100 pmac->Ls[x][y] = ((pmac->Ls[x-1][y] << 1) | (pmac->Ls[x-1][y+1] >> 7)) & 255; in pmac_init()
102 pmac->Ls[x][pmac->block_len-1] = (pmac->Ls[x-1][pmac->block_len-1] << 1) & 255; in pmac_init()
118 pmac->Lr[0] = L[0] >> 1; in pmac_init()
127 pmac->block_index = 1; in pmac_init()
128 pmac->cipher_idx = cipher; in pmac_init()
129 pmac->buflen = 0; in pmac_init()
130 zeromem(pmac->block, sizeof(pmac->block)); in pmac_init()
131 zeromem(pmac->Li, sizeof(pmac->Li)); in pmac_init()
[all …]
H A Dpmac_process.c32 LTC_ARGCHK(pmac != NULL); in pmac_process()
38 if ((pmac->buflen > (int)sizeof(pmac->block)) || (pmac->buflen < 0) || in pmac_process()
39 (pmac->block_len > (int)sizeof(pmac->block)) || (pmac->buflen > pmac->block_len)) { in pmac_process()
47 pmac_shift_xor(pmac); in pmac_process()
65 if (pmac->buflen == pmac->block_len) { in pmac_process()
66 pmac_shift_xor(pmac); in pmac_process()
68 Z[x] = pmac->Li[x] ^ pmac->block[x]; in pmac_process()
76 pmac->buflen = 0; in pmac_process()
80 n = MIN(inlen, (unsigned long)(pmac->block_len - pmac->buflen)); in pmac_process()
81 XMEMCPY(pmac->block + pmac->buflen, in, n); in pmac_process()
[all …]
H A Dpmac_shift_xor.c22 void pmac_shift_xor(pmac_state *pmac) in pmac_shift_xor() argument
25 y = pmac_ntz(pmac->block_index++); in pmac_shift_xor()
27 for (x = 0; x < pmac->block_len; x += sizeof(LTC_FAST_TYPE)) { in pmac_shift_xor()
28 *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pmac->Li + x)) ^= in pmac_shift_xor()
29 *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pmac->Ls[y] + x)); in pmac_shift_xor()
32 for (x = 0; x < pmac->block_len; x++) { in pmac_shift_xor()
33 pmac->Li[x] ^= pmac->Ls[y][x]; in pmac_shift_xor()
H A Dpmac_memory.c35 pmac_state *pmac; in pmac_memory() local
43 pmac = XMALLOC(sizeof(pmac_state)); in pmac_memory()
44 if (pmac == NULL) { in pmac_memory()
48 if ((err = pmac_init(pmac, cipher, key, keylen)) != CRYPT_OK) { in pmac_memory()
51 if ((err = pmac_process(pmac, in, inlen)) != CRYPT_OK) { in pmac_memory()
54 if ((err = pmac_done(pmac, out, outlen)) != CRYPT_OK) { in pmac_memory()
61 zeromem(pmac, sizeof(pmac_state)); in pmac_memory()
64 XFREE(pmac); in pmac_memory()
/dports/security/libtomcrypt/libtomcrypt-1.18.2/src/mac/pmac/
H A Dpmac_init.c49 LTC_ARGCHK(pmac != NULL); in pmac_init()
96 XMEMCPY(pmac->Ls[0], L, pmac->block_len); in pmac_init()
100 pmac->Ls[x][y] = ((pmac->Ls[x-1][y] << 1) | (pmac->Ls[x-1][y+1] >> 7)) & 255; in pmac_init()
102 pmac->Ls[x][pmac->block_len-1] = (pmac->Ls[x-1][pmac->block_len-1] << 1) & 255; in pmac_init()
118 pmac->Lr[0] = L[0] >> 1; in pmac_init()
127 pmac->block_index = 1; in pmac_init()
128 pmac->cipher_idx = cipher; in pmac_init()
129 pmac->buflen = 0; in pmac_init()
130 zeromem(pmac->block, sizeof(pmac->block)); in pmac_init()
131 zeromem(pmac->Li, sizeof(pmac->Li)); in pmac_init()
[all …]
H A Dpmac_process.c32 LTC_ARGCHK(pmac != NULL); in pmac_process()
38 if ((pmac->buflen > (int)sizeof(pmac->block)) || (pmac->buflen < 0) || in pmac_process()
39 (pmac->block_len > (int)sizeof(pmac->block)) || (pmac->buflen > pmac->block_len)) { in pmac_process()
47 pmac_shift_xor(pmac); in pmac_process()
65 if (pmac->buflen == pmac->block_len) { in pmac_process()
66 pmac_shift_xor(pmac); in pmac_process()
68 Z[x] = pmac->Li[x] ^ pmac->block[x]; in pmac_process()
76 pmac->buflen = 0; in pmac_process()
80 n = MIN(inlen, (unsigned long)(pmac->block_len - pmac->buflen)); in pmac_process()
81 XMEMCPY(pmac->block + pmac->buflen, in, n); in pmac_process()
[all …]
H A Dpmac_shift_xor.c22 void pmac_shift_xor(pmac_state *pmac) in pmac_shift_xor() argument
25 y = pmac_ntz(pmac->block_index++); in pmac_shift_xor()
27 for (x = 0; x < pmac->block_len; x += sizeof(LTC_FAST_TYPE)) { in pmac_shift_xor()
28 *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pmac->Li + x)) ^= in pmac_shift_xor()
29 *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pmac->Ls[y] + x)); in pmac_shift_xor()
32 for (x = 0; x < pmac->block_len; x++) { in pmac_shift_xor()
33 pmac->Li[x] ^= pmac->Ls[y][x]; in pmac_shift_xor()
/dports/security/p5-CryptX/CryptX-0.075/src/ltc/mac/pmac/
H A Dpmac_init.c43 LTC_ARGCHK(pmac != NULL); in pmac_init()
90 XMEMCPY(pmac->Ls[0], L, pmac->block_len); in pmac_init()
94 pmac->Ls[x][y] = ((pmac->Ls[x-1][y] << 1) | (pmac->Ls[x-1][y+1] >> 7)) & 255; in pmac_init()
96 pmac->Ls[x][pmac->block_len-1] = (pmac->Ls[x-1][pmac->block_len-1] << 1) & 255; in pmac_init()
112 pmac->Lr[0] = L[0] >> 1; in pmac_init()
121 pmac->block_index = 1; in pmac_init()
122 pmac->cipher_idx = cipher; in pmac_init()
123 pmac->buflen = 0; in pmac_init()
124 zeromem(pmac->block, sizeof(pmac->block)); in pmac_init()
125 zeromem(pmac->Li, sizeof(pmac->Li)); in pmac_init()
[all …]
H A Dpmac_done.c16 LTC_ARGCHK(pmac != NULL); in pmac_done()
22 if ((pmac->buflen > (int)sizeof(pmac->block)) || (pmac->buflen < 0) || in pmac_done()
23 (pmac->block_len > (int)sizeof(pmac->block)) || (pmac->buflen > pmac->block_len)) { in pmac_done()
30 if (pmac->buflen == pmac->block_len) { in pmac_done()
33 pmac->checksum[x] ^= pmac->block[x] ^ pmac->Lr[x]; in pmac_done()
38 pmac->checksum[x] ^= pmac->block[x]; in pmac_done()
40 pmac->checksum[x] ^= 0x80; in pmac_done()
44 …if ((err = cipher_descriptor[pmac->cipher_idx].ecb_encrypt(pmac->checksum, pmac->checksum, &pmac->… in pmac_done()
47 cipher_descriptor[pmac->cipher_idx].done(&pmac->key); in pmac_done()
51 out[x] = pmac->checksum[x]; in pmac_done()
[all …]
H A Dpmac_process.c26 LTC_ARGCHK(pmac != NULL);
32 if ((pmac->buflen > (int)sizeof(pmac->block)) || (pmac->buflen < 0) ||
33 (pmac->block_len > (int)sizeof(pmac->block)) || (pmac->buflen > pmac->block_len)) {
41 pmac_shift_xor(pmac);
59 if (pmac->buflen == pmac->block_len) {
60 pmac_shift_xor(pmac);
62 Z[x] = pmac->Li[x] ^ pmac->block[x];
70 pmac->buflen = 0;
74 n = MIN(inlen, (unsigned long)(pmac->block_len - pmac->buflen));
75 XMEMCPY(pmac->block + pmac->buflen, in, n);
[all …]
H A Dpmac_shift_xor.c16 void pmac_shift_xor(pmac_state *pmac)
19 y = pmac_ntz(pmac->block_index++);
21 for (x = 0; x < pmac->block_len; x += sizeof(LTC_FAST_TYPE)) {
22 *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pmac->Li + x)) ^=
23 *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pmac->Ls[y] + x));
26 for (x = 0; x < pmac->block_len; x++) {
27 pmac->Li[x] ^= pmac->Ls[y][x];
/dports/security/libressl-static/libressl-3.3.5/crypto/evp/
H A De_aes_cbc_hmac_sha1.c244 } mac, *pmac; in aesni_cbc_hmac_sha1_cipher() local
322 pmac->u[0] = 0; in aesni_cbc_hmac_sha1_cipher()
323 pmac->u[1] = 0; in aesni_cbc_hmac_sha1_cipher()
324 pmac->u[2] = 0; in aesni_cbc_hmac_sha1_cipher()
325 pmac->u[3] = 0; in aesni_cbc_hmac_sha1_cipher()
326 pmac->u[4] = 0; in aesni_cbc_hmac_sha1_cipher()
383 pmac->u[0] = BSWAP(pmac->u[0]); in aesni_cbc_hmac_sha1_cipher()
384 pmac->u[1] = BSWAP(pmac->u[1]); in aesni_cbc_hmac_sha1_cipher()
385 pmac->u[2] = BSWAP(pmac->u[2]); in aesni_cbc_hmac_sha1_cipher()
386 pmac->u[3] = BSWAP(pmac->u[3]); in aesni_cbc_hmac_sha1_cipher()
[all …]
/dports/security/libressl/libressl-3.4.3/crypto/evp/
H A De_aes_cbc_hmac_sha1.c244 } mac, *pmac;
322 pmac->u[0] = 0; in aesni_xts_init_key()
323 pmac->u[1] = 0;
324 pmac->u[2] = 0;
325 pmac->u[3] = 0;
326 pmac->u[4] = 0;
383 pmac->u[0] = BSWAP(pmac->u[0]);
384 pmac->u[1] = BSWAP(pmac->u[1]);
385 pmac->u[2] = BSWAP(pmac->u[2]);
386 pmac->u[3] = BSWAP(pmac->u[3]);
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/libressl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c244 } mac, *pmac; in aesni_cbc_hmac_sha1_cipher() local
322 pmac->u[0] = 0; in aesni_cbc_hmac_sha1_cipher()
323 pmac->u[1] = 0; in aesni_cbc_hmac_sha1_cipher()
324 pmac->u[2] = 0; in aesni_cbc_hmac_sha1_cipher()
325 pmac->u[3] = 0; in aesni_cbc_hmac_sha1_cipher()
326 pmac->u[4] = 0; in aesni_cbc_hmac_sha1_cipher()
383 pmac->u[0] = BSWAP(pmac->u[0]); in aesni_cbc_hmac_sha1_cipher()
384 pmac->u[1] = BSWAP(pmac->u[1]); in aesni_cbc_hmac_sha1_cipher()
385 pmac->u[2] = BSWAP(pmac->u[2]); in aesni_cbc_hmac_sha1_cipher()
386 pmac->u[3] = BSWAP(pmac->u[3]); in aesni_cbc_hmac_sha1_cipher()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/libressl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c244 } mac, *pmac; in aesni_cbc_hmac_sha1_cipher() local
322 pmac->u[0] = 0; in aesni_cbc_hmac_sha1_cipher()
323 pmac->u[1] = 0; in aesni_cbc_hmac_sha1_cipher()
324 pmac->u[2] = 0; in aesni_cbc_hmac_sha1_cipher()
325 pmac->u[3] = 0; in aesni_cbc_hmac_sha1_cipher()
326 pmac->u[4] = 0; in aesni_cbc_hmac_sha1_cipher()
383 pmac->u[0] = BSWAP(pmac->u[0]); in aesni_cbc_hmac_sha1_cipher()
384 pmac->u[1] = BSWAP(pmac->u[1]); in aesni_cbc_hmac_sha1_cipher()
385 pmac->u[2] = BSWAP(pmac->u[2]); in aesni_cbc_hmac_sha1_cipher()
386 pmac->u[3] = BSWAP(pmac->u[3]); in aesni_cbc_hmac_sha1_cipher()
[all …]
/dports/www/obhttpd/libressl-3.4.1/crypto/evp/
H A De_aes_cbc_hmac_sha1.c244 } mac, *pmac; in aesni_cbc_hmac_sha1_cipher() local
322 pmac->u[0] = 0; in aesni_cbc_hmac_sha1_cipher()
323 pmac->u[1] = 0; in aesni_cbc_hmac_sha1_cipher()
324 pmac->u[2] = 0; in aesni_cbc_hmac_sha1_cipher()
325 pmac->u[3] = 0; in aesni_cbc_hmac_sha1_cipher()
326 pmac->u[4] = 0; in aesni_cbc_hmac_sha1_cipher()
383 pmac->u[0] = BSWAP(pmac->u[0]); in aesni_cbc_hmac_sha1_cipher()
384 pmac->u[1] = BSWAP(pmac->u[1]); in aesni_cbc_hmac_sha1_cipher()
385 pmac->u[2] = BSWAP(pmac->u[2]); in aesni_cbc_hmac_sha1_cipher()
386 pmac->u[3] = BSWAP(pmac->u[3]); in aesni_cbc_hmac_sha1_cipher()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/arm/mach-mvebu/
H A Dkirkwood.c86 struct property *pmac; in kirkwood_dt_eth_fixup() local
112 pmac = kzalloc(sizeof(*pmac) + 6, GFP_KERNEL); in kirkwood_dt_eth_fixup()
113 if (!pmac) in kirkwood_dt_eth_fixup()
116 pmac->value = pmac + 1; in kirkwood_dt_eth_fixup()
117 pmac->length = 6; in kirkwood_dt_eth_fixup()
118 pmac->name = kstrdup("local-mac-address", GFP_KERNEL); in kirkwood_dt_eth_fixup()
119 if (!pmac->name) { in kirkwood_dt_eth_fixup()
120 kfree(pmac); in kirkwood_dt_eth_fixup()
124 macaddr = pmac->value; in kirkwood_dt_eth_fixup()
135 of_update_property(np, pmac); in kirkwood_dt_eth_fixup()
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/arm/mach-mvebu/
H A Dkirkwood.c86 struct property *pmac; in kirkwood_dt_eth_fixup() local
112 pmac = kzalloc(sizeof(*pmac) + 6, GFP_KERNEL); in kirkwood_dt_eth_fixup()
113 if (!pmac) in kirkwood_dt_eth_fixup()
116 pmac->value = pmac + 1; in kirkwood_dt_eth_fixup()
117 pmac->length = 6; in kirkwood_dt_eth_fixup()
118 pmac->name = kstrdup("local-mac-address", GFP_KERNEL); in kirkwood_dt_eth_fixup()
119 if (!pmac->name) { in kirkwood_dt_eth_fixup()
120 kfree(pmac); in kirkwood_dt_eth_fixup()
124 macaddr = pmac->value; in kirkwood_dt_eth_fixup()
135 of_update_property(np, pmac); in kirkwood_dt_eth_fixup()
/dports/multimedia/libv4l/linux-5.13-rc2/arch/arm/mach-mvebu/
H A Dkirkwood.c86 struct property *pmac; in kirkwood_dt_eth_fixup() local
112 pmac = kzalloc(sizeof(*pmac) + 6, GFP_KERNEL); in kirkwood_dt_eth_fixup()
113 if (!pmac) in kirkwood_dt_eth_fixup()
116 pmac->value = pmac + 1; in kirkwood_dt_eth_fixup()
117 pmac->length = 6; in kirkwood_dt_eth_fixup()
118 pmac->name = kstrdup("local-mac-address", GFP_KERNEL); in kirkwood_dt_eth_fixup()
119 if (!pmac->name) { in kirkwood_dt_eth_fixup()
120 kfree(pmac); in kirkwood_dt_eth_fixup()
124 macaddr = pmac->value; in kirkwood_dt_eth_fixup()
135 of_update_property(np, pmac); in kirkwood_dt_eth_fixup()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c481 } mac, *pmac; in aesni_cbc_hmac_sha256_cipher() local
558 pmac->u[0] = 0; in aesni_cbc_hmac_sha256_cipher()
559 pmac->u[1] = 0; in aesni_cbc_hmac_sha256_cipher()
626 pmac->u[0] = BSWAP4(pmac->u[0]); in aesni_cbc_hmac_sha256_cipher()
627 pmac->u[1] = BSWAP4(pmac->u[1]); in aesni_cbc_hmac_sha256_cipher()
628 pmac->u[2] = BSWAP4(pmac->u[2]); in aesni_cbc_hmac_sha256_cipher()
629 pmac->u[3] = BSWAP4(pmac->u[3]); in aesni_cbc_hmac_sha256_cipher()
630 pmac->u[4] = BSWAP4(pmac->u[4]); in aesni_cbc_hmac_sha256_cipher()
631 pmac->u[5] = BSWAP4(pmac->u[5]); in aesni_cbc_hmac_sha256_cipher()
632 pmac->u[6] = BSWAP4(pmac->u[6]); in aesni_cbc_hmac_sha256_cipher()
[all …]
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c481 } mac, *pmac; in aesni_cbc_hmac_sha256_cipher() local
558 pmac->u[0] = 0; in aesni_cbc_hmac_sha256_cipher()
559 pmac->u[1] = 0; in aesni_cbc_hmac_sha256_cipher()
626 pmac->u[0] = BSWAP4(pmac->u[0]); in aesni_cbc_hmac_sha256_cipher()
627 pmac->u[1] = BSWAP4(pmac->u[1]); in aesni_cbc_hmac_sha256_cipher()
628 pmac->u[2] = BSWAP4(pmac->u[2]); in aesni_cbc_hmac_sha256_cipher()
629 pmac->u[3] = BSWAP4(pmac->u[3]); in aesni_cbc_hmac_sha256_cipher()
630 pmac->u[4] = BSWAP4(pmac->u[4]); in aesni_cbc_hmac_sha256_cipher()
631 pmac->u[5] = BSWAP4(pmac->u[5]); in aesni_cbc_hmac_sha256_cipher()
632 pmac->u[6] = BSWAP4(pmac->u[6]); in aesni_cbc_hmac_sha256_cipher()
[all …]
/dports/security/acmed/acmed-0.18.0/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c481 } mac, *pmac; in aesni_cbc_hmac_sha256_cipher() local
558 pmac->u[0] = 0; in aesni_cbc_hmac_sha256_cipher()
559 pmac->u[1] = 0; in aesni_cbc_hmac_sha256_cipher()
626 pmac->u[0] = BSWAP4(pmac->u[0]); in aesni_cbc_hmac_sha256_cipher()
627 pmac->u[1] = BSWAP4(pmac->u[1]); in aesni_cbc_hmac_sha256_cipher()
628 pmac->u[2] = BSWAP4(pmac->u[2]); in aesni_cbc_hmac_sha256_cipher()
629 pmac->u[3] = BSWAP4(pmac->u[3]); in aesni_cbc_hmac_sha256_cipher()
630 pmac->u[4] = BSWAP4(pmac->u[4]); in aesni_cbc_hmac_sha256_cipher()
631 pmac->u[5] = BSWAP4(pmac->u[5]); in aesni_cbc_hmac_sha256_cipher()
632 pmac->u[6] = BSWAP4(pmac->u[6]); in aesni_cbc_hmac_sha256_cipher()
[all …]
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c481 } mac, *pmac; in aesni_cbc_hmac_sha256_cipher() local
558 pmac->u[0] = 0; in aesni_cbc_hmac_sha256_cipher()
559 pmac->u[1] = 0; in aesni_cbc_hmac_sha256_cipher()
626 pmac->u[0] = BSWAP4(pmac->u[0]); in aesni_cbc_hmac_sha256_cipher()
627 pmac->u[1] = BSWAP4(pmac->u[1]); in aesni_cbc_hmac_sha256_cipher()
628 pmac->u[2] = BSWAP4(pmac->u[2]); in aesni_cbc_hmac_sha256_cipher()
629 pmac->u[3] = BSWAP4(pmac->u[3]); in aesni_cbc_hmac_sha256_cipher()
630 pmac->u[4] = BSWAP4(pmac->u[4]); in aesni_cbc_hmac_sha256_cipher()
631 pmac->u[5] = BSWAP4(pmac->u[5]); in aesni_cbc_hmac_sha256_cipher()
632 pmac->u[6] = BSWAP4(pmac->u[6]); in aesni_cbc_hmac_sha256_cipher()
[all …]
/dports/security/openssl-devel/openssl-3.0.2/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c481 } mac, *pmac; in aesni_cbc_hmac_sha256_cipher() local
558 pmac->u[0] = 0; in aesni_cbc_hmac_sha256_cipher()
559 pmac->u[1] = 0; in aesni_cbc_hmac_sha256_cipher()
626 pmac->u[0] = BSWAP4(pmac->u[0]); in aesni_cbc_hmac_sha256_cipher()
627 pmac->u[1] = BSWAP4(pmac->u[1]); in aesni_cbc_hmac_sha256_cipher()
628 pmac->u[2] = BSWAP4(pmac->u[2]); in aesni_cbc_hmac_sha256_cipher()
629 pmac->u[3] = BSWAP4(pmac->u[3]); in aesni_cbc_hmac_sha256_cipher()
630 pmac->u[4] = BSWAP4(pmac->u[4]); in aesni_cbc_hmac_sha256_cipher()
631 pmac->u[5] = BSWAP4(pmac->u[5]); in aesni_cbc_hmac_sha256_cipher()
632 pmac->u[6] = BSWAP4(pmac->u[6]); in aesni_cbc_hmac_sha256_cipher()
[all …]
/dports/security/openssl-quictls/openssl-7f2ab56a2b842b8e6fefc7b9d20eb5ff9c6ef151/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c481 } mac, *pmac; in aesni_cbc_hmac_sha256_cipher() local
558 pmac->u[0] = 0; in aesni_cbc_hmac_sha256_cipher()
559 pmac->u[1] = 0; in aesni_cbc_hmac_sha256_cipher()
626 pmac->u[0] = BSWAP4(pmac->u[0]); in aesni_cbc_hmac_sha256_cipher()
627 pmac->u[1] = BSWAP4(pmac->u[1]); in aesni_cbc_hmac_sha256_cipher()
628 pmac->u[2] = BSWAP4(pmac->u[2]); in aesni_cbc_hmac_sha256_cipher()
629 pmac->u[3] = BSWAP4(pmac->u[3]); in aesni_cbc_hmac_sha256_cipher()
630 pmac->u[4] = BSWAP4(pmac->u[4]); in aesni_cbc_hmac_sha256_cipher()
631 pmac->u[5] = BSWAP4(pmac->u[5]); in aesni_cbc_hmac_sha256_cipher()
632 pmac->u[6] = BSWAP4(pmac->u[6]); in aesni_cbc_hmac_sha256_cipher()
[all …]

12345678910>>...68