Skip to content

Commit

Permalink
Github issue #326 (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
amirhosv authored Sep 12, 2023
1 parent 74d6ba5 commit 5de55c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/amazon/corretto/crypto/provider/EvpKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ protected <T extends AlgorithmParameterSpec> T nativeParams(final Class<T> param
return params.getParameterSpec(paramSpec);
} catch (final GeneralSecurityException | IOException ex) {
throw new RuntimeCryptoException(
"Unable to deserialize parameters: " + Base64.getEncoder().encodeToString(encoded), ex);
"Unable to deserialize parameters: " + Base64.getEncoder().encodeToString(encodedParams),
ex);
}
}

Expand Down

0 comments on commit 5de55c4

Please sign in to comment.