Checksum
The Checksum registry offers functions to generate and verify checksums, ensuring data integrity. It supports various algorithms for reliable error detection and data validation.
You can easily import all the functions from the checksum
registry by including the following import statement in your code
sha1Sum
SHA1sum calculates the SHA-1 hash of the input string and returns it as a hexadecimal encoded string.
Signature
sha256Sum
SHA256sum calculates the SHA-256 hash of the input string and returns it as a hexadecimal encoded string.
Signature
sha512Sum
SHA512sum calculates the SHA-512 hash of the input string and returns it as a hexadecimal encoded string.
Signature
adler32Sum
Adler32Sum calculates the Adler-32 checksum of the input string and returns it as a hexadecimal encoded string.
Signature
md5Sum
MD5sum calculates the MD5 hash of the input string and returns it as a hexadecimal encoded string.
Signature
Last updated