poly1305.h 645 B

1234567891011121314151617181920212223
  1. /* $OpenBSD: poly1305.h,v 1.4 2014/05/02 03:27:54 djm Exp $ */
  2. /*
  3. * Public Domain poly1305 from Andrew Moon
  4. * poly1305-donna-unrolled.c from https://github.com/floodyberry/poly1305-donna
  5. */
  6. #ifndef POLY1305_H
  7. #define POLY1305_H
  8. #include <sys/types.h>
  9. #define POLY1305_KEYLEN 32
  10. #define POLY1305_TAGLEN 16
  11. void poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen,
  12. const u_char key[POLY1305_KEYLEN])
  13. __attribute__((__bounded__(__minbytes__, 1, POLY1305_TAGLEN)))
  14. __attribute__((__bounded__(__buffer__, 2, 3)))
  15. __attribute__((__bounded__(__minbytes__, 4, POLY1305_KEYLEN)));
  16. #endif /* POLY1305_H */