verifyMac

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

Verify if data matches expected hash using provided key.


fun verifyMac(@NotNull data: Iterable<ByteArray>, @NotNull expected: ByteArray, @NotNull key: ByteArray): Boolean

Verify if data matches expected hash using provided key.

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


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

Verify if multiple data matches expected hash using provided key.

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