RosettaCodeData/Task/SHA-256/Groovy/sha-256-1.groovy
2023-07-01 13:44:08 -04:00

4 lines
163 B
Groovy

def sha256Hash = { text ->
java.security.MessageDigest.getInstance("SHA-256").digest(text.bytes)
.collect { String.format("%02x", it) }.join('')
}