]> git.meshlink.io Git - meshlink/commitdiff
Add missing declaration of chacha_ivsetup_96().
authorGuus Sliepen <guus@meshlink.io>
Wed, 19 Dec 2018 20:24:25 +0000 (21:24 +0100)
committerGuus Sliepen <guus@meshlink.io>
Thu, 13 Jun 2019 21:47:37 +0000 (23:47 +0200)
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 */