diff options
author | jsing <> | 2022-11-23 02:13:24 +0000 |
---|---|---|
committer | jsing <> | 2022-11-23 02:13:24 +0000 |
commit | 429da67d96a9ca12d121a7190aa504d0cd1fd7cc (patch) | |
tree | dc82ccf98281ff027d06841250477199b7c581e0 /src | |
parent | 83218b0f577c41d8cd32381934d706b6af28f396 (diff) | |
download | openbsd-429da67d96a9ca12d121a7190aa504d0cd1fd7cc.tar.gz openbsd-429da67d96a9ca12d121a7190aa504d0cd1fd7cc.tar.bz2 openbsd-429da67d96a9ca12d121a7190aa504d0cd1fd7cc.zip |
Remove bn_* defines/prototypes.
These now come directly via bn_lcl.h.
ok tb@
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/ec/ec_lcl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ec/ec_lcl.h b/src/lib/libcrypto/ec/ec_lcl.h index dc005d0d23..3a4f6ad791 100644 --- a/src/lib/libcrypto/ec/ec_lcl.h +++ b/src/lib/libcrypto/ec/ec_lcl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lcl.h,v 1.21 2022/11/22 21:54:01 tb Exp $ */ | 1 | /* $OpenBSD: ec_lcl.h,v 1.22 2022/11/23 02:13:24 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -86,9 +86,6 @@ __BEGIN_HIDDEN_DECLS | |||
86 | # endif | 86 | # endif |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) | ||
90 | BIGNUM *bn_expand2(BIGNUM *a, int words); | ||
91 | |||
92 | /* Use default functions for poin2oct, oct2point and compressed coordinates */ | 89 | /* Use default functions for poin2oct, oct2point and compressed coordinates */ |
93 | #define EC_FLAGS_DEFAULT_OCT 0x1 | 90 | #define EC_FLAGS_DEFAULT_OCT 0x1 |
94 | 91 | ||