diff options
Diffstat (limited to 'crypto/src/asn1/crmf/PopoSigningKey.cs')
-rw-r--r-- | crypto/src/asn1/crmf/PopoSigningKey.cs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/crypto/src/asn1/crmf/PopoSigningKey.cs b/crypto/src/asn1/crmf/PopoSigningKey.cs index 93e14e30d..caa226b56 100644 --- a/crypto/src/asn1/crmf/PopoSigningKey.cs +++ b/crypto/src/asn1/crmf/PopoSigningKey.cs @@ -16,14 +16,13 @@ namespace Org.BouncyCastle.Asn1.Crmf { int index = 0; - if (seq[index] is Asn1TaggedObject) + if (seq[index] is Asn1TaggedObject tagObj) { - Asn1TaggedObject tagObj - = (Asn1TaggedObject) seq[index++]; + index++; + if (tagObj.TagNo != 0) - { - throw new ArgumentException( "Unknown PopoSigningKeyInput tag: " + tagObj.TagNo, "seq"); - } + throw new ArgumentException( "Unknown PopoSigningKeyInput tag: " + tagObj.TagNo, nameof(seq)); + poposkInput = PopoSigningKeyInput.GetInstance(tagObj.GetObject()); } algorithmIdentifier = AlgorithmIdentifier.GetInstance(seq[index++]); |