Searched refs:nid (Results 51 - 75 of 95) sorted by relevance

1234

/external/boringssl/src/include/openssl/
H A Dcipher.h109 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
503 int nid; member in struct:evp_cipher_st
H A Dx509v3.h386 #define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \
394 #define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \
644 OPENSSL_EXPORT const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid);
648 OPENSSL_EXPORT void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx); variable
652 OPENSSL_EXPORT int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags); variable
H A Dec_key.h95 /* EC_KEY_new_by_curve_name returns a fresh EC_KEY for group specified by |nid|
97 OPENSSL_EXPORT EC_KEY *EC_KEY_new_by_curve_name(int nid);
H A Dpem.h466 OPENSSL_EXPORT int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
469 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
473 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
474 OPENSSL_EXPORT int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
H A Devp.h138 OPENSSL_EXPORT int EVP_PKEY_type(int nid);
664 /* EVP_PKEY_asn1_find returns the ASN.1 method table for the given |nid|, which
665 * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
668 int nid);
H A Dec.h98 * curve specified by |nid|, or NULL on error.
105 OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
H A Dasn1.h199 int nid; member in struct:asn1_object_st
257 int nid; member in struct:asn1_string_table_st
859 OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
999 OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
1000 OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
/external/boringssl/include/openssl/
H A Dx509v3.h386 #define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \
394 #define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \
644 OPENSSL_EXPORT const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid);
648 OPENSSL_EXPORT void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx); variable
652 OPENSSL_EXPORT int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags); variable
H A Dec_key.h95 /* EC_KEY_new_by_curve_name returns a fresh EC_KEY for group specified by |nid|
97 OPENSSL_EXPORT EC_KEY *EC_KEY_new_by_curve_name(int nid);
H A Dpem.h466 OPENSSL_EXPORT int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
469 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
473 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
474 OPENSSL_EXPORT int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
H A Devp.h138 OPENSSL_EXPORT int EVP_PKEY_type(int nid);
664 /* EVP_PKEY_asn1_find returns the ASN.1 method table for the given |nid|, which
665 * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
668 int nid);
H A Dec.h98 * curve specified by |nid|, or NULL on error.
105 OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
H A Dasn1.h199 int nid; member in struct:asn1_object_st
257 int nid; member in struct:asn1_string_table_st
859 OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
999 OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
1000 OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
/external/webrtc/webrtc/base/
H A Dopensslidentity.cc248 int nid = OBJ_obj2nid(x509_->sig_alg->algorithm); local
249 switch (nid) {
282 LOG(LS_ERROR) << "Unknown signature algorithm NID: " << nid;
/external/boringssl/src/crypto/cipher/
H A Dcipher.c69 const EVP_CIPHER *EVP_get_cipherbynid(int nid) { argument
70 switch (nid) {
510 return ctx->cipher->nid;
585 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; }
/external/f2fs-tools/include/
H A Df2fs_fs.h465 __le32 i_xattr_nid; /* nid to save xattr */
485 __le32 nid[NIDS_PER_BLOCK]; /* array of data block address */ member in struct:indirect_node
499 __le32 nid; /* node id */ member in struct:node_footer
579 * - If data page, nid represents dnode's nid
580 * - If node page, nid represents the node page's nid.
593 __le32 nid; /* parent node id */ member in struct:f2fs_summary
632 __le32 nid; member in struct:nat_journal_entry
/external/boringssl/src/crypto/pkcs8/
H A Dpkcs8.c739 int nid, ret = 0; local
748 nid = OBJ_cbs2nid(&content_type);
749 if (nid == NID_pkcs7_encrypted) {
804 } else if (nid == NID_pkcs7_data) {
814 } else if (nid == NID_pkcs8ShroudedKeyBag) {
857 } else if (nid == NID_certBag) {
/external/boringssl/src/crypto/ec/
H A Dec.c267 if (OPENSSL_built_in_curves[num_built_in_curves].nid == NID_undef) {
497 EC_GROUP *EC_GROUP_new_by_curve_name(int nid) { argument
502 for (i = 0; OPENSSL_built_in_curves[i].nid != NID_undef; i++) {
504 if (curve->nid == nid) {
515 ret->curve_name = nid;
H A Dec_key.c121 EC_KEY *EC_KEY_new_by_curve_name(int nid) { argument
127 ret->group = EC_GROUP_new_by_curve_name(nid);
H A Dinternal.h305 int nid; member in struct:built_in_curve
310 /* OPENSSL_built_in_curves is terminated with an entry where |nid| is
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old.c241 int nid = strtoul(network, NULL, 10); local
245 nid);
H A Ddbus_new.c2474 * @nid: network id
2479 int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid) argument
2487 ssid = wpa_config_get_network(wpa_s->conf, nid);
2491 return wpas_dbus_unregister_persistent_group(wpa_s, nid);
2503 wpa_s->dbus_new_path, nid);
2510 wpas_dbus_signal_network_removed(wpa_s, nid);
4309 * @nid: network id
4320 int nid)
4338 wpa_s->dbus_new_path, nid);
4345 wpas_dbus_signal_persistent_group_removed(wpa_s, nid);
4319 wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s, int nid) argument
[all...]
/external/f2fs-tools/mkfs/
H A Df2fs_format.c559 sum->nat_j.entries[0].nid = sb.root_ino;
594 sum_entry->nid = sb.root_ino;
611 sum->entries[0].nid = sb.root_ino;
736 raw_node->footer.nid = sb.root_ino;
/external/libpcap/
H A Dgrammar.y272 %type <blk> expr id nid pid term rterm qid
348 id: nid
353 nid: ID { $$.b = gen_scode($1, $$.q = $<blk>0.q); } label
413 pid: nid
/external/testng/ant/3rdparty/
H A DDTDDoc.jarMETA-INF/ META-INF/MANIFEST.MF DTDDoc/ DTDDoc/AntLogger.class AntLogger.java package DTDDoc ...

Completed in 403 milliseconds

1234