Lines Matching refs:uint8_t
52 extern const uint8_t chacha_const32[16];
54 void chacha_core(uint8_t[restrict static CHACHA_CORE_OUTBYTES],
55 const uint8_t[static CHACHA_CORE_INBYTES],
56 const uint8_t[static CHACHA_CORE_KEYBYTES],
57 const uint8_t[static CHACHA_CORE_CONSTBYTES],
59 void hchacha(uint8_t[restrict static HCHACHA_OUTBYTES],
60 const uint8_t[static HCHACHA_INBYTES],
61 const uint8_t[static HCHACHA_KEYBYTES],
62 const uint8_t[static HCHACHA_CONSTBYTES],
64 void chacha_stream(uint8_t *restrict, size_t,
66 const uint8_t[static CHACHA_STREAM_NONCEBYTES],
67 const uint8_t[static CHACHA_STREAM_KEYBYTES],
69 void chacha_stream_xor(uint8_t *, const uint8_t *, size_t,
71 const uint8_t[static CHACHA_STREAM_NONCEBYTES],
72 const uint8_t[static CHACHA_STREAM_KEYBYTES],
74 void xchacha_stream(uint8_t *restrict, size_t,
76 const uint8_t[static XCHACHA_STREAM_NONCEBYTES],
77 const uint8_t[static XCHACHA_STREAM_KEYBYTES],
79 void xchacha_stream_xor(uint8_t *, const uint8_t *, size_t,
81 const uint8_t[static XCHACHA_STREAM_NONCEBYTES],
82 const uint8_t[static XCHACHA_STREAM_KEYBYTES],