Searched refs:crypto_rsa_key (Results 1 – 5 of 5) sorted by relevance
/external/wpa_supplicant_8/src/tls/ |
D | rsa.h | 12 struct crypto_rsa_key; 14 struct crypto_rsa_key * 16 struct crypto_rsa_key * 19 struct crypto_rsa_key * 21 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key); 23 struct crypto_rsa_key *key, int use_private); 24 void crypto_rsa_free(struct crypto_rsa_key *key);
|
D | rsa.c | 17 struct crypto_rsa_key { struct 61 struct crypto_rsa_key * 64 struct crypto_rsa_key *key; in crypto_rsa_import_public_key() 119 struct crypto_rsa_key * 123 struct crypto_rsa_key *key; in crypto_rsa_import_public_key_parts() 148 struct crypto_rsa_key * 151 struct crypto_rsa_key *key; in crypto_rsa_import_private_key() 249 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) in crypto_rsa_get_modulus_len() 266 struct crypto_rsa_key *key, int use_private) in crypto_rsa_exptmod() 362 void crypto_rsa_free(struct crypto_rsa_key *key) in crypto_rsa_free()
|
D | pkcs1.h | 15 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, 18 int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key, 21 int pkcs1_decrypt_public_key(struct crypto_rsa_key *key,
|
D | pkcs1.c | 81 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, in pkcs1_encrypt() 97 int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key, in pkcs1_v15_private_key_decrypt() 134 int pkcs1_decrypt_public_key(struct crypto_rsa_key *key, in pkcs1_decrypt_public_key()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_internal-rsa.c | 76 return pkcs1_encrypt(2, (struct crypto_rsa_key *) key, in crypto_public_key_encrypt_pkcs1_v15() 85 return pkcs1_v15_private_key_decrypt((struct crypto_rsa_key *) key, in crypto_private_key_decrypt_pkcs1_v15() 94 return pkcs1_encrypt(1, (struct crypto_rsa_key *) key, in crypto_private_key_sign_pkcs1() 101 crypto_rsa_free((struct crypto_rsa_key *) key); in crypto_public_key_free() 107 crypto_rsa_free((struct crypto_rsa_key *) key); in crypto_private_key_free() 115 return pkcs1_decrypt_public_key((struct crypto_rsa_key *) key, in crypto_public_key_decrypt_pkcs1()
|