Searched defs:public_rsa (Results 1 - 1 of 1) sorted by relevance

/system/security/keystore-engine/
H A Dandroid_engine.cpp302 * part is taken from |public_rsa| and the private operations are forwarded to
304 static EVP_PKEY *wrap_rsa(const char *key_id, const RSA *public_rsa) { argument
321 rsa->n = BN_dup(public_rsa->n);
322 rsa->e = BN_dup(public_rsa->e);
338 * part is taken from |public_rsa| and the private operations are forwarded to
408 Unique_RSA public_rsa(EVP_PKEY_get1_RSA(pkey.get()));
409 result = wrap_rsa(key_id, public_rsa.get());

Completed in 50 milliseconds