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 in typeref:typename:void [all...] |