generateHash

fun generateHash(@NotNull data: Iterable<ByteArray>): ByteArray

Generate hash from multiple data.

If you want a string representation of the hash, use generateHashString, or use toHexString on the resulting ByteArray hash.


fun generateHash(@NotNull data: ByteArray): ByteArray

Generate hash from data.

If you want a string representation of the hash, use generateHashString, or use toHexString on the resulting ByteArray hash.