DigestAlgorithm

interface DigestAlgorithm

Interface for injecting custom digest implementation bypassing JCA.

Properties

Link copied to clipboard
abstract val algorithm: String

Algorithm identifier.

Link copied to clipboard
abstract val digestLength: Int

The length of the digest in bytes.

Functions

Link copied to clipboard

Computes the digest of the ByteArray which is resistant to pre-image attacks. Only used to calculate the hash of the leaves of the ComponentGroup Merkle tree, starting from its serialized components. Default implementation provides double hashing, but can it be changed to single hashing or something else for better performance.

Link copied to clipboard
abstract fun digest(bytes: ByteArray): ByteArray

Computes the digest of the ByteArray.

Link copied to clipboard
open fun nonceDigest(bytes: ByteArray): ByteArray

Computes the digest of the ByteArray which is resistant to pre-image attacks. Only used to calculate the nonces for the leaves of the ComponentGroup Merkle tree. Default implementation provides double hashing, but can it be changed to single hashing or something else for better performance.