mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Remove an unused function in crypto.c
This commit is contained in:
parent
9e7691b05c
commit
c939c953ae
@ -326,17 +326,6 @@ _crypto_new_pk_env_rsa(RSA *rsa)
|
||||
return env;
|
||||
}
|
||||
|
||||
/** used by tortls.c: wrap the RSA from an evp_pkey in a crypto_pk_env_t.
|
||||
* returns NULL if this isn't an RSA key. */
|
||||
crypto_pk_env_t *
|
||||
_crypto_new_pk_env_evp_pkey(EVP_PKEY *pkey)
|
||||
{
|
||||
RSA *rsa;
|
||||
if (!(rsa = EVP_PKEY_get1_RSA(pkey)))
|
||||
return NULL;
|
||||
return _crypto_new_pk_env_rsa(rsa);
|
||||
}
|
||||
|
||||
/** Helper, used by tor-checkkey.c and tor-gencert.c. Return the RSA from a
|
||||
* crypto_pk_env_t. */
|
||||
RSA *
|
||||
|
@ -249,7 +249,6 @@ struct evp_pkey_st;
|
||||
struct dh_st;
|
||||
struct rsa_st *_crypto_pk_env_get_rsa(crypto_pk_env_t *env);
|
||||
crypto_pk_env_t *_crypto_new_pk_env_rsa(struct rsa_st *rsa);
|
||||
crypto_pk_env_t *_crypto_new_pk_env_evp_pkey(struct evp_pkey_st *pkey);
|
||||
struct evp_pkey_st *_crypto_pk_env_get_evp_pkey(crypto_pk_env_t *env,
|
||||
int private);
|
||||
struct dh_st *_crypto_dh_env_get_dh(crypto_dh_env_t *dh);
|
||||
|
Loading…
Reference in New Issue
Block a user