We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6454b43 commit 9537300Copy full SHA for 9537300
src/signer.rs
@@ -163,7 +163,7 @@ impl Signer for CngSigner {
163
let signature = self
164
.key
165
.sign(&hash, padding)
166
- .map_err(|e| Error::Other(OtherError(Arc::new(e))))?;
+ .map_err(|e| Error::Other(OtherError::new(Arc::new(e))))?;
167
168
if padding == SignaturePadding::None {
169
// For ECDSA keys Windows produces IEEE-P1363 signatures which must be converted to DER format
0 commit comments