From: Mark Wooding Date: Thu, 15 Aug 2019 17:16:02 +0000 (+0100) Subject: symm/chacha.c: Set the correct nonce size for `xchachaNN'. X-Git-Tag: 2.5.0~17 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/catacomb/commitdiff_plain/9acc7e10f1da03be55e3bc2cdcbbd5775253e3d0?ds=sidebyside;hp=--cc symm/chacha.c: Set the correct nonce size for `xchachaNN'. Oops. --- 9acc7e10f1da03be55e3bc2cdcbbd5775253e3d0 diff --git a/symm/chacha.c b/symm/chacha.c index 9b83eea5..84b6c36f 100644 --- a/symm/chacha.c +++ b/symm/chacha.c @@ -593,7 +593,7 @@ CHACHA_VARS(DEFGCIPHER) \ const gccipher xchacha##r = { \ "xchacha" #r, chacha_keysz, \ - CHACHA_NONCESZ, gxinit_##r \ + XCHACHA_NONCESZ, gxinit_##r \ }; CHACHA_VARS(DEFGXCIPHER)