public static class ECKey.ECDSASignature extends Object
Modifier and Type | Field and Description |
---|---|
BigInteger |
r
The two components of the signature.
|
BigInteger |
s
The two components of the signature.
|
Constructor and Description |
---|
ECKey.ECDSASignature(BigInteger r,
BigInteger s)
Constructs a signature with the given components.
|
Modifier and Type | Method and Description |
---|---|
static ECKey.ECDSASignature |
decodeFromDER(byte[] bytes) |
protected ByteArrayOutputStream |
derByteStream() |
byte[] |
encodeToDER()
DER is an international standard for serializing data structures which is widely used in cryptography.
|
void |
ensureCanonical()
Will automatically adjust the S component to be less than or equal to half the curve order, if necessary.
|
public BigInteger r
public BigInteger s
public ECKey.ECDSASignature(BigInteger r, BigInteger s)
public void ensureCanonical()
public byte[] encodeToDER()
public static ECKey.ECDSASignature decodeFromDER(byte[] bytes)
protected ByteArrayOutputStream derByteStream() throws IOException
IOException
Copyright © 2014. All rights reserved.