Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

argon

Argon2 hash function implementations. This module currently only targets the JVM and Android.

To obtain an Argon2Hasher:

val hasher = Hasher.argon2(type = Argon2Type.ID)

Then simply call the hash or invoke function to perform the hash on a provided value:

val result = hasher.hash(myStringInput)