HomeSort by relevance Sort by last modified time
    Searched refs:nid (Results 126 - 150 of 200) sorted by null

1 2 3 4 56 7 8

  /external/f2fs-tools/fsck/
segment.c 55 get_node_info(sbi, dn->nid, &ni);
56 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_test.cc 28 #include <openssl/nid.h>
285 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(GetParam().nid));
319 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(GetParam().nid));
325 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(GetParam().nid));
356 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(GetParam().nid));
385 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(GetParam().nid));
418 return OBJ_nid2sn(params.param.nid);
ec_key.c 122 EC_KEY *EC_KEY_new_by_curve_name(int nid) {
128 ret->group = EC_GROUP_new_by_curve_name(nid);
internal.h 120 int curve_name; /* optional NID for named curve */
253 int nid; member in struct:built_in_curve
274 * standard curves. The array is terminated with an entry where |nid| is
  /external/webrtc/webrtc/base/
opensslidentity.cc 248 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/ecdh/
ecdh_test.cc 26 #include <openssl/nid.h>
  /external/boringssl/src/crypto/evp/
p_ec.c 69 #include <openssl/nid.h>
  /external/boringssl/src/include/openssl/
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 362 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);
365 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
369 OPENSSL_EXPORT int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u);
370 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 108 /* EVP_get_cipherbynid returns the cipher corresponding to the given NID, or
110 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
237 /* EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
292 /* EVP_CIPHER_nid returns a NID identifying |cipher|. (For example,
504 /* type contains a NID identifing the cipher. (e.g. NID_aes_128_gcm.) */
505 int nid; member in struct:evp_cipher_st
asn1.h 170 int nid; member in struct:asn1_object_st
229 int nid; member in struct:asn1_string_table_st
740 OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
    [all...]
evp.h 72 #include <openssl/nid.h>
130 /* EVP_PKEY_type returns |nid| if |nid| is a known key type and |NID_undef|
132 OPENSSL_EXPORT int EVP_PKEY_type(int nid);
    [all...]
  /external/boringssl/src/ssl/
d1_lib.cc 65 #include <openssl/nid.h>
  /external/openssh/
cipher-3des1.c 148 ssh1_3des.nid = NID_undef;
cipher-aes.c 148 rijndal_cbc.nid = NID_undef;
ssh_api.c 439 _ssh_host_public_key(int type, int nid, struct ssh *ssh)
447 (type != KEY_ECDSA || k->key->ecdsa_nid == nid))
454 _ssh_host_private_key(int type, int nid, struct ssh *ssh)
462 (type != KEY_ECDSA || k->key->ecdsa_nid == nid))
sshkey.c 83 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;
351 sshkey_curve_nid_to_bits(int nid)
353 switch (nid) {
385 sshkey_curve_nid_to_name(int nid)
387 switch (nid) {
1591 int nid; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 1371 int nid; local
1373 /* Map from IANA registry for IKE D-H groups to OpenSSL NID */
1376 nid = NID_X9_62_prime256v1;
1379 nid = NID_secp384r1;
1382 nid = NID_secp521r1;
1385 nid = NID_X9_62_prime192v1;
1388 nid = NID_secp224r1;
1392 nid = NID_brainpoolP224r1;
1397 nid = NID_brainpoolP256r1;
1402 nid = NID_brainpoolP384r1
    [all...]
  /external/boringssl/src/crypto/fipsmodule/cipher/
cipher.c 64 #include <openssl/nid.h>
494 return ctx->cipher->nid;
569 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; }
  /external/python/cpython2/Modules/
_ssl.c 1066 _get_aia_uri(X509 *certificate, int nid) {
1087 if ((OBJ_obj2nid(ad->method) != nid) ||
3088 int nid; local
3579 int nid; local
3646 int nid; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.c 241 int nid = strtoul(network, NULL, 10); local
245 nid);
  /external/boringssl/src/crypto/digest_extra/
digest_test.cc 29 #include <openssl/nid.h>
  /external/boringssl/src/crypto/fipsmodule/digest/
digests.c 64 #include <openssl/nid.h>
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa.c 69 #include <openssl/nid.h>
311 /* nid identifies the hash function. */
312 int nid; member in struct:pkcs1_sig_prefix
389 for (i = 0; kPKCS1SigPrefixes[i].nid != NID_undef; i++) {
391 if (sig_prefix->nid != hash_nid) {
  /external/boringssl/src/fipstools/
cavp_test_util.cc 20 #include <openssl/nid.h>

Completed in 377 milliseconds

1 2 3 4 56 7 8