-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sha512 Implementation #27
Comments
There is also a problem in Hash typeclass in which you assumed message size can not be greater that |
I also need 128bit Big endian Word while encoding the padding. |
I had thought about this. No machines currently have 128-bit native integers. To accomodate sha512 we would have to You can implement the 128 but BE padding by actually storing 2 64 bit BE numbers, the first being just 0. |
Ok.. I have done sha 224,256,512 and doing sha 384. what others we have to do? |
How should I capture length of message in this case as it will be 2^128. Should I use
Integer
or 2Word64
?The text was updated successfully, but these errors were encountered: