summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/bn/bn.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/bn/bn.h b/src/lib/libcrypto/bn/bn.h
index c1d28cb10d..386f8dff8d 100644
--- a/src/lib/libcrypto/bn/bn.h
+++ b/src/lib/libcrypto/bn/bn.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn.h,v 1.70 2023/04/25 19:57:59 tb Exp $ */ 1/* $OpenBSD: bn.h,v 1.71 2023/04/27 06:48:47 tb Exp $ */
2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -347,10 +347,6 @@ int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
347int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); 347int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
348int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); 348int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
349int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx); 349int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
350/** BN_set_negative sets sign of a BIGNUM
351 * \param b pointer to the BIGNUM object
352 * \param n 0 if the BIGNUM b should be positive and a value != 0 otherwise
353 */
354void BN_set_negative(BIGNUM *b, int n); 350void BN_set_negative(BIGNUM *b, int n);
355 351
356int BN_is_negative(const BIGNUM *b); 352int BN_is_negative(const BIGNUM *b);