summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkcs7.h
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@ruby-lang.org>2005-09-07 07:40:55 +0000
committergotoyuzo <gotoyuzo@ruby-lang.org>2005-09-07 07:40:55 +0000
commit0d7b6d0c1aca4c23e79fbd797429a818b3df3c03 (patch)
treeca8bfcf74887ea8d127373c1193d82c180ed8dea /ext/openssl/ossl_pkcs7.h
parent761fd0e3d69efeaac32d5d497ead8f659e078158 (diff)
downloadruby-openssl-history-0d7b6d0c1aca4c23e79fbd797429a818b3df3c03.tar.gz
* ext/openssl/ossl_asn1.c (asn1str_to_str): new function.
* ext/openssl/ossl_pkcs7.c: new class OpenSSL::PKCS7::RecipientInfo. this class wraps PKCS7_RECIP_INFO struct. * ext/openssl/ossl_pkcs7.c: OpenSSL::PKCS7::Signer is renamed to OpenSSL::PKCS7::SignerInfo. ("Signer" remains as an alias of SignerInfo.) * test/openssl/test_pkcs7.rb: new file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_pkcs7.h')
-rw-r--r--ext/openssl/ossl_pkcs7.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/openssl/ossl_pkcs7.h b/ext/openssl/ossl_pkcs7.h
index 9378397..f5942d6 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);