Home
last modified time | relevance | path

Searched refs:X509_REQ (Results 1 – 20 of 20) sorted by relevance

/external/openssl/crypto/asn1/
Dx_req.c105 ASN1_SEQUENCE_ref(X509_REQ, 0, CRYPTO_LOCK_X509_REQ) = {
106 ASN1_SIMPLE(X509_REQ, req_info, X509_REQ_INFO),
107 ASN1_SIMPLE(X509_REQ, sig_alg, X509_ALGOR),
108 ASN1_SIMPLE(X509_REQ, signature, ASN1_BIT_STRING)
109 } ASN1_SEQUENCE_END_ref(X509_REQ, X509_REQ)
111 IMPLEMENT_ASN1_FUNCTIONS(X509_REQ)
112 IMPLEMENT_ASN1_DUP_FUNCTION(X509_REQ)
Dt_req.c74 int X509_REQ_print_fp(FILE *fp, X509_REQ *x) in X509_REQ_print_fp()
91 int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, unsigned long cflag) in X509_REQ_print_ex()
287 int X509_REQ_print(BIO *bp, X509_REQ *x) in X509_REQ_print()
/external/openssl/crypto/x509/
Dx509_req.c69 X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md) in X509_to_X509_REQ()
71 X509_REQ *ret; in X509_to_X509_REQ()
109 EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) in X509_REQ_get_pubkey()
116 int X509_REQ_check_private_key(X509_REQ *x, EVP_PKEY *k) in X509_REQ_check_private_key()
185 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) in STACK_OF()
218 int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts, in X509_REQ_add_extensions_nid()
259 int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts) in X509_REQ_add_extensions()
266 int X509_REQ_get_attr_count(const X509_REQ *req) in X509_REQ_get_attr_count()
271 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, in X509_REQ_get_attr_by_NID()
277 int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj, in X509_REQ_get_attr_by_OBJ()
[all …]
Dx509.h244 } X509_REQ; typedef
640 #define X509_REQ_dup(req) (X509_REQ *)ASN1_dup((int (*)())i2d_X509_REQ, \
642 #define d2i_X509_REQ_fp(fp,req) (X509_REQ *)ASN1_d2i_fp((char *(*)())\
647 #define d2i_X509_REQ_bio(bp,req) (X509_REQ *)ASN1_d2i_bio((char *(*)())\
754 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
768 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
778 int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type,
789 X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req);
790 int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req);
828 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
[all …]
Dx_all.c80 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r) in X509_REQ_verify()
104 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md) in X509_REQ_sign()
190 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req) in d2i_X509_REQ_fp()
192 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(X509_REQ), fp, req); in d2i_X509_REQ_fp()
195 int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req) in i2d_X509_REQ_fp()
197 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(X509_REQ), fp, req); in i2d_X509_REQ_fp()
201 X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **req) in d2i_X509_REQ_bio()
203 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509_REQ), bp, req); in d2i_X509_REQ_bio()
206 int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req) in i2d_X509_REQ_bio()
208 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509_REQ), bp, req); in i2d_X509_REQ_bio()
[all …]
Dx509rset.c66 int X509_REQ_set_version(X509_REQ *x, long version) in X509_REQ_set_version()
72 int X509_REQ_set_subject_name(X509_REQ *x, X509_NAME *name) in X509_REQ_set_subject_name()
78 int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey) in X509_REQ_set_pubkey()
Dx509_r2x.c68 X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey) in X509_REQ_to_X509()
/external/openssl/include/openssl/
Dx509.h244 } X509_REQ; typedef
640 #define X509_REQ_dup(req) (X509_REQ *)ASN1_dup((int (*)())i2d_X509_REQ, \
642 #define d2i_X509_REQ_fp(fp,req) (X509_REQ *)ASN1_d2i_fp((char *(*)())\
647 #define d2i_X509_REQ_bio(bp,req) (X509_REQ *)ASN1_d2i_bio((char *(*)())\
754 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
768 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
778 int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type,
789 X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req);
790 int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req);
828 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
[all …]
Dx509v3.h127 X509_REQ *subject_req;
536 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
542 int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
558 X509_REQ *req, X509_CRL *crl, int flags);
618 STACK *X509_REQ_get1_email(X509_REQ *x);
Dpem.h469 #define PEM_read_X509_REQ(fp,x,cb,u) (X509_REQ *)PEM_ASN1_read( \
531 #define PEM_read_bio_X509_REQ(bp,x,cb,u) (X509_REQ *)PEM_ASN1_read_bio( \
641 DECLARE_PEM_rw(X509_REQ, X509_REQ)
642 DECLARE_PEM_write(X509_REQ_NEW, X509_REQ)
/external/openssl/crypto/pem/
Dpem_all.c141 IMPLEMENT_PEM_rw(X509_REQ, X509_REQ, PEM_STRING_X509_REQ, X509_REQ) in IMPLEMENT_PEM_rw() argument
143 IMPLEMENT_PEM_write(X509_REQ_NEW, X509_REQ, PEM_STRING_X509_REQ_OLD, X509_REQ) in IMPLEMENT_PEM_rw()
Dpem.h469 #define PEM_read_X509_REQ(fp,x,cb,u) (X509_REQ *)PEM_ASN1_read( \
531 #define PEM_read_bio_X509_REQ(bp,x,cb,u) (X509_REQ *)PEM_ASN1_read_bio( \
641 DECLARE_PEM_rw(X509_REQ, X509_REQ)
642 DECLARE_PEM_write(X509_REQ_NEW, X509_REQ)
/external/openssl/apps/
Dreq.c128 static int make_REQ(X509_REQ *req,EVP_PKEY *pkey,char *dn,int mutlirdn,
130 static int build_subject(X509_REQ *req, char *subj, unsigned long chtype,
132 static int prompt_info(X509_REQ *req,
136 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *sk,
139 static int add_attribute_object(X509_REQ *req, char *text, const char *def,
174 X509_REQ *req=NULL; in MAIN()
1200 static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *subj, int multirdn, in make_REQ()
1268 static int build_subject(X509_REQ *req, char *subject, unsigned long chtype, int multirdn) in build_subject()
1285 static int prompt_info(X509_REQ *req, in prompt_info()
1458 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
[all …]
Dapps.h271 int copy_extensions(X509 *x, X509_REQ *req, int copy_type);
Dca.c224 int verbose, X509_REQ *req, char *ext_sect, CONF *conf,
1541 X509_REQ *req=NULL; in certify()
1610 X509_REQ *rreq=NULL; in certify_cert()
1660 int verbose, X509_REQ *req, char *ext_sect, CONF *lconf, in do_body()
2234 X509_REQ *req=NULL; in certify_spkac()
Dx509.c166 X509_REQ *req=NULL; in MAIN()
190 X509_REQ *rq=NULL; in MAIN()
Dapps.c1197 int copy_extensions(X509 *x, X509_REQ *req, int copy_type) in copy_extensions()
/external/openssl/crypto/x509v3/
Dx509v3.h127 X509_REQ *subject_req;
536 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
542 int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
558 X509_REQ *req, X509_CRL *crl, int flags);
618 STACK *X509_REQ_get1_email(X509_REQ *x);
Dv3_conf.c368 X509_REQ *req) in X509V3_EXT_REQ_add_nconf()
445 void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req, in X509V3_set_ctx()
519 X509_REQ *req) in X509V3_EXT_REQ_add_conf()
Dv3_utl.c500 STACK *X509_REQ_get1_email(X509_REQ *x) in X509_REQ_get1_email()