class PublicKey
(source)
A signing public key.
fun bytes(): Bytes |
|
fun bytesArray(): ByteArray |
|
fun equals(other: Any?): Boolean |
|
static fun fromBytes(bytes: Bytes): PublicKey static fun fromBytes(bytes: ByteArray): PublicKey
Create a Signature.PublicKey from an array of bytes. The byte array must be of length |
|
fun hashCode(): Int |
|
static fun length(): Int
Obtain the length of the key in bytes (32). |
|
fun verify(message: Bytes, signature: Bytes): Boolean fun verify(message: Allocated, signature: Allocated): Boolean
Verifies the signature of a message. |