Add missing return in crypto_stream_aes256estream_beforenm()

This commit is contained in:
Frank Denis 2013-04-26 21:55:10 -07:00
parent 47de75e935
commit 73f68e27ca

View File

@ -153,6 +153,7 @@ crypto_stream_beforenm(unsigned char *c, const unsigned char *k)
ECRYPT_keysetup(ctx, k, crypto_stream_KEYBYTES * 8,
crypto_stream_NONCEBYTES * 8);
return 0;
}
int