/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
e_chacha20poly1305.c | 58 #include <openssl/poly1305.h> 106 static void poly1305_update_with_length(poly1305_state *poly1305, 119 CRYPTO_poly1305_update(poly1305, data, data_len); 120 CRYPTO_poly1305_update(poly1305, length_bytes, sizeof(length_bytes)); 137 poly1305_state poly1305; local 168 CRYPTO_poly1305_init(&poly1305, poly1305_key); 169 poly1305_update_with_length(&poly1305, ad, ad_len); 171 poly1305_update_with_length(&poly1305, out, in_len); 176 CRYPTO_poly1305_finish(&poly1305, tag); 181 CRYPTO_poly1305_finish(&poly1305, out + in_len) 195 poly1305_state poly1305; local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/poly1305/ |
poly1305test.c | 54 #include <openssl/poly1305.h> 125 poly1305_state poly1305; local 146 CRYPTO_poly1305_init(&poly1305, key); 147 CRYPTO_poly1305_update(&poly1305, in, inlen); 148 CRYPTO_poly1305_finish(&poly1305, out); 152 printf("Poly1305 test #%d failed.\n", i);
|
Makefile | 2 # OpenSSL/crypto/poly1305/Makefile 5 DIR= poly1305 13 POLY1305=poly1305_vec.o 25 LIBOBJ=$(POLY1305) 29 EXHEADER=poly1305.h 81 poly1305_vec.o: ../../include/openssl/poly1305.h poly1305_vec.c
|
poly1305_arm.c | 56 #include <openssl/poly1305.h>
|
poly1305.c | 50 /* This implementation of poly1305 is by Andrew Moon 51 * (https://github.com/floodyberry/poly1305-donna) and released as public 60 #include <openssl/poly1305.h>
|
poly1305_vec.c | 50 /* This implementation of poly1305 is by Andrew Moon 51 * (https://github.com/floodyberry/poly1305-donna) and released as public 63 #include <openssl/poly1305.h>
|
/external/chromium_org/third_party/openssl/openssl/ |
Crypto-config.mk | 426 crypto/poly1305/poly1305.c \ 563 crypto/poly1305/poly1305_arm.c \ 564 crypto/poly1305/poly1305_arm_asm.S \ 642 crypto/poly1305/poly1305_vec.c \ 656 crypto/poly1305/poly1305.c \
|
/external/chromium_org/third_party/openssl/ |
openssl.target.darwin-arm.mk | 419 third_party/openssl/openssl/crypto/poly1305/poly1305.c \ 580 third_party/openssl/openssl/crypto/poly1305/poly1305_arm.c \ 581 third_party/openssl/openssl/crypto/poly1305/poly1305_arm_asm.S \ [all...] |
openssl.target.linux-arm.mk | 419 third_party/openssl/openssl/crypto/poly1305/poly1305.c \ 580 third_party/openssl/openssl/crypto/poly1305/poly1305_arm.c \ 581 third_party/openssl/openssl/crypto/poly1305/poly1305_arm_asm.S \ [all...] |
openssl.target.darwin-mips.mk | 418 third_party/openssl/openssl/crypto/poly1305/poly1305.c \ [all...] |
openssl.target.darwin-x86.mk | 413 third_party/openssl/openssl/crypto/poly1305/poly1305.c \ [all...] |
openssl.target.linux-mips.mk | 418 third_party/openssl/openssl/crypto/poly1305/poly1305.c \ [all...] |
openssl.target.linux-x86.mk | 413 third_party/openssl/openssl/crypto/poly1305/poly1305.c \ [all...] |