18#define CHACHA_MINKEYLEN 16
19#define CHACHA_NONCELEN 8
20#define CHACHA_CTRLEN 8
21#define CHACHA_STATELEN (CHACHA_NONCELEN+CHACHA_CTRLEN)
27void chacha_keysetup(
struct chacha_ctx *x,
const uint8_t *k, uint32_t kbits)
28#ifdef HAVE_GCC_BOUNDED_ATTRIBUTE
29 __attribute__((__bounded__(__minbytes__, 2, CHACHA_MINKEYLEN)))
32void chacha_ivsetup(
struct chacha_ctx *x,
const uint8_t *iv,
const uint8_t *ctr)
33#ifdef HAVE_GCC_BOUNDED_ATTRIBUTE
34 __attribute__((__bounded__(__minbytes__, 2, CHACHA_NONCELEN)))
35 __attribute__((__bounded__(__minbytes__, 3, CHACHA_CTRLEN)))
38void chacha_encrypt_bytes(
struct chacha_ctx *x,
const uint8_t *m,
39 uint8_t *c, uint32_t bytes)
40#ifdef HAVE_GCC_BOUNDED_ATTRIBUTE
41 __attribute__((__bounded__(__buffer__, 2, 4)))
42 __attribute__((__bounded__(__buffer__, 3, 4)))