From b62bc750a195d95c52b3d0824bb16c868e39b8a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 22 Feb 2009 23:30:27 +0000 Subject: [PATCH] add BN_CTX_get git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24808 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hcrypto/bn.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/hcrypto/bn.h b/lib/hcrypto/bn.h index f3f89b538..71aa0e390 100644 --- a/lib/hcrypto/bn.h +++ b/lib/hcrypto/bn.h @@ -64,7 +64,7 @@ #define BN_uadd hc_BN_uadd #define BN_CTX_new hc_BN_CTX_new #define BN_CTX_free hc_BN_CTX_free - +#define BN_CTX_get hc_BN_CTX_get /* * */ @@ -122,5 +122,6 @@ int BN_GENCB_call(BN_GENCB *, int, int); BN_CTX *BN_CTX_new(void); void BN_CTX_free(BN_CTX *); +BIGNUM *BN_CTX_get(BN_CTX *ctx); #endif