summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2025-01-06 13:15:08 +0000
committertb <>2025-01-06 13:15:08 +0000
commit0a040d15f10e359086a81abb9cece058587b248c (patch)
tree7d897b90778dc6bc390b24e5915af271481c3e1d
parentfafe30f82ec033509fdf464bd0f8a9e3b9b2a12f (diff)
downloadopenbsd-0a040d15f10e359086a81abb9cece058587b248c.tar.gz
openbsd-0a040d15f10e359086a81abb9cece058587b248c.tar.bz2
openbsd-0a040d15f10e359086a81abb9cece058587b248c.zip
fix ugly whitespace
-rw-r--r--src/lib/libcrypto/bn/bn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bn/bn.h b/src/lib/libcrypto/bn/bn.h
index 523ff42877..66a05ce9f0 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.78 2024/04/10 14:58:06 beck Exp $ */ 1/* $OpenBSD: bn.h,v 1.79 2025/01/06 13:15:08 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 *
@@ -401,8 +401,8 @@ int BN_set_bit(BIGNUM *a, int n);
401int BN_clear_bit(BIGNUM *a, int n); 401int BN_clear_bit(BIGNUM *a, int n);
402char * BN_bn2hex(const BIGNUM *a); 402char * BN_bn2hex(const BIGNUM *a);
403char * BN_bn2dec(const BIGNUM *a); 403char * BN_bn2dec(const BIGNUM *a);
404int BN_hex2bn(BIGNUM **a, const char *str); 404int BN_hex2bn(BIGNUM **a, const char *str);
405int BN_dec2bn(BIGNUM **a, const char *str); 405int BN_dec2bn(BIGNUM **a, const char *str);
406int BN_asc2bn(BIGNUM **a, const char *str); 406int BN_asc2bn(BIGNUM **a, const char *str);
407int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); 407int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
408int BN_kronecker(const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx); /* returns -2 for error */ 408int BN_kronecker(const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx); /* returns -2 for error */
@@ -421,7 +421,7 @@ int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb);
421int BN_is_prime_fasttest_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, 421int BN_is_prime_fasttest_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx,
422 int do_trial_division, BN_GENCB *cb); 422 int do_trial_division, BN_GENCB *cb);
423 423
424BN_MONT_CTX *BN_MONT_CTX_new(void ); 424BN_MONT_CTX *BN_MONT_CTX_new(void);
425int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, 425int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
426 BN_MONT_CTX *mont, BN_CTX *ctx); 426 BN_MONT_CTX *mont, BN_CTX *ctx);
427int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont, 427int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,