Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 456 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 456 Bytes

Module blake2

Digest implementations for BLAKE2 Hashing

Implementations for:

  • BLAKE2b
  • BLAKE2s

Implementations also available as Mac via KotlinCrypto/MACs for keyed hashing.

See HERE for basic usage example of Digest.

fun main() {
    BLAKE2b(512)
    BLAKE2s(256)
}