interface DigestBuilder : Any
A builder-style contract for digesting a message.
digest |
abstract fun digest(): Bytes
Create a Bytes from the digested data contained in this DigestBuilder so far. |
update |
abstract fun update(bytes: Bytes): DigestBuilder
Update the current digest with the given Bytes. |