Add support for setting keybits and public exponent value for pkey RSA keygen.
[openssl.git] / crypto / bn / bn.h
index 8a7d3c0a911bd7c70a29f380b8d4f84d80c26bb5..0a9aa78d8bc3da41a4f822bcf4042e25488626bd 100644 (file)
@@ -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,