diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-10 01:17:00 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-10 01:17:00 +0000 |
| commit | 4a18014b832d83528a77d342b0e3ed0e0e98d552 (patch) | |
| tree | b9744a9174538b8d071884e5e93e833852d3b5ad /ext | |
| parent | d8b03a4c37af9a7754e3df93dab9264e2558a490 (diff) | |
| download | ruby-4a18014b832d83528a77d342b0e3ed0e0e98d552.tar.gz ruby-4a18014b832d83528a77d342b0e3ed0e0e98d552.tar.xz ruby-4a18014b832d83528a77d342b0e3ed0e0e98d552.zip | |
these files were forgotten in last commit.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/openssl/ossl_asn1.h | 5 | ||||
| -rw-r--r-- | ext/openssl/ossl_pkcs7.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ext/openssl/ossl_asn1.h b/ext/openssl/ossl_asn1.h index 919ede0f3..8aad9f970 100644 --- a/ext/openssl/ossl_asn1.h +++ b/ext/openssl/ossl_asn1.h @@ -18,6 +18,11 @@ VALUE asn1time_to_time(ASN1_TIME *); time_t time_to_time_t(VALUE); /* + * ASN1_STRING conversions + */ +VALUE asn1str_to_str(ASN1_STRING *); + +/* * ASN1_INTEGER conversions */ VALUE asn1integer_to_num(ASN1_INTEGER *); diff --git a/ext/openssl/ossl_pkcs7.h b/ext/openssl/ossl_pkcs7.h index 9378397f2..f5942d65d 100644 --- a/ext/openssl/ossl_pkcs7.h +++ b/ext/openssl/ossl_pkcs7.h @@ -13,7 +13,8 @@ extern VALUE mPKCS7; extern VALUE cPKCS7; -extern VALUE cPKCS7SignerInfo; +extern VALUE cPKCS7Signer; +extern VALUE cPKCS7Recipient; extern VALUE ePKCS7Error; void Init_ossl_pkcs7(void); |
