diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-28 11:01:05 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-28 11:01:05 +0700 |
commit | 18c67ac1339c9ca4f3604f5e5d44da0263b9ad21 (patch) | |
tree | 32fe34fa1251ddb8c5529d9a39a31a68641dd257 /crypto/src/tsp | |
parent | Generics migration in Bcpg, Bzip2, Cmp (diff) | |
download | BouncyCastle.NET-ed25519-18c67ac1339c9ca4f3604f5e5d44da0263b9ad21.tar.xz |
Generics migration in Cms
Diffstat (limited to 'crypto/src/tsp')
-rw-r--r-- | crypto/src/tsp/TimeStampToken.cs | 2 | ||||
-rw-r--r-- | crypto/src/tsp/TimeStampTokenGenerator.cs | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/crypto/src/tsp/TimeStampToken.cs b/crypto/src/tsp/TimeStampToken.cs index 258f14dfb..2b7187cad 100644 --- a/crypto/src/tsp/TimeStampToken.cs +++ b/crypto/src/tsp/TimeStampToken.cs @@ -42,7 +42,7 @@ namespace Org.BouncyCastle.Tsp throw new TspValidationException("ContentInfo object not for a time stamp."); } - ICollection signers = tsToken.GetSignerInfos().GetSigners(); + var signers = tsToken.GetSignerInfos().GetSigners(); if (signers.Count != 1) { diff --git a/crypto/src/tsp/TimeStampTokenGenerator.cs b/crypto/src/tsp/TimeStampTokenGenerator.cs index 7d711eb22..4289d7d24 100644 --- a/crypto/src/tsp/TimeStampTokenGenerator.cs +++ b/crypto/src/tsp/TimeStampTokenGenerator.cs @@ -450,7 +450,8 @@ namespace Org.BouncyCastle.Tsp return sBuild.ToString(); } - private class TableGen : CmsAttributeTableGenerator + private class TableGen + : CmsAttributeTableGenerator { private readonly SignerInfoGenerator infoGen; private readonly EssCertID essCertID; @@ -462,7 +463,7 @@ namespace Org.BouncyCastle.Tsp this.essCertID = essCertID; } - public Asn1.Cms.AttributeTable GetAttributes(IDictionary parameters) + public Asn1.Cms.AttributeTable GetAttributes(IDictionary<CmsAttributeTableParameter, object> parameters) { Asn1.Cms.AttributeTable tab = infoGen.signedGen.GetAttributes(parameters); if (tab[PkcsObjectIdentifiers.IdAASigningCertificate] == null) @@ -473,7 +474,8 @@ namespace Org.BouncyCastle.Tsp } } - private class TableGen2 : CmsAttributeTableGenerator + private class TableGen2 + : CmsAttributeTableGenerator { private readonly SignerInfoGenerator infoGen; private readonly EssCertIDv2 essCertID; @@ -485,7 +487,7 @@ namespace Org.BouncyCastle.Tsp this.essCertID = essCertID; } - public Asn1.Cms.AttributeTable GetAttributes(IDictionary parameters) + public Asn1.Cms.AttributeTable GetAttributes(IDictionary<CmsAttributeTableParameter, object> parameters) { Asn1.Cms.AttributeTable tab = infoGen.signedGen.GetAttributes(parameters); if (tab[PkcsObjectIdentifiers.IdAASigningCertificateV2] == null) |