lilliput-ae-reference-implementation

Implementations of Lilliput-AE submitted to the NIST LWC standardization process
git clone https://git.kevinlegouguec.net/lilliput-ae-reference-implementation
Log | Files | Refs | README

commit 7378e4934fd0da6204a2c099a7602d51cc675bbd
parent 8ebfbf8d7dae9fff9dec033f3712c437ffd828a9
Author: Kévin Le Gouguec <kevin.legouguec@airbus.com>
Date:   Tue, 18 Dec 2018 14:49:31 +0100

Correction du code de retour du déchiffrement

Diffstat:
Mnist/encrypt.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nist/encrypt.c b/nist/encrypt.c @@ -40,7 +40,7 @@ int crypto_aead_decrypt( ); if (!valid) - return 1; + return -1; *mlen = tagless_len;