WL#3986: Add SHA2 supportAffects: Server-6.0 — Status: Complete — Priority: MediumWe already implement SHA1. This implements the remaining four fips-approved
Secure Hash Algorithms for computing a condensed digital representation,
SHA-224, SHA-256, SHA-384, and SHA-512, collectively known as "SHA-2". The
number "224" and such refers to the digest length.
Algorithm specification documents:
http://csrc.nist.gov/CryptoToolkit/tkhash.html
http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf
MySQL SQL function specification:
SHA2( string cleartext, integer hash_length )
-> string hash, or NULL
where hash_length is one of 224, 256, 384, or 512. If either is
NULL or a length is unsupported, then the result is NULL.SHA2( string cleartext, integer hash_length ) See patch for BUG#13174 "Patch: SHA2 function". No Comments yet |
VotesWatches0 members are watching this worklog
You must be logged in to track this worklog.
Provide Feedback
You must be logged in to comment
|