HomeSort by relevance Sort by last modified time
    Searched refs:nid (Results 101 - 125 of 151) sorted by null

1 2 3 45 6 7

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
gml.py 322 nid=G.node[n].get('id',next(count))
323 node_id[n]=nid
324 yield 2*indent+"id %s"%nid
  /external/boringssl/src/crypto/evp/
p_ec_asn1.c 71 int nid; local
78 nid = EC_GROUP_get_curve_name(group);
79 if (nid == NID_undef) {
84 *ppval = (void*) OBJ_nid2obj(nid);
  /external/boringssl/src/include/openssl/
digest.h 91 /* EVP_get_digestbynid returns an |EVP_MD| for the given NID, or NULL if no
93 OPENSSL_EXPORT const EVP_MD *EVP_get_digestbynid(int nid);
173 /* EVP_MD_type returns a NID identifing |md|. (For example, |NID_sha256|.) */
226 /* EVP_MD_CTX_type returns a NID describing the digest function used by |ctx|.
x509v3.h 386 #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
ec_key.h 95 /* 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);
pem.h 470 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);
473 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
477 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
478 OPENSSL_EXPORT int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
cipher.h 111 /* EVP_get_cipherbynid returns the cipher corresponding to the given NID, or
113 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
240 /* EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
294 /* EVP_CIPHER_nid returns a NID identifing |cipher|. (For example,
493 /* type contains a NID identifing the cipher. (e.g. NID_aes_128_gcm.) */
494 int nid; member in struct:evp_cipher_st
evp.h 135 /* EVP_PKEY_type returns a canonicalised form of |NID|. For example,
137 OPENSSL_EXPORT int EVP_PKEY_type(int nid);
676 /* EVP_PKEY_asn1_find returns the ASN.1 method table for the given |nid|, which
677 * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
680 int nid);
    [all...]
ec.h 98 * curve specified by |nid|, or NULL on error.
105 OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
142 /* EC_GROUP_get_curve_name returns a NID that identifies |group|. */
  /external/openssh/
cipher-ctr.c 132 aes_ctr.nid = NID_undef;
ssh_api.c 435 _ssh_host_public_key(int type, int nid, struct ssh *ssh)
443 (type != KEY_ECDSA || k->key->ecdsa_nid == nid))
450 _ssh_host_private_key(int type, int nid, struct ssh *ssh)
458 (type != KEY_ECDSA || k->key->ecdsa_nid == nid))
cipher-3des1.c 146 ssh1_3des.nid = NID_undef;
cipher-aes.c 148 rijndal_cbc.nid = NID_undef;
sshkey.c 84 int nid; member in struct:keytype
135 sshkey_ssh_name_from_type_nid(int type, int nid)
140 if (kt->type == type && (kt->nid == 0 || kt->nid == nid))
194 return kt->nid;
365 sshkey_curve_nid_to_bits(int nid)
367 switch (nid) {
399 sshkey_curve_nid_to_name(int nid)
401 switch (nid) {
1593 int nid; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 1160 int nid; local
1162 /* Map from IANA registry for IKE D-H groups to OpenSSL NID */
1165 nid = NID_X9_62_prime256v1;
1168 nid = NID_secp384r1;
1171 nid = NID_secp521r1;
1174 nid = NID_X9_62_prime192v1;
1177 nid = NID_secp224r1;
1181 nid = NID_brainpoolP224r1;
1186 nid = NID_brainpoolP256r1;
1191 nid = NID_brainpoolP384r1
    [all...]
  /external/boringssl/src/ssl/
t1_lib.c 340 int nid; member in struct:tls_curve
367 return tls_curves[i].nid;
373 int tls1_ec_nid2curve_id(uint16_t *out_curve_id, int nid) {
376 if (nid == tls_curves[i].nid) {
502 int nid; local
516 nid = EC_GROUP_get_curve_name(grp);
517 if (!tls1_ec_nid2curve_id(&id, nid)) {
2211 int nid; member in struct:__anon4831
    [all...]
s3_lib.c 406 int nid; local
408 nid = tls1_ec_curve_id2nid(clist[i]);
409 if (nid != NID_undef) {
410 cptr[i] = nid;
  /external/boringssl/src/crypto/cipher/
cipher.c 69 const EVP_CIPHER *EVP_get_cipherbynid(int nid) {
70 switch (nid) {
507 return ctx->cipher->nid;
584 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; }
  /external/f2fs-tools/include/
f2fs_fs.h 465 __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/libpcap/
grammar.y 258 %type <blk> expr id nid pid term rterm qid
334 id: nid
339 nid: ID { $$.b = gen_scode($1, $$.q = $<blk>0.q); } label
399 pid: nid
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 124 // SID/NID/PRL is loaded. Poll service state
465 // SIM is found on the device. If ERI roaming is OFF, and SID/NID matches
467 // and NID are CDMA only, not applicable to LTE.
623 * Check whether the specified SID and NID pair appears in the HOME SID/NID list
626 * @return true if provided sid/nid pair belongs to operator's home network.
628 private boolean isInHomeSidNid(int sid, int nid) {
629 // if SID/NID is not available, assume this is home network.
632 // length of SID/NID shold be same
638 // Use SID only if NID is a reserved value
    [all...]
  /external/boringssl/src/crypto/pkcs8/
pkcs8.c 703 int nid, ret = 0; local
713 nid = OBJ_cbs2nid(&content_type);
714 if (nid == NID_pkcs7_encrypted) {
771 } else if (nid == NID_pkcs7_data) {
782 } else if (nid == NID_pkcs8ShroudedKeyBag) {
823 } else if (nid == NID_certBag) {
    [all...]
  /external/boringssl/src/crypto/ec/
ec_key.c 127 EC_KEY *EC_KEY_new_by_curve_name(int nid) {
133 ret->group = EC_GROUP_new_by_curve_name(nid);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.c 241 int nid = strtoul(network, NULL, 10); local
245 nid);
  /external/f2fs-tools/mkfs/
f2fs_format.c 559 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;

Completed in 1538 milliseconds

1 2 3 45 6 7