Hasher

abstract class Hasher(val chunkSize: Int, val digestSize: Int, val name: String)

chunkSize in bytes

Inheritors

Constructors

Link copied to clipboard
constructor(chunkSize: Int, digestSize: Int, name: String)

Properties

Link copied to clipboard

In bits

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun digest(): Hash
Link copied to clipboard
open fun digestOut(out: ByteArray)
Link copied to clipboard
open fun reset(): Hasher
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun update(data: ByteArray): Hasher
open fun update(data: ByteArray, offset: Int, count: Int): Hasher