Skip to main content

Bls12381PublicKey

open class Bls12381PublicKey : Disposable, AutoCloseable, Bls12381PublicKeyInterface

A bls12381 min-sig public key.

BCS

The BCS serialized form for this type is defined by the following ABNF:

bls12381-public-key = %d96 96OCTET

Due to historical reasons, even though a min-sig Bls12381PublicKey has a fixed-length of 96, IOTA's binary representation of a min-sig Bls12381PublicKey is prefixed with its length meaning its serialized binary form (in bcs) is 97 bytes long vs a more compact 96 bytes.

Functions

NameSummary
close@Synchronized
open override fun close()
destroyopen override fun destroy()
equalsopen operator override fun equals(other: Any?): Boolean
hashCodeopen override fun hashCode(): Int
toBytesopen override fun toBytes(): ByteArray

Companion object functions

NameSummary
fromBytesfun fromBytes(bytes: ByteArray): Bls12381PublicKey
fromStrfun fromStr(s: String): Bls12381PublicKey
randomfun random(): Bls12381PublicKey