Devessier / ssl

Clone of openssl in C for 42 School
GNU General Public License v3.0
0 stars 0 forks source link

Implement SHA-512/224 algorithm #19

Closed Devessier closed 3 years ago

Devessier commented 3 years ago

SHA-512/224 algorithm is the same as SHA-512 except the hash size and how the hash is calculated. An interesting thing is how we filled the hash. 224 bits is equal to 3.5 64-bits words. We had to cut in half the fourth computed state.

Closes #17