- djm@cvs.openbsd.org 2013/12/02 03:13:14
[cipher.c] correct bzero of chacha20+poly1305 key context. bz#2177 from Loganaden Velvindron @ AfriNIC Also make it a memset for consistency with the rest of cipher.c
This commit is contained in:
parent
f7e8a8796d
commit
960f6a2b52
|
@ -33,6 +33,12 @@
|
||||||
[key.c]
|
[key.c]
|
||||||
make key_to_blob() return a NULL blob on failure; part of
|
make key_to_blob() return a NULL blob on failure; part of
|
||||||
bz#2175 from Loganaden Velvindron @ AfriNIC
|
bz#2175 from Loganaden Velvindron @ AfriNIC
|
||||||
|
- djm@cvs.openbsd.org 2013/12/02 03:13:14
|
||||||
|
[cipher.c]
|
||||||
|
correct bzero of chacha20+poly1305 key context. bz#2177 from
|
||||||
|
Loganaden Velvindron @ AfriNIC
|
||||||
|
|
||||||
|
Also make it a memset for consistency with the rest of cipher.c
|
||||||
|
|
||||||
20131121
|
20131121
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
4
cipher.c
4
cipher.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: cipher.c,v 1.91 2013/11/21 00:45:44 djm Exp $ */
|
/* $OpenBSD: cipher.c,v 1.92 2013/12/02 03:13:14 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -414,7 +414,7 @@ void
|
||||||
cipher_cleanup(CipherContext *cc)
|
cipher_cleanup(CipherContext *cc)
|
||||||
{
|
{
|
||||||
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
|
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
|
||||||
bzero(&cc->cp_ctx, sizeof(&cc->cp_ctx));
|
memset(&cc->cp_ctx, 0, sizeof(cc->cp_ctx));
|
||||||
else if (EVP_CIPHER_CTX_cleanup(&cc->evp) == 0)
|
else if (EVP_CIPHER_CTX_cleanup(&cc->evp) == 0)
|
||||||
error("cipher_cleanup: EVP_CIPHER_CTX_cleanup failed");
|
error("cipher_cleanup: EVP_CIPHER_CTX_cleanup failed");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue