klyn.cryptography.MessageDigest.digestInfo
method
public digestInfo(text as String = null) as Digest throws CryptoException:
DescriptionHashes the buffered text and returns a structured digest view.
The internal buffer is cleared after the digest is produced.
import klyn.cryptography
md = SHA256()
digest = md.digestInfo("hello")
print(digest.hex)
ReturnsStructured digest result.