mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ossl_ns_spki.c: typed data
* ext/openssl/ossl_ns_spki.c (ossl_netscape_spki_type): use typed data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c5de5573c1
commit
a6d16bdc0f
1 changed files with 17 additions and 2 deletions
|
@ -14,10 +14,10 @@
|
||||||
if (!(spki)) { \
|
if (!(spki)) { \
|
||||||
ossl_raise(rb_eRuntimeError, "SPKI wasn't initialized!"); \
|
ossl_raise(rb_eRuntimeError, "SPKI wasn't initialized!"); \
|
||||||
} \
|
} \
|
||||||
(obj) = Data_Wrap_Struct((klass), 0, NETSCAPE_SPKI_free, (spki)); \
|
(obj) = TypedData_Wrap_Struct((klass), &ossl_netscape_spki_type, (spki)); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#define GetSPKI(obj, spki) do { \
|
#define GetSPKI(obj, spki) do { \
|
||||||
Data_Get_Struct((obj), NETSCAPE_SPKI, (spki)); \
|
TypedData_Get_Struct((obj), NETSCAPE_SPKI, &ossl_netscape_spki_type, (spki)); \
|
||||||
if (!(spki)) { \
|
if (!(spki)) { \
|
||||||
ossl_raise(rb_eRuntimeError, "SPKI wasn't initialized!"); \
|
ossl_raise(rb_eRuntimeError, "SPKI wasn't initialized!"); \
|
||||||
} \
|
} \
|
||||||
|
@ -37,6 +37,21 @@ VALUE eSPKIError;
|
||||||
/*
|
/*
|
||||||
* Private functions
|
* Private functions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
static void
|
||||||
|
ossl_netscape_spki_free(void *spki)
|
||||||
|
{
|
||||||
|
NETSCAPE_SPKI_free(spki);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const rb_data_type_t ossl_netscape_spki_type = {
|
||||||
|
"OpenSSL/NETSCAPE_SPKI",
|
||||||
|
{
|
||||||
|
0, ossl_netscape_spki_free,
|
||||||
|
},
|
||||||
|
0, 0, RUBY_TYPED_FREE_IMMEDIATELY,
|
||||||
|
};
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
ossl_spki_alloc(VALUE klass)
|
ossl_spki_alloc(VALUE klass)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue