Home
last modified time | relevance | path

Searched refs:X509_REQ (Results 1 - 25 of 245) sorted by relevance

12345678910

/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx_req.c51 X509_REQ *ret = (X509_REQ *)*pval; in req_cb()
67 X509_REQ *old = exarg; in req_cb()
121 ASN1_SEQUENCE_ref(X509_REQ, req_cb) = {
122 ASN1_EMBED(X509_REQ, req_info, X509_REQ_INFO),
123 ASN1_EMBED(X509_REQ, sig_alg, X509_ALGOR),
124 ASN1_SIMPLE(X509_REQ, signature, ASN1_BIT_STRING)
125 } ASN1_SEQUENCE_END_ref(X509_REQ, X509_REQ)
127 IMPLEMENT_ASN1_FUNCTIONS(X509_REQ)
[all...]
H A Dx509_req.c22 X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md) in X509_to_X509_REQ()
24 X509_REQ *ret; in X509_to_X509_REQ()
63 EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) in X509_REQ_get_pubkey()
70 EVP_PKEY *X509_REQ_get0_pubkey(X509_REQ *req) in X509_REQ_get0_pubkey()
77 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req) in X509_REQ_get_X509_PUBKEY()
82 int X509_REQ_check_private_key(X509_REQ *x, EVP_PKEY *k) in X509_REQ_check_private_key()
139 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) in STACK_OF()
170 int X509_REQ_add_extensions_nid(X509_REQ *req, in X509_REQ_add_extensions_nid()
188 int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts) in X509_REQ_add_extensions()
195 int X509_REQ_get_attr_count(const X509_REQ *re
[all...]
/third_party/openssl/crypto/x509/
H A Dx_req.c51 X509_REQ *ret = (X509_REQ *)*pval; in req_cb()
67 X509_REQ *old = exarg; in req_cb()
121 ASN1_SEQUENCE_ref(X509_REQ, req_cb) = {
122 ASN1_EMBED(X509_REQ, req_info, X509_REQ_INFO),
123 ASN1_EMBED(X509_REQ, sig_alg, X509_ALGOR),
124 ASN1_SIMPLE(X509_REQ, signature, ASN1_BIT_STRING)
125 } ASN1_SEQUENCE_END_ref(X509_REQ, X509_REQ)
127 IMPLEMENT_ASN1_FUNCTIONS(X509_REQ)
[all...]
H A Dx509_req.c22 X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md) in X509_to_X509_REQ()
24 X509_REQ *ret; in X509_to_X509_REQ()
63 EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) in X509_REQ_get_pubkey()
70 EVP_PKEY *X509_REQ_get0_pubkey(X509_REQ *req) in X509_REQ_get0_pubkey()
77 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req) in X509_REQ_get_X509_PUBKEY()
82 int X509_REQ_check_private_key(X509_REQ *x, EVP_PKEY *k) in X509_REQ_check_private_key()
139 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) in STACK_OF()
170 int X509_REQ_add_extensions_nid(X509_REQ *req, in X509_REQ_add_extensions_nid()
188 int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts) in X509_REQ_add_extensions()
195 int X509_REQ_get_attr_count(const X509_REQ *re
[all...]
/third_party/openssl/ohos_lite/include/openssl/
H A Dx509.h93 typedef struct X509_req_st X509_REQ; typedef
352 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
372 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
373 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
387 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
397 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
398 int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req);
435 X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **re
[all...]
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dx509.rs104 pub enum X509_REQ {} enum
107 pub struct X509_REQ { structure names
155 pub fn X509_REQ_sign(x: *mut X509_REQ, pkey: *mut EVP_PKEY, md: *const EVP_MD) -> c_int; in X509_REQ_sign()
161 pub fn i2d_X509_REQ_bio(b: *mut BIO, x: #[const_ptr_if(ossl300)] X509_REQ) -> c_int; in i2d_X509_REQ_bio()
205 pub fn X509_to_X509_REQ(x: *mut X509, pkey: *mut EVP_PKEY, md: *const EVP_MD) -> *mut X509_REQ; in X509_to_X509_REQ()
249 pub fn X509_REQ_new() -> *mut X509_REQ; in X509_REQ_new()
250 pub fn X509_REQ_free(x: *mut X509_REQ); in X509_REQ_free()
252 a: *mut *mut X509_REQ, in d2i_X509_REQ()
255 ) -> *mut X509_REQ; in d2i_X509_REQ()
259 pub fn i2d_X509_REQ(x: #[const_ptr_if(ossl300)] X509_REQ, bu
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]
/third_party/node/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/
H A Dx509.h280 typedef struct X509_req_st X509_REQ; typedef
514 int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
516 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
533 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
534 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
547 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
567 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
568 int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
613 X509_REQ *d2i_X509_REQ_bi
[all...]

Completed in 41 milliseconds

12345678910