/external/openssl/crypto/engine/ |
tb_cipher.c | 78 const int *nids; local 79 int num_nids = e->ciphers(e, NULL, &nids, 0); 82 engine_unregister_all_ciphers, e, nids, 100 const int *nids; local 101 int num_nids = e->ciphers(e, NULL, &nids, 0); 104 engine_unregister_all_ciphers, e, nids,
|
tb_digest.c | 78 const int *nids; local 79 int num_nids = e->digests(e, NULL, &nids, 0); 82 engine_unregister_all_digests, e, nids, 100 const int *nids; local 101 int num_nids = e->digests(e, NULL, &nids, 0); 104 engine_unregister_all_digests, e, nids,
|
eng_openssl.c | 114 const int **nids, int nid); 118 const int **nids, int nid); 278 const int **nids, int nid) 282 /* We are returning a list of supported nids */ 283 *nids = test_cipher_nids; 346 const int **nids, int nid) 350 /* We are returning a list of supported nids */ 351 *nids = test_digest_nids;
|
eng_cryptodev.c | 87 static int cryptodev_usable_ciphers(const int **nids); 88 static int cryptodev_usable_digests(const int **nids); 95 const int **nids, int nid); 97 const int **nids, int nid); 243 /* convert libcrypto nids to cryptodev */ 264 static int nids[CRYPTO_ALGORITHM_MAX]; local 283 nids[count++] = ciphers[i].nid; 288 *cnids = nids; 304 static int nids[CRYPTO_ALGORITHM_MAX]; 320 nids[count++] = digests[i].nid [all...] |
eng_table.c | 118 ENGINE *e, const int *nids, int num_nids, int setdefault) 132 tmplate.nid = *nids; 139 fnd->nid = *nids; 169 nids++;
|
eng_int.h | 121 ENGINE *e, const int *nids, int num_nids, int setdefault);
|
eng_padlock.c | 145 static int padlock_ciphers(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); 720 padlock_ciphers (ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid) 722 /* No specific cipher => return a list of supported nids ... */ 724 *nids = padlock_cipher_nids;
|
engine.h | 288 * int foo(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); 289 * int foo(ENGINE *e, const EVP_MD **digest, const int **nids, int nid); 294 * foo(e, NULL, &p_nids, 0); (returns number of 'nids' or -1 for error) [all...] |
README | 135 These nids provide the uniquenness of an algorithm/mode - and each nid will hash
|
/external/openssl/apps/ |
engine.c | 454 const int *nids; local 477 n = fn_c(e, NULL, &nids, 0); 480 OBJ_nid2sn(nids[k]), 487 n = fn_d(e, NULL, &nids, 0); 490 OBJ_nid2sn(nids[k]),
|
/external/openssl/crypto/x509/ |
x509_req.c | 180 void X509_REQ_set_extension_nids(int *nids) 182 ext_nids = nids;
|
x509.h | [all...] |
/external/esd/include/ |
audiofile.h | 543 void afInitLoopIDs (AFfilesetup, int instid, int ids[], int nids); 565 void afInitMarkIDs (AFfilesetup, int trackid, int *ids, int nids); 577 void afInitInstIDs (AFfilesetup, int *ids, int nids); 587 void afInitMiscIDs (AFfilesetup, int *ids, int nids);
|
/external/openssl/crypto/rsa/ |
rsa_x931.c | 156 /* Translate between X931 hash ids and NIDs */
|
/external/openssl/crypto/evp/ |
evp_lib.c | 122 /* Convert the various cipher NIDs and dummies to a proper OID NID */
|
/external/openssl/include/openssl/ |
engine.h | 288 * int foo(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); 289 * int foo(ENGINE *e, const EVP_MD **digest, const int **nids, int nid); 294 * foo(e, NULL, &p_nids, 0); (returns number of 'nids' or -1 for error) [all...] |
x509.h | [all...] |
/external/openssl/crypto/x509v3/ |
v3_purp.c | 275 /* This table is a list of the NIDs of supported extensions:
|