public static class ECKey.ECDSASignature extends Object
| 限定符和类型 | 字段和说明 |
|---|---|
BigInteger |
r
The two components of the signature.
|
BigInteger |
s
The two components of the signature.
|
| 构造器和说明 |
|---|
ECDSASignature(BigInteger r,
BigInteger s)
Constructs a signature with the given components.
|
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
isCanonical()
Returns true if the S component is "low", that means it is below
ECKey.HALF_CURVE_ORDER. |
ECKey.ECDSASignature |
toCanonicalised()
Will automatically adjust the S component to be less than or equal to half the curve order, if necessary.
|
public final BigInteger r
public final BigInteger s
public ECDSASignature(BigInteger r, BigInteger s)
public boolean isCanonical()
ECKey.HALF_CURVE_ORDER. See BIP62.public ECKey.ECDSASignature toCanonicalised()
public byte[] encodeToDER()
public static ECKey.ECDSASignature decodeFromDER(byte[] bytes)
Exception - if the signature is unparseable in some way.protected ByteArrayOutputStream derByteStream() throws IOException
IOExceptionCopyright © 2021. All rights reserved.