Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger committed Oct 3, 2023
1 parent 8070343 commit a3f7c6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dtls/src/crypto/crypto_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ fn test_generate_key_signature() -> Result<()> {
NamedCurve::X25519,
&CryptoPrivateKey {
kind: CryptoPrivateKeyKind::Rsa256(
ring::rsa::KeyPair::from_der(&pem.contents).map_err(|e| Error::Other(e.to_string()))?,
ring::rsa::KeyPair::from_der(&pem.contents)
.map_err(|e| Error::Other(e.to_string()))?,
),
serialized_der: pem.contents.clone(),
}, //hashAlgorithmSHA256,
Expand Down

0 comments on commit a3f7c6d

Please sign in to comment.