diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-05 09:08:40 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-05 09:08:40 +0000 |
commit | d9f38cbee88fdbb06d8577496062918da39fdeab (patch) | |
tree | 32333543a60cb2accc56c0b4377114324e1166b6 /ext/openssl/ossl_cipher.h | |
parent | 8d4d2e43233afcb075b4663828568bd5a5f16712 (diff) |
* ext/openssl/lib/openssl/x509.rb: new method X509::Name::parse.
* ext/openssl/ossl_digest.c: add ossl_digest_new().
* ext/openssl/ossl_digest.h: ditto.
* ext/openssl/ossl_cipher.c: add ossl_cipher_new().
* ext/openssl/ossl_cipher.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_cipher.h')
-rw-r--r-- | ext/openssl/ossl_cipher.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openssl/ossl_cipher.h b/ext/openssl/ossl_cipher.h index 4dcbd4fd89..63c7a875e8 100644 --- a/ext/openssl/ossl_cipher.h +++ b/ext/openssl/ossl_cipher.h @@ -16,6 +16,7 @@ extern VALUE cCipher; extern VALUE eCipherError; const EVP_CIPHER *GetCipherPtr(VALUE); +VALUE ossl_cipher_new(const EVP_CIPHER *); void Init_ossl_cipher(void); #endif /* _OSSL_CIPHER_H_ */ |