summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-04-27 06:48:47 +0000
committertb <>2023-04-27 06:48:47 +0000
commit04ced690d3b3100878979fda3bdf00b27579fd07 (patch)
treecd98b2dac747f47386e97b532476c3b9286df172 /src
parentf6ffc05ed820560aeb1467e3bdd53138cf255ace (diff)
downloadopenbsd-04ced690d3b3100878979fda3bdf00b27579fd07.tar.gz
openbsd-04ced690d3b3100878979fda3bdf00b27579fd07.tar.bz2
openbsd-04ced690d3b3100878979fda3bdf00b27579fd07.zip
Remove a useless doxygen comment
Diffstat (limited to 'src')
-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);