/external/chromium_org/third_party/boringssl/src/crypto/rsa/ |
rsa.c | 348 int *is_alloced, int hash_nid, const uint8_t *msg, 356 if (hash_nid == NID_md5_sha1) { 371 if (sig_prefix->nid == hash_nid) { 405 int RSA_sign(int hash_nid, const uint8_t *in, unsigned in_len, uint8_t *out, 415 return rsa->meth->sign(hash_nid, in, in_len, out, out_len, rsa); 419 hash_nid, in, in_len)) { 442 int RSA_verify(int hash_nid, const uint8_t *msg, size_t msg_len, 452 return rsa->meth->verify(hash_nid, msg, msg_len, sig, sig_len, rsa); 460 if (hash_nid == NID_md5_sha1 && msg_len != SSL_SIG_LENGTH) { 477 hash_nid, msg, msg_len)) [all...] |
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
rsa.h | 184 * The |hash_nid| argument identifies the hash function used to calculate |in| 189 OPENSSL_EXPORT int RSA_sign(int hash_nid, const uint8_t *in, 208 * The |hash_nid| argument identifies the hash function used to calculate |in| 216 OPENSSL_EXPORT int RSA_verify(int hash_nid, const uint8_t *msg, size_t msg_len,
|
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/ |
pkcs8.c | 945 int hash_nid; local 970 hash_nid = OBJ_cbs2nid(&hash_oid); 971 if (hash_nid == NID_undef || 972 (md = EVP_get_digestbynid(hash_nid)) == NULL) { [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/obj/ |
obj.c | 557 static uint32_t hash_nid(const ASN1_OBJECT *obj) { function 604 global_added_by_nid = lh_ASN1_OBJECT_new(hash_nid, cmp_nid);
|
/external/chromium_org/third_party/boringssl/src/ssl/ |
t1_lib.c | 2550 int sign_nid = 0, hash_nid = 0; local [all...] |
ssl_locl.h | 548 int hash_nid; member in struct:tls_sigalgs_st [all...] |