#include "ossl.h"
Go to the source code of this file.
#define GetX509StCtx | ( | obj, | ||
ctx | ||||
) |
do { \ Data_Get_Struct(obj, X509_STORE_CTX, ctx); \ if (!ctx) { \ ossl_raise(rb_eRuntimeError, "STORE_CTX is out of scope!"); \ } \ } while (0)
Definition at line 36 of file ossl_x509store.c.
Referenced by ossl_x509stctx_cleanup(), ossl_x509stctx_get_chain(), ossl_x509stctx_get_curr_cert(), ossl_x509stctx_get_curr_crl(), ossl_x509stctx_get_err(), ossl_x509stctx_get_err_depth(), ossl_x509stctx_get_err_string(), ossl_x509stctx_initialize(), ossl_x509stctx_set_error(), ossl_x509stctx_set_flags(), ossl_x509stctx_set_purpose(), ossl_x509stctx_set_time(), ossl_x509stctx_set_trust(), and ossl_x509stctx_verify().
#define GetX509Store | ( | obj, | ||
st | ||||
) |
do { \ Data_Get_Struct(obj, X509_STORE, st); \ if (!st) { \ ossl_raise(rb_eRuntimeError, "STORE wasn't initialized!"); \ } \ } while (0)
Definition at line 19 of file ossl_x509store.c.
Referenced by ossl_x509store_add_cert(), ossl_x509store_add_crl(), ossl_x509store_add_file(), ossl_x509store_add_path(), ossl_x509store_initialize(), ossl_x509store_set_default_paths(), ossl_x509store_set_flags(), ossl_x509store_set_purpose(), ossl_x509store_set_trust(), and ossl_x509store_set_vfy_cb().
#define SafeGetX509StCtx | ( | obj, | ||
storep | ||||
) |
do { \ OSSL_Check_Kind(obj, cX509StoreContext); \ GetX509Store(obj, ctx); \ } while (0)
Definition at line 42 of file ossl_x509store.c.
#define SafeGetX509Store | ( | obj, | ||
st | ||||
) |
do { \ OSSL_Check_Kind(obj, cX509Store); \ GetX509Store(obj, st); \ } while (0)
Definition at line 25 of file ossl_x509store.c.
Referenced by DupX509StorePtr(), GetX509StorePtr(), and ossl_x509stctx_initialize().
#define WrapX509StCtx | ( | klass, | ||
obj, | ||||
ctx | ||||
) |
do { \ if (!ctx) { \ ossl_raise(rb_eRuntimeError, "STORE_CTX wasn't initialized!"); \ } \ obj = Data_Wrap_Struct(klass, 0, ossl_x509stctx_free, ctx); \ } while (0)
Definition at line 30 of file ossl_x509store.c.
Referenced by ossl_x509stctx_alloc(), and ossl_x509stctx_new().
#define WrapX509Store | ( | klass, | ||
obj, | ||||
st | ||||
) |
do { \ if (!st) { \ ossl_raise(rb_eRuntimeError, "STORE wasn't initialized!"); \ } \ obj = Data_Wrap_Struct(klass, 0, X509_STORE_free, st); \ } while (0)
Definition at line 13 of file ossl_x509store.c.
Referenced by ossl_x509store_alloc(), and ossl_x509store_new().
X509_STORE* DupX509StorePtr | ( | VALUE | obj | ) |
Definition at line 78 of file ossl_x509store.c.
References SafeGetX509Store.
X509_STORE* GetX509StorePtr | ( | VALUE | obj | ) |
Definition at line 68 of file ossl_x509store.c.
References SafeGetX509Store.
Referenced by ossl_pkcs7_verify(), and ossl_sslctx_setup().
void Init_ossl_x509store | ( | void | ) |
Definition at line 581 of file ossl_x509store.c.
References cX509Store, cX509StoreContext, eOSSLError, eX509StoreError, mX509, ossl_x509stctx_alloc(), ossl_x509stctx_cleanup(), ossl_x509stctx_get_chain(), ossl_x509stctx_get_curr_cert(), ossl_x509stctx_get_curr_crl(), ossl_x509stctx_get_err(), ossl_x509stctx_get_err_depth(), ossl_x509stctx_get_err_string(), ossl_x509stctx_initialize(), ossl_x509stctx_set_error(), ossl_x509stctx_set_flags(), ossl_x509stctx_set_purpose(), ossl_x509stctx_set_time(), ossl_x509stctx_set_trust(), ossl_x509stctx_verify(), ossl_x509store_add_cert(), ossl_x509store_add_crl(), ossl_x509store_add_file(), ossl_x509store_add_path(), ossl_x509store_alloc(), ossl_x509store_initialize(), ossl_x509store_set_default_paths(), ossl_x509store_set_flags(), ossl_x509store_set_purpose(), ossl_x509store_set_time(), ossl_x509store_set_trust(), ossl_x509store_set_vfy_cb(), ossl_x509store_verify(), Qfalse, rb_attr(), rb_cObject, rb_define_alloc_func(), rb_define_class_under(), rb_define_method(), and rb_intern.
Referenced by Init_ossl_x509().
Definition at line 354 of file ossl_x509store.c.
References eX509StoreError, NULL, ossl_raise(), and WrapX509StCtx.
Referenced by Init_ossl_x509store().
Definition at line 514 of file ossl_x509store.c.
References GetX509StCtx.
Referenced by Init_ossl_x509store().
Definition at line 332 of file ossl_x509store.c.
References cX509StoreContext, OSSL_Check_Kind, and RDATA.
Referenced by ossl_verify_cb().
static void ossl_x509stctx_free | ( | X509_STORE_CTX * | ctx | ) | [static] |
Definition at line 344 of file ossl_x509store.c.
Definition at line 420 of file ossl_x509store.c.
References GetX509StCtx, NULL, OSSL_Debug, ossl_x509_new(), rb_ary_new(), rb_ary_new2(), rb_ary_push(), and STACK_OF().
Referenced by Init_ossl_x509store(), and ossl_x509store_verify().
Definition at line 489 of file ossl_x509store.c.
References GetX509StCtx, and ossl_x509_new().
Referenced by Init_ossl_x509store().
Definition at line 499 of file ossl_x509store.c.
References GetX509StCtx, and ossl_x509crl_new().
Referenced by Init_ossl_x509store().
Definition at line 446 of file ossl_x509store.c.
References GetX509StCtx, and INT2FIX.
Referenced by Init_ossl_x509store(), and ossl_x509store_verify().
Definition at line 479 of file ossl_x509store.c.
References GetX509StCtx, and INT2FIX.
Referenced by Init_ossl_x509store().
Definition at line 467 of file ossl_x509store.c.
References err, GetX509StCtx, and rb_str_new2().
Referenced by Init_ossl_x509store(), and ossl_x509store_verify().
Definition at line 373 of file ossl_x509store.c.
References DupX509CertPtr(), eX509StoreError, GetX509StCtx, NIL_P, NULL, ossl_raise(), ossl_x509stctx_set_flags(), ossl_x509stctx_set_purpose(), ossl_x509stctx_set_time(), ossl_x509stctx_set_trust(), rb_iv_get(), rb_iv_set(), rb_scan_args(), SafeGetX509Store, and STACK_OF().
Referenced by Init_ossl_x509store().
VALUE ossl_x509stctx_new | ( | X509_STORE_CTX * | ctx | ) |
Definition at line 322 of file ossl_x509store.c.
References cX509StoreContext, and WrapX509StCtx.
Referenced by ossl_verify_cb().
Definition at line 456 of file ossl_x509store.c.
References GetX509StCtx, and NUM2INT.
Referenced by Init_ossl_x509store().
Definition at line 525 of file ossl_x509store.c.
References GetX509StCtx, and NUM2LONG().
Referenced by Init_ossl_x509store(), and ossl_x509stctx_initialize().
Definition at line 537 of file ossl_x509store.c.
References GetX509StCtx, and NUM2LONG().
Referenced by Init_ossl_x509store(), and ossl_x509stctx_initialize().
Definition at line 565 of file ossl_x509store.c.
References GetX509StCtx, NUM2LONG(), and rb_Integer().
Referenced by Init_ossl_x509store(), and ossl_x509stctx_initialize().
Definition at line 549 of file ossl_x509store.c.
References GetX509StCtx, and NUM2LONG().
Referenced by Init_ossl_x509store(), and ossl_x509stctx_initialize().
Definition at line 406 of file ossl_x509store.c.
References GetX509StCtx, ossl_verify_cb_idx, Qtrue, rb_iv_get(), and result.
Referenced by Init_ossl_x509store().
Definition at line 263 of file ossl_x509store.c.
References eX509StoreError, GetX509CertPtr(), GetX509Store, NULL, and ossl_raise().
Referenced by Init_ossl_x509store().
Definition at line 278 of file ossl_x509store.c.
References eX509StoreError, GetX509CRLPtr(), GetX509Store, NULL, and ossl_raise().
Referenced by Init_ossl_x509store().
Definition at line 208 of file ossl_x509store.c.
References eX509StoreError, GetX509Store, NULL, ossl_raise(), Qnil, RSTRING_PTR, and SafeStringValue.
Referenced by Init_ossl_x509store().
Definition at line 229 of file ossl_x509store.c.
References eX509StoreError, GetX509Store, NULL, ossl_raise(), Qnil, RSTRING_PTR, and SafeStringValue.
Referenced by Init_ossl_x509store().
Definition at line 92 of file ossl_x509store.c.
References eX509StoreError, NULL, ossl_raise(), and WrapX509Store.
Referenced by Init_ossl_x509store().
Definition at line 127 of file ossl_x509store.c.
References GetX509Store, INT2NUM(), ossl_verify_cb(), ossl_x509store_set_vfy_cb(), Qnil, and rb_iv_set().
Referenced by Init_ossl_x509store().
VALUE ossl_x509store_new | ( | X509_STORE * | store | ) |
Definition at line 58 of file ossl_x509store.c.
References cX509Store, and WrapX509Store.
Definition at line 250 of file ossl_x509store.c.
References eX509StoreError, GetX509Store, NULL, and ossl_raise().
Referenced by Init_ossl_x509store().
Definition at line 153 of file ossl_x509store.c.
References GetX509Store, NUM2LONG(), and rb_iv_set().
Referenced by Init_ossl_x509store().
Definition at line 169 of file ossl_x509store.c.
References GetX509Store, NUM2LONG(), and rb_iv_set().
Referenced by Init_ossl_x509store().
Definition at line 201 of file ossl_x509store.c.
References rb_iv_set().
Referenced by Init_ossl_x509store().
Definition at line 185 of file ossl_x509store.c.
References GetX509Store, NUM2LONG(), and rb_iv_set().
Referenced by Init_ossl_x509store().
Definition at line 109 of file ossl_x509store.c.
References GetX509Store, ossl_verify_cb_idx, rb_iv_set(), and X509_STORE_set_ex_data().
Referenced by Init_ossl_x509store(), and ossl_x509store_initialize().
Definition at line 297 of file ossl_x509store.c.
References cX509StoreContext, ossl_x509stctx_get_chain(), ossl_x509stctx_get_err(), ossl_x509stctx_get_err_string(), rb_block_given_p(), rb_block_proc(), rb_funcall(), rb_intern, rb_iv_get(), rb_iv_set(), rb_scan_args(), and result.
Referenced by Init_ossl_x509store().
Definition at line 50 of file ossl_x509store.c.
Referenced by Init_ossl_x509store(), and ossl_x509store_new().
Definition at line 51 of file ossl_x509store.c.
Referenced by Init_ossl_x509store(), ossl_x509stctx_clear_ptr(), ossl_x509stctx_new(), and ossl_x509store_verify().
Definition at line 52 of file ossl_x509store.c.
Referenced by Init_ossl_x509store(), ossl_x509stctx_alloc(), ossl_x509stctx_initialize(), ossl_x509store_add_cert(), ossl_x509store_add_crl(), ossl_x509store_add_file(), ossl_x509store_add_path(), ossl_x509store_alloc(), and ossl_x509store_set_default_paths().