summary refs log tree commit diff
path: root/crypto/src/asn1/cmp/OobCertHash.cs
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2014-08-26 17:35:17 -0400
committerOren Novotny <oren@novotny.org>2014-08-26 17:35:17 -0400
commit5f9336106a1b51241336520b2cd032340d12fd81 (patch)
tree58be4e085640a1286b715886f7717f81cde898e6 /crypto/src/asn1/cmp/OobCertHash.cs
parentRelease 1.7.0.1 with Wpa81 support (diff)
downloadBouncyCastle.NET-ed25519-5f9336106a1b51241336520b2cd032340d12fd81.tar.xz
rename Crypto dir to crypto to match bc-git
Diffstat (limited to 'crypto/src/asn1/cmp/OobCertHash.cs')
-rw-r--r--crypto/src/asn1/cmp/OobCertHash.cs87
1 files changed, 0 insertions, 87 deletions
diff --git a/crypto/src/asn1/cmp/OobCertHash.cs b/crypto/src/asn1/cmp/OobCertHash.cs
deleted file mode 100644
index 63ddff7c4..000000000
--- a/crypto/src/asn1/cmp/OobCertHash.cs
+++ /dev/null
@@ -1,87 +0,0 @@
-using System;
-
-using Org.BouncyCastle.Asn1.Crmf;
-using Org.BouncyCastle.Asn1.X509;
-
-namespace Org.BouncyCastle.Asn1.Cmp
-{
-	public class OobCertHash
-		: Asn1Encodable
-	{
-		private readonly AlgorithmIdentifier hashAlg;
-		private readonly CertId certId;
-		private readonly DerBitString  hashVal;
-
-		private OobCertHash(Asn1Sequence seq)
-		{
-			int index = seq.Count - 1;
-
-			hashVal = DerBitString.GetInstance(seq[index--]);
-
-			for (int i = index; i >= 0; i--)
-			{
-				Asn1TaggedObject tObj = (Asn1TaggedObject)seq[i];
-
-				if (tObj.TagNo == 0)
-				{
-					hashAlg = AlgorithmIdentifier.GetInstance(tObj, true);
-				}
-				else
-				{
-					certId = CertId.GetInstance(tObj, true);
-				}
-			}
-		}
-
-		public static OobCertHash GetInstance(object obj)
-		{
-			if (obj is OobCertHash)
-				return (OobCertHash)obj;
-
-			if (obj is Asn1Sequence)
-				return new OobCertHash((Asn1Sequence)obj);
-
-            throw new ArgumentException("Invalid object: " + obj.GetType().Name, "obj");
-		}
-		
-		public virtual AlgorithmIdentifier HashAlg
-		{
-			get { return hashAlg; }
-		}
-		
-		public virtual CertId CertID
-		{
-			get { return certId; }
-		}
-		
-		/**
-		 * <pre>
-		 * OobCertHash ::= SEQUENCE {
-		 *                      hashAlg     [0] AlgorithmIdentifier     OPTIONAL,
-		 *                      certId      [1] CertId                  OPTIONAL,
-		 *                      hashVal         BIT STRING
-		 *                      -- hashVal is calculated over the Der encoding of the
-		 *                      -- self-signed certificate with the identifier certID.
-		 *       }
-		 * </pre>
-		 * @return a basic ASN.1 object representation.
-		 */
-		public override Asn1Object ToAsn1Object()
-		{
-			Asn1EncodableVector v = new Asn1EncodableVector();
-			AddOptional(v, 0, hashAlg);
-			AddOptional(v, 1, certId);
-			v.Add(hashVal);
-			return new DerSequence(v);
-		}
-
-		private void AddOptional(Asn1EncodableVector v, int tagNo, Asn1Encodable obj)
-		{
-			if (obj != null)
-			{
-				v.Add(new DerTaggedObject(true, tagNo, obj));
-			}
-		}
-	}
-}
-