mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ossl_pkcs12.c: typed data
* ext/openssl/ossl_pkcs12.c (ossl_pkcs12_type): use typed data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cd96afe993
commit
374fe20e4f
1 changed files with 16 additions and 2 deletions
|
@ -7,11 +7,11 @@
|
||||||
|
|
||||||
#define WrapPKCS12(klass, obj, p12) do { \
|
#define WrapPKCS12(klass, obj, p12) do { \
|
||||||
if(!(p12)) ossl_raise(rb_eRuntimeError, "PKCS12 wasn't initialized."); \
|
if(!(p12)) ossl_raise(rb_eRuntimeError, "PKCS12 wasn't initialized."); \
|
||||||
(obj) = Data_Wrap_Struct((klass), 0, PKCS12_free, (p12)); \
|
(obj) = TypedData_Wrap_Struct((klass), &ossl_pkcs12_type, (p12)); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define GetPKCS12(obj, p12) do { \
|
#define GetPKCS12(obj, p12) do { \
|
||||||
Data_Get_Struct((obj), PKCS12, (p12)); \
|
TypedData_Get_Struct((obj), PKCS12, &ossl_pkcs12_type, (p12)); \
|
||||||
if(!(p12)) ossl_raise(rb_eRuntimeError, "PKCS12 wasn't initialized."); \
|
if(!(p12)) ossl_raise(rb_eRuntimeError, "PKCS12 wasn't initialized."); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
@ -36,6 +36,20 @@ VALUE ePKCS12Error;
|
||||||
/*
|
/*
|
||||||
* Private
|
* Private
|
||||||
*/
|
*/
|
||||||
|
static void
|
||||||
|
ossl_pkcs12_free(void *ptr)
|
||||||
|
{
|
||||||
|
PKCS12_free(ptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const rb_data_type_t ossl_pkcs12_type = {
|
||||||
|
"OpenSSL/PKCS12",
|
||||||
|
{
|
||||||
|
0, ossl_pkcs12_free,
|
||||||
|
},
|
||||||
|
0, 0, RUBY_TYPED_FREE_IMMEDIATELY,
|
||||||
|
};
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
ossl_pkcs12_s_allocate(VALUE klass)
|
ossl_pkcs12_s_allocate(VALUE klass)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue