summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-04-27 06:48:48 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-04-27 06:48:48 +0000
commit1f8b23bfaae0f266686585892d724e671d1c0269 (patch)
tree2f9e2b8f54c7407695796fe6a040b1f4103c163b /lib/libcrypto
parent8eb8187ac1a385d94565c3ff15359fe69ffeec8a (diff)
Remove a useless doxygen comment
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/bn/bn.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libcrypto/bn/bn.h b/lib/libcrypto/bn/bn.h
index c1d28cb10df..386f8dff8d3 100644
--- a/lib/libcrypto/bn/bn.h
+++ b/lib/libcrypto/bn/bn.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn.h,v 1.70 2023/04/25 19:57:59 tb Exp $ */
+/* $OpenBSD: bn.h,v 1.71 2023/04/27 06:48:47 tb Exp $ */
/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -347,10 +347,6 @@ int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
-/** BN_set_negative sets sign of a BIGNUM
- * \param b pointer to the BIGNUM object
- * \param n 0 if the BIGNUM b should be positive and a value != 0 otherwise
- */
void BN_set_negative(BIGNUM *b, int n);
int BN_is_negative(const BIGNUM *b);