Home
last modified time | relevance | path

Searched refs:rsa_key (Results 1 – 7 of 7) sorted by relevance

/third_party/ntfs-3g/ntfsprogs/
Dntfsdecrypt.c417 gcry_sexp_t rsa_key; in ntfs_rsa_private_key_import_from_gnutls() local
433 rsa_key = NULL; in ntfs_rsa_private_key_import_from_gnutls()
446 if (i == 6 && gcry_sexp_build(&rsa_key, NULL, in ntfs_rsa_private_key_import_from_gnutls()
451 rsa_key = NULL; in ntfs_rsa_private_key_import_from_gnutls()
456 return (ntfs_rsa_private_key)rsa_key; in ntfs_rsa_private_key_import_from_gnutls()
462 static void ntfs_rsa_private_key_release(ntfs_rsa_private_key rsa_key) in ntfs_rsa_private_key_release() argument
464 gcry_sexp_release((gcry_sexp_t)rsa_key); in ntfs_rsa_private_key_release()
480 ntfs_rsa_private_key rsa_key = NULL; in ntfs_pkcs12_extract_rsa_key() local
610 rsa_key = ntfs_rsa_private_key_import_from_gnutls(pkey); in ntfs_pkcs12_extract_rsa_key()
611 if (!rsa_key) in ntfs_pkcs12_extract_rsa_key()
[all …]
/third_party/pulseaudio/src/modules/raop/
Draop-crypto.c175 uint8_t rsa_key[512]; in pa_raop_secret_get_key() local
181 size = rsa_encrypt(s->key, AES_CHUNK_SIZE, rsa_key); in pa_raop_secret_get_key()
187 pa_raop_base64_encode(rsa_key, size, &base64_key); in pa_raop_secret_get_key()
/third_party/openssl/apps/
Dspeed.c614 RSA *rsa_key[RSA_NUM]; member
1053 RSA **rsa_key = tempargs->rsa_key; in RSA_sign_loop() local
1056 ret = RSA_sign(NID_md5_sha1, buf, 36, buf2, rsa_num, rsa_key[testnum]); in RSA_sign_loop()
1073 RSA **rsa_key = tempargs->rsa_key; in RSA_verify_loop() local
1077 RSA_verify(NID_md5_sha1, buf, 36, buf2, rsa_num, rsa_key[testnum]); in RSA_verify_loop()
1861 loopargs[i].rsa_key[k] = in speed_main()
1863 if (loopargs[i].rsa_key[k] == NULL) { in speed_main()
2705 loopargs[i].rsa_key[testnum] = RSA_new(); in speed_main()
2706 if (loopargs[i].rsa_key[testnum] == NULL) { in speed_main()
2711 if (!RSA_generate_multi_prime_key(loopargs[i].rsa_key[testnum], in speed_main()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dcrypto_libtomcrypt.c412 rsa_key rsa;
416 rsa_key rsa;
553 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type, in crypto_rsa_encrypt_pkcs1()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-jose/
Djws.c775 rsa_key[] = "-----BEGIN PRIVATE KEY-----\n" variable
856 if (lws_x509_jwk_privkey_pem(context, &jwk, (char *)rsa_key, in test_jwt_RS256()
857 LWS_ARRAY_SIZE(rsa_key), NULL)) { in test_jwt_RS256()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dcrypto_libtomcrypt.c412 rsa_key rsa;
416 rsa_key rsa;
553 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type, in crypto_rsa_encrypt_pkcs1()
/third_party/grpc/test/core/security/
Djson_token_test.cc283 static void check_jwt_signature(const char* b64_signature, RSA* rsa_key, in check_jwt_signature() argument
297 EVP_PKEY_set1_RSA(key, rsa_key); in check_jwt_signature()