| /src/crypto/external/apache2/openssl/dist/test/ |
| poly1305_internal_test.c | 10 /* Internal tests for the poly1305 module */ 16 #include "crypto/poly1305.h" 32 * Test of poly1305 internal functions 57 * test vectors from "The Poly1305-AES message-authentication code" 530 * AVX2 in poly1305-x86.pl failed this with 176+32 split 1101 POLY1305 poly1305; local 1113 Poly1305_Init(&poly1305, key); 1114 Poly1305_Update(&poly1305, in, inlen); 1115 Poly1305_Final(&poly1305, out) [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| poly1305_internal_test.c | 10 /* Internal tests for the poly1305 module */ 16 #include "crypto/poly1305.h" 32 * Test of poly1305 internal functions 70 * test vectors from "The Poly1305-AES message-authentication code" 727 * AVX2 in poly1305-x86.pl failed this with 176+32 split 1508 POLY1305 poly1305; local 1520 Poly1305_Init(&poly1305, key); 1521 Poly1305_Update(&poly1305, in, inlen); 1522 Poly1305_Final(&poly1305, out) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| poly1305_internal_test.c | 10 /* Internal tests for the poly1305 module */ 16 #include "crypto/poly1305.h" 17 #include "../crypto/poly1305/poly1305_local.h" 33 * Test of poly1305 internal functions 71 * test vectors from "The Poly1305-AES message-authentication code" 728 * AVX2 in poly1305-x86.pl failed this with 176+32 split 1509 POLY1305 poly1305; local 1521 Poly1305_Init(&poly1305, key); 1522 Poly1305_Update(&poly1305, in, inlen) [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_chacha20_poly1305.h | 12 #include "include/crypto/poly1305.h" 21 POLY1305 poly1305; member in struct:__anon509
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/macs/ |
| poly1305_prov.c | 17 #include "crypto/poly1305.h" 41 POLY1305 poly1305; /* Poly1305 data */ member in struct:poly1305_data_st 88 Poly1305_Init(&ctx->poly1305, key); 116 /* poly1305 has nothing to return in its update function */ 117 Poly1305_Update(&ctx->poly1305, data, datalen); 129 Poly1305_Final(&ctx->poly1305, out);
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_chacha20_poly1305.h | 12 #include "include/crypto/poly1305.h" 21 POLY1305 poly1305; member in struct:__anon1573
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/macs/ |
| poly1305_prov.c | 17 #include "crypto/poly1305.h" 41 POLY1305 poly1305; /* Poly1305 data */ member in struct:poly1305_data_st 88 Poly1305_Init(&ctx->poly1305, key); 116 /* poly1305 has nothing to return in its update function */ 117 Poly1305_Update(&ctx->poly1305, data, datalen); 129 Poly1305_Final(&ctx->poly1305, out);
|
| /src/sys/crypto/adiantum/ |
| adiantum.c | 189 /* Poly1305 */ struct 191 struct poly1305 { 197 poly1305_init(struct poly1305 *P, const uint8_t key[static 16]) 212 poly1305_update_blocks(struct poly1305 *P, const uint8_t *m, size_t mlen) 295 poly1305_final(uint8_t h[static 16], struct poly1305 *P) 344 poly1305(uint8_t h[static 16], const uint8_t *m, size_t mlen, 347 struct poly1305 P; 380 poly1305(h, m, sizeof m, r); 383 hexdump(printf, "poly1305 h", h, sizeof h); 384 hexdump(printf, "poly1305 t", t, sizeof t) 340 poly1305(uint8_t h[static 16], const uint8_t *m, size_t mlen, function [all...] |