From e8c09187bd814f71d502955e340d06a979619748 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 22 Oct 2018 11:45:50 +0700 Subject: Include public key in EC encoding --- crypto/src/asn1/sec/ECPrivateKeyStructure.cs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'crypto/src/asn1') diff --git a/crypto/src/asn1/sec/ECPrivateKeyStructure.cs b/crypto/src/asn1/sec/ECPrivateKeyStructure.cs index 32e020c0b..aec8e0af0 100644 --- a/crypto/src/asn1/sec/ECPrivateKeyStructure.cs +++ b/crypto/src/asn1/sec/ECPrivateKeyStructure.cs @@ -48,17 +48,8 @@ namespace Org.BouncyCastle.Asn1.Sec public ECPrivateKeyStructure( int orderBitLength, BigInteger key) + : this(orderBitLength, key, null) { - if (key == null) - throw new ArgumentNullException("key"); - if (orderBitLength < key.BitLength) - throw new ArgumentException("must be >= key bitlength", "orderBitLength"); - - byte[] bytes = BigIntegers.AsUnsignedByteArray((orderBitLength + 7) / 8, key); - - this.seq = new DerSequence( - new DerInteger(1), - new DerOctetString(bytes)); } [Obsolete("Use constructor which takes 'orderBitLength' instead, to guarantee correct encoding")] -- cgit 1.4.1