diff options
Diffstat (limited to 'crypto/src/cms')
-rw-r--r-- | crypto/src/cms/CMSSignedHelper.cs | 4 | ||||
-rw-r--r-- | crypto/src/cms/SignerInformation.cs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/crypto/src/cms/CMSSignedHelper.cs b/crypto/src/cms/CMSSignedHelper.cs index 37fefe140..8f2a92147 100644 --- a/crypto/src/cms/CMSSignedHelper.cs +++ b/crypto/src/cms/CMSSignedHelper.cs @@ -187,7 +187,7 @@ namespace Org.BouncyCastle.Cms { return DigestUtilities.GetDigest(algorithm); } - catch (SecurityUtilityException e) + catch (SecurityUtilityException) { // This is probably superfluous on C#, since no provider infrastructure, // assuming DigestUtilities already knows all the aliases @@ -196,7 +196,7 @@ namespace Org.BouncyCastle.Cms try { return DigestUtilities.GetDigest(alias); } catch (SecurityUtilityException) {} } - throw e; + throw; } } diff --git a/crypto/src/cms/SignerInformation.cs b/crypto/src/cms/SignerInformation.cs index 2e32a3ae6..116e349f0 100644 --- a/crypto/src/cms/SignerInformation.cs +++ b/crypto/src/cms/SignerInformation.cs @@ -612,9 +612,9 @@ namespace Org.BouncyCastle.Cms throw new CmsException("algorithm: " + algorithm + " not supported in base signatures."); } } - catch (SecurityUtilityException e) + catch (SecurityUtilityException) { - throw e; + throw; } catch (GeneralSecurityException e) { |