mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9147e519ba
* 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
23 lines
464 B
C
23 lines
464 B
C
/*
|
|
* $Id$
|
|
* 'OpenSSL for Ruby' project
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* This program is licenced under the same licence as Ruby.
|
|
* (See the file 'LICENCE'.)
|
|
*/
|
|
#if !defined(_OSSL_PKCS7_H_)
|
|
#define _OSSL_PKCS7_H_
|
|
|
|
extern VALUE mPKCS7;
|
|
extern VALUE cPKCS7;
|
|
extern VALUE cPKCS7Signer;
|
|
extern VALUE cPKCS7Recipient;
|
|
extern VALUE ePKCS7Error;
|
|
|
|
void Init_ossl_pkcs7(void);
|
|
|
|
#endif /* _OSSL_PKCS7_H_ */
|
|
|