generateMac

fun generateMac(@NotNull data: Iterable<ByteArray>, @NotNull key: ByteArray): ByteArray

Generate HMAC for multiple data using provided key.

If you want a string representation use generateMacString instead, or manually invoke toHexString on the output.


fun generateMac(@NotNull data: ByteArray, @NotNull key: ByteArray): ByteArray

Generate HMAC for data using provided key.

If you want a string representation use generateMacString instead, or manually invoke toHexString on the output.