]> git.meshlink.io Git - meshlink/blobdiff - src/chacha-poly1305/chacha.h
Add missing declaration of chacha_ivsetup_96().
[meshlink] / src / chacha-poly1305 / chacha.h
index af1b9a407906447274547d9a3b3568e549f7d145..38746057511b1d16f28ce3ed5549053cbdcbcc5e 100644 (file)
@@ -19,6 +19,7 @@ struct chacha_ctx {
 
 void chacha_keysetup(struct chacha_ctx *x, const uint8_t *k, uint32_t kbits);
 void chacha_ivsetup(struct chacha_ctx *x, const uint8_t *iv, const uint8_t *ctr);
+void chacha_ivsetup_96(struct chacha_ctx *x, const uint8_t *iv, const uint8_t *ctr);
 void chacha_encrypt_bytes(struct chacha_ctx *x, const uint8_t *m, uint8_t * c, uint32_t bytes);
 
 #endif /* CHACHA_H */