diff --git a/src/crypto/crypto_rsa.cc b/src/crypto/crypto_rsa.cc index 23b2b8c56dec8a..100f94460686bd 100644 --- a/src/crypto/crypto_rsa.cc +++ b/src/crypto/crypto_rsa.cc @@ -441,7 +441,7 @@ std::shared_ptr ImportJWKRsaKey( KeyType type = d_value->IsString() ? kKeyTypePrivate : kKeyTypePublic; - RsaPointer rsa(RSA_new()); + RSAPointer rsa(RSA_new()); ByteSource n = ByteSource::FromEncodedString(env, n_value.As()); ByteSource e = ByteSource::FromEncodedString(env, e_value.As()); diff --git a/src/crypto/crypto_util.h b/src/crypto/crypto_util.h index a98d17787887d5..c7aeaa7753c90a 100644 --- a/src/crypto/crypto_util.h +++ b/src/crypto/crypto_util.h @@ -75,7 +75,6 @@ using DHPointer = ncrypto::DHPointer; using ECDSASigPointer = ncrypto::ECDSASigPointer; using HMACCtxPointer = ncrypto::HMACCtxPointer; using CipherCtxPointer = ncrypto::CipherCtxPointer; -using RsaPointer = ncrypto::RSAPointer; using DsaPointer = ncrypto::DSAPointer; using DsaSigPointer = ncrypto::DSASigPointer;