StoredKeygenResult

@Serializable
data class StoredKeygenResult(val algorithmId: String, val shareBytes: ByteArray, val publicKeyBytes: ByteArray, val groupId: String, val timestamp: Long)

Serializable representation of a 2-of-2 keygen result for persistent storage. Stores the share and public key bytes.

Constructors

Link copied to clipboard
constructor(algorithmId: String, shareBytes: ByteArray, publicKeyBytes: ByteArray, groupId: String, timestamp: Long)

Properties

Link copied to clipboard

Algorithm identifier (e.g., "ecdsa_secp256k1")

Link copied to clipboard
Link copied to clipboard

Public key bytes (SEC1 compressed)

Link copied to clipboard

Share bytes from keygen

Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int