artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc48ee4
)
Garbage collect BN_zero_ex()
author
tb
<tb@openbsd.org>
Sun, 30 Apr 2023 19:15:48 +0000
(19:15 +0000)
committer
tb
<tb@openbsd.org>
Sun, 30 Apr 2023 19:15:48 +0000
(19:15 +0000)
lib/libcrypto/bn/bn_lib.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/bn/bn_lib.c
b/lib/libcrypto/bn/bn_lib.c
index
439bdb1
..
389dd3f
100644
(file)
--- a/
lib/libcrypto/bn/bn_lib.c
+++ b/
lib/libcrypto/bn/bn_lib.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: bn_lib.c,v 1.8
5 2023/04/25 19:57:59
tb Exp $ */
+/* $OpenBSD: bn_lib.c,v 1.8
6 2023/04/30 19:15:48
tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-601,12
+601,6
@@
BN_zero(BIGNUM *a)
a->top = 0;
}
-void
-BN_zero_ex(BIGNUM *a)
-{
- BN_zero(a);
-}
-
int
BN_one(BIGNUM *a)
{