We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are two minor problems as explained in the next section.
In the hint-1.txtthere are two examples given as follows:
hint-1.txt
Example 1: $ var s = { toString: function() { alert('Exploit 1'); } }; $ CryptoAPI.sha1.hash(s) Example 2: $ var s = { toString: function() { alert('Exploit 1'); } }; $ CryptoAPI.sha1.hash("abc")
Nonetheless, the second example doesn't demonstrate anything and should be removed.
In solution.js the line 62 should be changed from:
solution.js
if ((i & 63) == 63) CryptoAPI.sha1._round(H, w);
to:
if ((i & 63) == 63) internalRound(H, w);
This is explained in the text of the solution, but the code base is not synced with that description.
The text was updated successfully, but these errors were encountered:
Fix issue #64 (#65)
f8ccb2b
Fixed, thank you!
Sorry, something went wrong.
No branches or pull requests
Summary
There are two minor problems as explained in the next section.
How to reproduce
In the
hint-1.txt
there are two examples given as follows:Nonetheless, the second example doesn't demonstrate anything and should be removed.
In
solution.js
the line 62 should be changed from:to:
This is explained in the text of the solution, but the code base is not synced with that description.
The text was updated successfully, but these errors were encountered: