-
Notifications
You must be signed in to change notification settings - Fork 1
HASH
HOA PHAN edited this page Mar 13, 2022
·
1 revision
fun String.sha256(): String {
val md = MessageDigest.getInstance("SHA-256")
return BigInteger(1, md.digest(toByteArray())).toString(16).padStart(32, '0')
}
echo -n "[email protected]" | shasum -a 256