HomeSort by relevance Sort by last modified time
    Searched refs:X509_EXTENSION (Results 1 - 25 of 41) sorted by null

1 2

  /external/boringssl/src/crypto/x509/
x_exten.c 63 ASN1_SEQUENCE(X509_EXTENSION) = {
64 ASN1_SIMPLE(X509_EXTENSION, object, ASN1_OBJECT),
65 ASN1_OPT(X509_EXTENSION, critical, ASN1_BOOLEAN),
66 ASN1_SIMPLE(X509_EXTENSION, value, ASN1_OCTET_STRING)
67 } ASN1_SEQUENCE_END(X509_EXTENSION)
70 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, Extension, X509_EXTENSION)
73 IMPLEMENT_ASN1_FUNCTIONS(X509_EXTENSION)
75 IMPLEMENT_ASN1_DUP_FUNCTION(X509_EXTENSION)
x509_v3.c 65 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x)
72 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid,
83 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk,
87 X509_EXTENSION *ex;
103 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
107 X509_EXTENSION *ex;
123 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc)
131 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc
    [all...]
x509_ext.c 85 X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc)
90 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc)
106 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc)
132 X509_EXTENSION *X509_get_ext(X509 *x, int loc)
137 X509_EXTENSION *X509_delete_ext(X509 *x, int loc)
142 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc)
180 X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc)
185 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc)
190 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc)
206 IMPLEMENT_ASN1_SET_OF(X509_EXTENSION)
    [all...]
x509_req.c 183 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req)
207 return (STACK_OF(X509_EXTENSION) *)
217 int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts,
254 int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts)
x_crl.c 94 ASN1_SEQUENCE_OF_OPT(X509_REVOKED,extensions, X509_EXTENSION)
143 ASN1_EXP_SEQUENCE_OF_OPT(X509_CRL_INFO, extensions, X509_EXTENSION, 0)
164 STACK_OF(X509_EXTENSION) *exts;
166 X509_EXTENSION *ext;
226 STACK_OF(X509_EXTENSION) *exts;
227 X509_EXTENSION *ext;
t_req.c 204 STACK_OF(X509_EXTENSION) *exts = X509_REQ_get_extensions(x);
210 X509_EXTENSION *ex = sk_X509_EXTENSION_value(exts, i);
x509_set.c 151 STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x)
x_x509.c 85 ASN1_EXP_SEQUENCE_OF_OPT(X509_CINF, extensions, X509_EXTENSION, 3)
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
ext.h 66 X509_EXTENSION *ext_new_hash(int nid, int crit, unsigned char *buf, size_t len);
67 X509_EXTENSION *ext_new_nvcounter(int nid, int crit, int value);
68 X509_EXTENSION *ext_new_key(int nid, int crit, EVP_PKEY *k);
cert.h 67 int cert_new(cert_t *cert, int days, int ca, STACK_OF(X509_EXTENSION) * sk);
  /external/boringssl/src/decrepit/x509/
x509_decrepit.c 19 X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf,
34 X509_EXTENSION *ret = X509V3_EXT_nconf_nid(nconf, ctx, ext_nid, value);
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
ext.c 107 X509_EXTENSION *ext_new(int nid, int crit, unsigned char *data, int len)
109 X509_EXTENSION *ex;
138 X509_EXTENSION *ext_new_hash(int nid, int crit, unsigned char *buf, size_t len)
140 X509_EXTENSION *ex = NULL;
173 X509_EXTENSION *ext_new_nvcounter(int nid, int crit, int value)
175 X509_EXTENSION *ex = NULL;
211 X509_EXTENSION *ext_new_key(int nid, int crit, EVP_PKEY *k)
213 X509_EXTENSION *ex = NULL;
cert.c 78 X509_EXTENSION *ex;
99 int cert_new(cert_t *cert, int days, int ca, STACK_OF(X509_EXTENSION) * sk)
105 X509_EXTENSION *ex = NULL;
main.c 271 STACK_OF(X509_EXTENSION) * sk = NULL;
272 X509_EXTENSION *hash_ext = NULL;
273 X509_EXTENSION *nvctr_ext = NULL;
274 X509_EXTENSION *trusted_key_ext = NULL;
275 X509_EXTENSION *non_trusted_key_ext = NULL;
  /external/boringssl/src/crypto/x509v3/
v3_conf.c 75 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
77 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value,
80 static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method,
87 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
92 X509_EXTENSION *ret;
106 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
120 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
124 X509_EXTENSION *ext;
179 static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method,
185 X509_EXTENSION *ext
    [all...]
v3_prn.c 69 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext,
105 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
159 STACK_OF(X509_EXTENSION) *exts,
175 X509_EXTENSION *ex;
194 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext,
219 int X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent)
v3_lib.c 124 const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext)
205 void *X509V3_EXT_d2i(X509_EXTENSION *ext)
232 void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
237 X509_EXTENSION *ex, *found_ex = NULL;
288 int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value,
293 X509_EXTENSION *ext, *extmp;
v3_akey.c 130 X509_EXTENSION *ext;
v3_purp.c 336 int X509_supported_extension(X509_EXTENSION *ex)
415 X509_EXTENSION *ex;
784 X509_EXTENSION *ext = X509_get_ext((X509 *)x, i_ext);
  /external/boringssl/src/include/openssl/
x509.h 168 } /* X509_EXTENSION */;
170 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
172 DEFINE_STACK_OF(X509_EXTENSION)
173 DECLARE_ASN1_SET_OF(X509_EXTENSION)
220 STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */
392 STACK_OF(X509_EXTENSION) /* optional */ *extensions;
411 STACK_OF(X509_EXTENSION) /* [0] */ *extensions;
676 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex);
735 DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
    [all...]
x509v3.h 614 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, int ext_nid, char *value);
615 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
616 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
617 OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
655 OPENSSL_EXPORT const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext);
659 OPENSSL_EXPORT void *X509V3_EXT_d2i(X509_EXTENSION *ext);
660 OPENSSL_EXPORT void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx);
664 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc);
665 OPENSSL_EXPORT int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags);
673 OPENSSL_EXPORT int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent)
    [all...]
  /system/keymaster/
openssl_utils.h 66 DEFINE_OPENSSL_OBJECT_POINTER(X509_EXTENSION)
  /external/wpa_supplicant_8/hs20/client/
est.c 245 STACK_OF(X509_EXTENSION) *exts)
269 STACK_OF(X509_EXTENSION) *exts)
299 STACK_OF(X509_EXTENSION) *exts)
331 STACK_OF(X509_EXTENSION) *exts)
383 STACK_OF(X509_EXTENSION) *exts = NULL;
384 X509_EXTENSION *ex;
  /external/wpa_supplicant_8/src/crypto/
tls_openssl_ocsp.c 136 STACK_OF(X509_EXTENSION) *singleExtensions;
152 STACK_OF(X509_EXTENSION) *responseExtensions;
198 X509_EXTENSION, 1)
207 X509_EXTENSION, 1)
332 static char * extensions_str(const char *title, STACK_OF(X509_EXTENSION) *ext)
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptTs.c 117 STACK_OF(X509_EXTENSION) *Extensions;
134 ASN1_IMP_SEQUENCE_OF_OPT (TS_TST_INFO, Extensions, X509_EXTENSION, 1)

Completed in 891 milliseconds

1 2