/external/boringssl/src/include/openssl/ |
D | poly1305.h | 25 typedef uint8_t poly1305_state[512]; typedef 31 OPENSSL_EXPORT void CRYPTO_poly1305_init(poly1305_state *state, 36 OPENSSL_EXPORT void CRYPTO_poly1305_update(poly1305_state *state, 41 OPENSSL_EXPORT void CRYPTO_poly1305_finish(poly1305_state *state,
|
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | poly1305.h | 25 typedef uint8_t poly1305_state[512]; typedef 31 OPENSSL_EXPORT void CRYPTO_poly1305_init(poly1305_state *state, 36 OPENSSL_EXPORT void CRYPTO_poly1305_update(poly1305_state *state, 41 OPENSSL_EXPORT void CRYPTO_poly1305_finish(poly1305_state *state,
|
/external/rust/crates/ring/src/aead/ |
D | poly1305.rs | 40 state: poly1305_state, 50 struct poly1305_state([u8; OPAQUE_LEN]); struct 88 state: poly1305_state([0u8; OPAQUE_LEN]), 95 (statep: &mut poly1305_state, key: &[u8; KEY_LEN]) 106 (statep: &mut poly1305_state, input: *const u8, in_len: c::size_t) in update() 115 (statep: &mut poly1305_state, mac: &mut [u8; TAG_LEN]) in finish()
|
/external/boringssl/src/crypto/poly1305/ |
D | internal.h | 28 void CRYPTO_poly1305_init_neon(poly1305_state *state, const uint8_t key[32]); 30 void CRYPTO_poly1305_update_neon(poly1305_state *state, const uint8_t *in, 33 void CRYPTO_poly1305_finish_neon(poly1305_state *state, uint8_t mac[16]);
|
D | poly1305.c | 54 sizeof(struct poly1305_state_st) + 63 <= sizeof(poly1305_state), 58 poly1305_state *state) { in poly1305_aligned_state() 159 void CRYPTO_poly1305_init(poly1305_state *statep, const uint8_t key[32]) { in CRYPTO_poly1305_init() 205 void CRYPTO_poly1305_update(poly1305_state *statep, const uint8_t *in, in CRYPTO_poly1305_update() 249 void CRYPTO_poly1305_finish(poly1305_state *statep, uint8_t mac[16]) { in CRYPTO_poly1305_finish()
|
D | poly1305_test.cc | 32 poly1305_state state; in TestSIMD() 80 poly1305_state state; in TEST()
|
D | poly1305_arm.c | 187 sizeof(struct poly1305_state_st) + 63 <= sizeof(poly1305_state), 190 void CRYPTO_poly1305_init_neon(poly1305_state *state, const uint8_t key[32]) { in CRYPTO_poly1305_init_neon() 214 void CRYPTO_poly1305_update_neon(poly1305_state *state, const uint8_t *in, in CRYPTO_poly1305_update_neon() 262 void CRYPTO_poly1305_finish_neon(poly1305_state *state, uint8_t mac[16]) { in CRYPTO_poly1305_finish_neon()
|
D | poly1305_vec.c | 96 sizeof(struct poly1305_state_internal_t) + 63 <= sizeof(poly1305_state), 100 poly1305_state *state) { in poly1305_aligned_state() 108 void CRYPTO_poly1305_init(poly1305_state *state, const uint8_t key[32]) { in CRYPTO_poly1305_init() 676 void CRYPTO_poly1305_update(poly1305_state *state, const uint8_t *m, in CRYPTO_poly1305_update() 735 void CRYPTO_poly1305_finish(poly1305_state *state, uint8_t mac[16]) { in CRYPTO_poly1305_finish()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/poly1305/ |
D | internal.h | 28 void CRYPTO_poly1305_init_neon(poly1305_state *state, const uint8_t key[32]); 30 void CRYPTO_poly1305_update_neon(poly1305_state *state, const uint8_t *in, 33 void CRYPTO_poly1305_finish_neon(poly1305_state *state, uint8_t mac[16]);
|
D | poly1305_test.cc | 32 poly1305_state state; in TestSIMD() 80 poly1305_state state; in TEST()
|
D | poly1305.c | 54 poly1305_state *state) { in poly1305_aligned_state() 155 void CRYPTO_poly1305_init(poly1305_state *statep, const uint8_t key[32]) { in CRYPTO_poly1305_init() 201 void CRYPTO_poly1305_update(poly1305_state *statep, const uint8_t *in, in CRYPTO_poly1305_update() 246 void CRYPTO_poly1305_finish(poly1305_state *statep, uint8_t mac[16]) { in CRYPTO_poly1305_finish()
|
D | poly1305_arm.c | 186 void CRYPTO_poly1305_init_neon(poly1305_state *state, const uint8_t key[32]) { in CRYPTO_poly1305_init_neon() 211 void CRYPTO_poly1305_update_neon(poly1305_state *state, const uint8_t *in, in CRYPTO_poly1305_update_neon() 260 void CRYPTO_poly1305_finish_neon(poly1305_state *state, uint8_t mac[16]) { in CRYPTO_poly1305_finish_neon()
|
D | poly1305_vec.c | 96 poly1305_state *state) { in poly1305_aligned_state() 104 void CRYPTO_poly1305_init(poly1305_state *state, const uint8_t key[32]) { in CRYPTO_poly1305_init() 672 void CRYPTO_poly1305_update(poly1305_state *state, const uint8_t *m, in CRYPTO_poly1305_update() 731 void CRYPTO_poly1305_finish(poly1305_state *state, uint8_t mac[16]) { in CRYPTO_poly1305_finish()
|
/external/rust/crates/ring/crypto/poly1305/ |
D | poly1305.c | 54 OPENSSL_STATIC_ASSERT(sizeof(struct poly1305_state_st) <= sizeof(poly1305_state), 58 poly1305_state *state) { in poly1305_aligned_state() 160 void GFp_poly1305_init(poly1305_state *statep, const uint8_t key[32]) { in GFp_poly1305_init() 199 void GFp_poly1305_update(poly1305_state *statep, const uint8_t *in, in GFp_poly1305_update() 236 void GFp_poly1305_finish(poly1305_state *statep, uint8_t mac[16]) { in GFp_poly1305_finish()
|
D | poly1305_arm.c | 187 OPENSSL_STATIC_ASSERT(sizeof(struct poly1305_state_st) <= sizeof(poly1305_state), 190 void GFp_poly1305_init_neon(poly1305_state *state, const uint8_t key[32]) { in GFp_poly1305_init_neon() 214 void GFp_poly1305_update_neon(poly1305_state *state, const uint8_t *in, in GFp_poly1305_update_neon() 262 void GFp_poly1305_finish_neon(poly1305_state *state, uint8_t mac[16]) { in GFp_poly1305_finish_neon()
|
D | poly1305_vec.c | 99 OPENSSL_STATIC_ASSERT(sizeof(poly1305_state_internal) <= sizeof(poly1305_state), 103 poly1305_state *state) { in poly1305_aligned_state() 112 void GFp_poly1305_init(poly1305_state *state, const uint8_t key[32]) { in GFp_poly1305_init() 680 void GFp_poly1305_update(poly1305_state *state, const uint8_t *m, in GFp_poly1305_update() 739 void GFp_poly1305_finish(poly1305_state *state, uint8_t mac[16]) { in GFp_poly1305_finish()
|
/external/rust/crates/ring/include/GFp/ |
D | poly1305.h | 21 typedef uint8_t poly1305_state[512]; typedef
|
/external/boringssl/src/crypto/cipher_extra/ |
D | e_chacha20poly1305.c | 70 static void poly1305_update_length(poly1305_state *poly1305, size_t data_len) { in poly1305_update_length() 93 poly1305_state ctx; in calc_tag()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/cipher_extra/ |
D | e_chacha20poly1305.c | 145 static void poly1305_update_length(poly1305_state *poly1305, size_t data_len) { in poly1305_update_length() 168 poly1305_state ctx; in calc_tag()
|