verifyHash

fun verifyHash(@NotNull data: ByteArray, @NotNull expected: ByteArray): Boolean
fun verifyHash(@NotNull data: ByteArray, @NotNull expected: String): Boolean

Verify if data matches the expected hash.


fun verifyHash(@NotNull data: Iterable<ByteArray>, @NotNull expected: ByteArray): Boolean
fun verifyHash(@NotNull data: Iterable<ByteArray>, @NotNull expected: String): Boolean

Verify if multiple data matches the expected hash.

The list of data to be verified should be in the same order as the original data when the hash was generated.