Sha256: 19e90c699a29dbd81c9e80e0a27d0493c7141fb2d8cda3e8ffcb8034bf2ffde8
Contents?: true
Size: 1016 Bytes
Versions: 6
Compression:
Stored size: 1016 Bytes
Contents
#ifndef onetimeauth_poly1305_H #define onetimeauth_poly1305_H typedef struct crypto_onetimeauth_poly1305_implementation { int (*onetimeauth)(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k); int (*onetimeauth_verify)(const unsigned char *h, const unsigned char *in, unsigned long long inlen, const unsigned char *k); int (*onetimeauth_init)(crypto_onetimeauth_poly1305_state *state, const unsigned char *key); int (*onetimeauth_update)(crypto_onetimeauth_poly1305_state *state, const unsigned char *in, unsigned long long inlen); int (*onetimeauth_final)(crypto_onetimeauth_poly1305_state *state, unsigned char *out); } crypto_onetimeauth_poly1305_implementation; #endif
Version data entries
6 entries across 6 versions & 1 rubygems