Working With Digests and Signatures
MD5 digests
MD5 is a one-way hashing algorithm for creating digest “signatures” or checksums of strings. MD5 digests are 128 bit (16 byte) signatures. MD5 is the most common method of providing checksums for files downloaded over the internet. To create a checksum of an entire file or text convert the whole string.
1
|
|
hmac-sha1
In cryptography, a hash-based message authentication code (HMAC) is a specific construction for calculating a message authentication code (MAC) involving a cryptographic hash function in combination with a secret cryptographic key. As with any MAC, it may be used to simultaneously verify both the data integrity and the authenticity of a message.
In ruby its simple to generate one:
1 2 3 4 5 6 7 |
|
Any questions on this, please feel free to ask. We’re here to help…