summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-04-11 17:28:37 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-04-11 17:28:37 +0000
commit54d853ebc380d06502bbb517a7ce116af52c123c (patch)
treeb70a663977feb86d8e3b0c6f5c1a44df8f35e0b0 /crypto/bn/bn.h
parentf5cda4cbb17c908ceef33f4f52d94e8e04b7c1ab (diff)
Add support for setting keybits and public exponent value for pkey RSA keygen.
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index 8a7d3c0a91..0a9aa78d8b 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -447,6 +447,7 @@ char * BN_bn2hex(const BIGNUM *a);
char * BN_bn2dec(const BIGNUM *a);
int BN_hex2bn(BIGNUM **a, const char *str);
int BN_dec2bn(BIGNUM **a, const char *str);
+int BN_asc2bn(BIGNUM **a, const char *str);
int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx);
int BN_kronecker(const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx); /* returns -2 for error */
BIGNUM *BN_mod_inverse(BIGNUM *ret,