mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00

Internals of OpenSSL::PKCS7 should be kept within ossl_pkcs7.c.
Add a new ossl_pkcs7_new() function for duplicating and wrapping an
OpenSSL PKCS7 object in OpenSSL::PKCS7. This follows the convention
used by other ossl_*_new() functions.
b5f79f771e
16 lines
362 B
C
16 lines
362 B
C
/*
|
|
* 'OpenSSL for Ruby' project
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* This program is licensed under the same licence as Ruby.
|
|
* (See the file 'COPYING'.)
|
|
*/
|
|
#if !defined(_OSSL_PKCS7_H_)
|
|
#define _OSSL_PKCS7_H_
|
|
|
|
VALUE ossl_pkcs7_new(PKCS7 *p7);
|
|
void Init_ossl_pkcs7(void);
|
|
|
|
#endif /* _OSSL_PKCS7_H_ */
|