klyn.cryptography.MessageDigest.digest
method
public digest(text as String = null) as Byte[] throws CryptoException:
DescriptionHashes the buffered text and an optional final chunk.
The internal buffer is cleared after the digest is produced.
import klyn.cryptography
md = SHA256()
digest = md.digest("hello")
print(digest.size)