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 | |
Must version |
sha256sum
Sha256sum calculates the SHA-256 hash of the input string and returns it as a hexadecimal encoded string.
Signature | |
Must version |
adler32sum
Adler32sum calculates the Adler-32 checksum of the input string and returns it as a hexadecimal encoded string.
Signature | |
Must version |
md5sum
Md5sum calculates the MD5 hash of the input string and returns it as a hexadecimal encoded string.
Signature | |
Must version |
Last updated