diff options
author | tb <> | 2025-01-06 13:15:08 +0000 |
---|---|---|
committer | tb <> | 2025-01-06 13:15:08 +0000 |
commit | 0a040d15f10e359086a81abb9cece058587b248c (patch) | |
tree | 7d897b90778dc6bc390b24e5915af271481c3e1d | |
parent | fafe30f82ec033509fdf464bd0f8a9e3b9b2a12f (diff) | |
download | openbsd-0a040d15f10e359086a81abb9cece058587b248c.tar.gz openbsd-0a040d15f10e359086a81abb9cece058587b248c.tar.bz2 openbsd-0a040d15f10e359086a81abb9cece058587b248c.zip |
fix ugly whitespace
-rw-r--r-- | src/lib/libcrypto/bn/bn.h | 8 |
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); | |||
401 | int BN_clear_bit(BIGNUM *a, int n); | 401 | int BN_clear_bit(BIGNUM *a, int n); |
402 | char * BN_bn2hex(const BIGNUM *a); | 402 | char * BN_bn2hex(const BIGNUM *a); |
403 | char * BN_bn2dec(const BIGNUM *a); | 403 | char * BN_bn2dec(const BIGNUM *a); |
404 | int BN_hex2bn(BIGNUM **a, const char *str); | 404 | int BN_hex2bn(BIGNUM **a, const char *str); |
405 | int BN_dec2bn(BIGNUM **a, const char *str); | 405 | int BN_dec2bn(BIGNUM **a, const char *str); |
406 | int BN_asc2bn(BIGNUM **a, const char *str); | 406 | int BN_asc2bn(BIGNUM **a, const char *str); |
407 | int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); | 407 | int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); |
408 | int BN_kronecker(const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx); /* returns -2 for error */ | 408 | int 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); | |||
421 | int BN_is_prime_fasttest_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, | 421 | int 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 | ||
424 | BN_MONT_CTX *BN_MONT_CTX_new(void ); | 424 | BN_MONT_CTX *BN_MONT_CTX_new(void); |
425 | int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, | 425 | int 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); |
427 | int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont, | 427 | int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont, |