artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d85471
)
Align EVP_CIPHER_CTX_init() and _legacy_clear()
author
tb
<tb@openbsd.org>
Sun, 18 Feb 2024 15:53:54 +0000
(15:53 +0000)
committer
tb
<tb@openbsd.org>
Sun, 18 Feb 2024 15:53:54 +0000
(15:53 +0000)
lib/libcrypto/evp/evp_cipher.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/evp/evp_cipher.c
b/lib/libcrypto/evp/evp_cipher.c
index
94eb42a
..
12fa6e1
100644
(file)
--- a/
lib/libcrypto/evp/evp_cipher.c
+++ b/
lib/libcrypto/evp/evp_cipher.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: evp_cipher.c,v 1.1
8 2024/02/18 15:41:50
tb Exp $ */
+/* $OpenBSD: evp_cipher.c,v 1.1
9 2024/02/18 15:53:54
tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-615,7
+615,7
@@
EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx)
void
EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
{
- memset(ctx, 0, sizeof(
EVP_CIPHER_CTX
));
+ memset(ctx, 0, sizeof(
*ctx
));
}
void