diff options
author | technorama <technorama@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-03 07:02:44 +0000 |
---|---|---|
committer | technorama <technorama@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-03 07:02:44 +0000 |
commit | 8b95ee24de750995a0ffa7881b0c190315a98598 (patch) | |
tree | 933795acd0d6fc95e1f98cfd05ee98b9a2d4fc08 /ext/openssl/ossl_bn.h | |
parent | eed46ac6337e995196430b18eca10c9cb15317da (diff) |
* ext/openssl/ossl_bn.c: More documentation.
* ext/openssl/lib/ossl_{pkey,pkey_ec}.[ch]: Add elliptic curves.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_bn.h')
-rw-r--r-- | ext/openssl/ossl_bn.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/openssl/ossl_bn.h b/ext/openssl/ossl_bn.h index 12aa484873..d6c396227b 100644 --- a/ext/openssl/ossl_bn.h +++ b/ext/openssl/ossl_bn.h @@ -14,9 +14,12 @@ extern VALUE cBN; extern VALUE eBNError; -VALUE ossl_bn_new(BIGNUM *); +extern BN_CTX *ossl_bn_ctx; + +VALUE ossl_bn_new(const BIGNUM *); BIGNUM *GetBNPtr(VALUE); void Init_ossl_bn(void); + #endif /* _OSS_BN_H_ */ |