diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-29 14:15:10 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-29 14:15:10 +0700 |
commit | 435210f10fd927653ce8fbc04ec537ae5d8966b6 (patch) | |
tree | 27b6ed1c029db271c3429ac57629d7f0156c5fed /crypto/src/tsp/TimeStampRequest.cs | |
parent | Refactoring around Platform (diff) | |
download | BouncyCastle.NET-ed25519-435210f10fd927653ce8fbc04ec537ae5d8966b6.tar.xz |
Generics migration complete
Diffstat (limited to 'crypto/src/tsp/TimeStampRequest.cs')
-rw-r--r-- | crypto/src/tsp/TimeStampRequest.cs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/crypto/src/tsp/TimeStampRequest.cs b/crypto/src/tsp/TimeStampRequest.cs index f5c6a09e6..b05b58c0e 100644 --- a/crypto/src/tsp/TimeStampRequest.cs +++ b/crypto/src/tsp/TimeStampRequest.cs @@ -1,14 +1,12 @@ using System; -using System.Collections; +using System.Collections.Generic; using System.IO; using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Asn1.Cmp; using Org.BouncyCastle.Asn1.Tsp; using Org.BouncyCastle.Asn1.X509; -using Org.BouncyCastle.Crypto; using Org.BouncyCastle.Math; -using Org.BouncyCastle.Security; using Org.BouncyCastle.X509; namespace Org.BouncyCastle.Tsp @@ -124,10 +122,7 @@ namespace Org.BouncyCastle.Tsp * @param extensions if non-null a set of extensions we are willing to accept. * @throws TspException if the request is invalid, or processing fails. */ - public void Validate( - IList algorithms, - IList policies, - IList extensions) + public void Validate(IList<string> algorithms, IList<string> policies, IList<string> extensions) { if (!algorithms.Contains(this.MessageImprintAlgOid)) throw new TspValidationException("request contains unknown algorithm", PkiFailureInfo.BadAlg); @@ -173,7 +168,7 @@ namespace Org.BouncyCastle.Tsp return extensions == null ? null : extensions.GetExtension(oid); } - public virtual IList GetExtensionOids() + public virtual IList<DerObjectIdentifier> GetExtensionOids() { return TspUtil.GetExtensionOids(extensions); } |