ECPrivateKeyStructure
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Utilities;
using System;
namespace Org.BouncyCastle.Asn1.Sec
{
    public class ECPrivateKeyStructure : Asn1Encodable
    {
        private readonly Asn1Sequence m_seq;
        public static ECPrivateKeyStructure GetInstance(object obj)
        {
            if (obj == null)
                return null;
            ECPrivateKeyStructure eCPrivateKeyStructure = obj as ECPrivateKeyStructure;
            if (eCPrivateKeyStructure != null)
                return eCPrivateKeyStructure;
            return new ECPrivateKeyStructure(Asn1Sequence.GetInstance(obj));
        }
        private ECPrivateKeyStructure(Asn1Sequence seq)
        {
            if (seq == null)
                throw new ArgumentNullException("seq");
            m_seq = seq;
        }
        public ECPrivateKeyStructure(int orderBitLength, BigInteger key)
            : this(orderBitLength, key, null)
        {
        }
        public ECPrivateKeyStructure(int orderBitLength, BigInteger key, Asn1Encodable parameters)
            : this(orderBitLength, key, null, parameters)
        {
        }
        public ECPrivateKeyStructure(int orderBitLength, BigInteger key, DerBitString publicKey, Asn1Encodable parameters)
        {
            if (key == null)
                throw new ArgumentNullException("key");
            if (orderBitLength < key.BitLength)
                throw new ArgumentException("must be >= key bitlength", "orderBitLength");
            byte[] contents = BigIntegers.AsUnsignedByteArray((orderBitLength + 7) / 8, key);
            Asn1EncodableVector asn1EncodableVector = new Asn1EncodableVector(new DerInteger(1), new DerOctetString(contents));
            asn1EncodableVector.AddOptionalTagged(true, 0, parameters);
            asn1EncodableVector.AddOptionalTagged(true, 1, publicKey);
            m_seq = new DerSequence(asn1EncodableVector);
        }
        public virtual BigInteger GetKey()
        {
            Asn1OctetString asn1OctetString = (Asn1OctetString)m_seq[1];
            return new BigInteger(1, asn1OctetString.GetOctets());
        }
        public virtual DerBitString GetPublicKey()
        {
            return (DerBitString)GetObjectInTag(1, 3);
        }
        public virtual Asn1Object GetParameters()
        {
            return GetObjectInTag(0, -1);
        }
        private Asn1Object GetObjectInTag(int tagNo, int baseTagNo)
        {
            foreach (Asn1Encodable item in m_seq) {
                Asn1TaggedObject asn1TaggedObject = item.ToAsn1Object() as Asn1TaggedObject;
                if (asn1TaggedObject != null && asn1TaggedObject.HasContextTag(tagNo))
                    return (baseTagNo < 0) ? asn1TaggedObject.GetExplicitBaseObject().ToAsn1Object() : asn1TaggedObject.GetBaseUniversal(true, baseTagNo);
            }
            return null;
        }
        public override Asn1Object ToAsn1Object()
        {
            return m_seq;
        }
    }
}