summary refs log tree commit diff
path: root/crypto/src/asn1/esf/SignerAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/esf/SignerAttribute.cs')
-rw-r--r--crypto/src/asn1/esf/SignerAttribute.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/crypto/src/asn1/esf/SignerAttribute.cs b/crypto/src/asn1/esf/SignerAttribute.cs
index f90968cf8..03cdd4ba8 100644
--- a/crypto/src/asn1/esf/SignerAttribute.cs
+++ b/crypto/src/asn1/esf/SignerAttribute.cs
@@ -26,11 +26,10 @@ namespace Org.BouncyCastle.Asn1.Esf
 				"obj");
 		}
 
-		private SignerAttribute(
-			object obj)
+		private SignerAttribute(object obj)
 		{
-			Asn1Sequence seq = (Asn1Sequence) obj;
-			DerTaggedObject taggedObject = (DerTaggedObject) seq[0];
+			Asn1Sequence seq = (Asn1Sequence)obj;
+			Asn1TaggedObject taggedObject = (Asn1TaggedObject)seq[0];
 			if (taggedObject.TagNo == 0)
 			{
 				claimedAttributes = Asn1Sequence.GetInstance(taggedObject, true);