Symbol: poly1305_context
lib/libcrypto/poly1305/poly1305-donna.c
10
static inline void poly1305_init(poly1305_context *ctx,
lib/libcrypto/poly1305/poly1305-donna.c
12
static inline void poly1305_update(poly1305_context *ctx,
lib/libcrypto/poly1305/poly1305-donna.c
14
static inline void poly1305_finish(poly1305_context *ctx,
lib/libcrypto/poly1305/poly1305-donna.c
177
poly1305_update(poly1305_context *ctx, const unsigned char *m, size_t bytes)
lib/libcrypto/poly1305/poly1305-donna.c
215
poly1305_finish(poly1305_context *ctx, unsigned char mac[16])
lib/libcrypto/poly1305/poly1305-donna.c
55
poly1305_init(poly1305_context *ctx, const unsigned char key[32])
lib/libcrypto/poly1305/poly1305.c
22
CRYPTO_poly1305_init(poly1305_context *ctx, const unsigned char key[32])
lib/libcrypto/poly1305/poly1305.c
29
CRYPTO_poly1305_update(poly1305_context *ctx, const unsigned char *in,
lib/libcrypto/poly1305/poly1305.c
37
CRYPTO_poly1305_finish(poly1305_context *ctx, unsigned char mac[16])
lib/libcrypto/poly1305/poly1305.h
34
typedef struct poly1305_context poly1305_state;
lib/libcrypto/poly1305/poly1305.h
36
void CRYPTO_poly1305_init(poly1305_context *ctx, const unsigned char key[32]);
lib/libcrypto/poly1305/poly1305.h
37
void CRYPTO_poly1305_update(poly1305_context *ctx, const unsigned char *in,
lib/libcrypto/poly1305/poly1305.h
39
void CRYPTO_poly1305_finish(poly1305_context *ctx, unsigned char mac[16]);
regress/lib/libcrypto/poly1305/poly1305test.c
109
poly1305_context ctx;
regress/lib/libcrypto/poly1305/poly1305test.c
110
poly1305_context total_ctx;
regress/lib/libcrypto/poly1305/poly1305test.c
21
poly1305_context ctx;