Remove no longer needed reference to OpenSSL in signing.

This commit is contained in:
Ximon Eighteen
2024-11-04 10:57:36 +01:00
parent deac32ce24
commit e745ef670c
+1 -3
View File
@@ -131,9 +131,7 @@ impl SignZone {
))
})?;
// Use OpenSSL as the Ring backend doesn't support key sizes and
// algorithms that we require.
let key_pair = domain::sign::openssl::KeyPair::from_bytes(
let key_pair = domain::sign::common::KeyPair::from_bytes(
&secret_key,
public_key_info.raw_public_key(),
)