diff options
author | Alexander Scheel <alexander.scheel@keyfactor.com> | 2024-02-14 09:35:40 -0500 |
---|---|---|
committer | Alexander Scheel <alexander.scheel@keyfactor.com> | 2024-02-14 10:22:16 -0500 |
commit | a9b573b9a90079f0718ecc11b2d5e0e0cf230329 (patch) | |
tree | 50bad0f4f37b7635cbc5ca978249102f9743306c | |
parent | Add explicit algorithm parameter in AddKeyTransRecipient (diff) | |
download | BouncyCastle.NET-ed25519-a9b573b9a90079f0718ecc11b2d5e0e0cf230329.tar.xz |
Fix cms imports to conform to casing standards
Signed-off-by: Alexander Scheel <alexander.scheel@keyfactor.com>
-rw-r--r-- | crypto/src/cms/CMSSignedData.cs | 2 | ||||
-rw-r--r-- | crypto/src/cms/Pkcs7ProcessableObject.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/cms/CMSSignedData.cs b/crypto/src/cms/CMSSignedData.cs index 77da9b95d..0d26e3223 100644 --- a/crypto/src/cms/CMSSignedData.cs +++ b/crypto/src/cms/CMSSignedData.cs @@ -5,7 +5,7 @@ using System.IO; using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Asn1.Cms; using Org.BouncyCastle.Asn1.X509; -using Org.BouncyCastle.cms; +using Org.BouncyCastle.Cms; using Org.BouncyCastle.Operators.Utilities; using Org.BouncyCastle.Utilities.Collections; using Org.BouncyCastle.X509; diff --git a/crypto/src/cms/Pkcs7ProcessableObject.cs b/crypto/src/cms/Pkcs7ProcessableObject.cs index 1042b6ff5..2fe37632a 100644 --- a/crypto/src/cms/Pkcs7ProcessableObject.cs +++ b/crypto/src/cms/Pkcs7ProcessableObject.cs @@ -2,7 +2,7 @@ using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Cms; -namespace Org.BouncyCastle.cms +namespace Org.BouncyCastle.Cms { public class Pkcs7ProcessableObject : CmsProcessable { @@ -45,4 +45,4 @@ namespace Org.BouncyCastle.cms public object GetContent() => Content; } -} \ No newline at end of file +} |