| /src/crypto/external/bsd/openssl/dist/demos/mac/ |
| Makefile | 9 # LD_LIBRARY_PATH=../.. ./poly1305 14 all: gmac hmac-sha512 cmac-aes256 poly1305 19 poly1305: poly1305.o 21 gmac hmac-sha512 cmac-aes256 poly1305: 25 $(RM) gmac hmac-sha512 cmac-aes256 poly1305 *.o
|
| /src/crypto/external/apache2/openssl/dist/demos/mac/ |
| build.info | 10 poly1305 24 INCLUDE[poly1305]=../../include 25 SOURCE[poly1305]=poly1305.c 26 DEPEND[poly1305]=../../libcrypto
|
| Makefile | 10 poly1305 21 poly1305: poly1305.o
|
| /src/crypto/external/apache2/openssl/dist/test/recipes/30-test_evp_data/ |
| evpciph_chacha.txt | 140 Cipher = chacha20-poly1305 148 Cipher = chacha20-poly1305 158 Cipher = chacha20-poly1305 166 Cipher = chacha20-poly1305 177 Cipher = chacha20-poly1305 185 Cipher = chacha20-poly1305 193 Cipher = chacha20-poly1305 201 Cipher = chacha20-poly1305
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/ |
| evpciph_chacha.txt | 140 Cipher = chacha20-poly1305 148 Cipher = chacha20-poly1305 158 Cipher = chacha20-poly1305 166 Cipher = chacha20-poly1305 177 Cipher = chacha20-poly1305 185 Cipher = chacha20-poly1305 193 Cipher = chacha20-poly1305 201 Cipher = chacha20-poly1305
|
| /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
|
| cipher_chacha20_poly1305_hw.c | 122 POLY1305 *poly = &ctx->poly1305; 271 POLY1305 *poly = &ctx->poly1305;
|
| /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
|
| cipher_chacha20_poly1305_hw.c | 123 POLY1305 *poly = &ctx->poly1305; 272 POLY1305 *poly = &ctx->poly1305;
|
| /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/rump/kern/lib/libcrypto/ |
| Makefile | 18 ${SODIUM_DIR}/crypto_onetimeauth/poly1305/donna \ 19 ${SODIUM_DIR}/crypto_onetimeauth/poly1305 \
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/signature/ |
| mac_legacy_sig.c | 93 MAC_NEWCTX(poly1305, "POLY1305") 241 MAC_SETTABLE_CTX_PARAMS(poly1305, "POLY1305") 264 MAC_SIGNATURE_FUNCTIONS(poly1305)
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/signature/ |
| mac_legacy_sig.c | 95 MAC_NEWCTX(poly1305, "POLY1305") 243 MAC_SETTABLE_CTX_PARAMS(poly1305, "POLY1305") 266 MAC_SIGNATURE_FUNCTIONS(poly1305)
|
| /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/openssh/lib/ |
| Makefile | 60 poly1305.c \
|
| /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/bsd/openssl.old/dist/test/recipes/30-test_evp_data/ |
| evpciph.txt | 2598 Cipher = chacha20-poly1305 2606 Cipher = chacha20-poly1305 2614 Cipher = chacha20-poly1305 2625 Cipher = chacha20-poly1305 2633 Cipher = chacha20-poly1305 2641 Cipher = chacha20-poly1305 2649 Cipher = chacha20-poly1305
|
| /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...] |