Skip to content

Commit

Permalink
Update AdmireBlocks.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Mistium authored Oct 16, 2024
1 parent 3c106b1 commit b77e64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/AdmireBlocks.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// this version of AdmireBlocks was modified by @mistium to be more optimsed and generally better when used.
function rotate_left(n, s) {
return (n << s) | (n >>> (32 - s)
return (n << s) | (n >>> (32 - s))
}

function SHA1(msg) {
Expand Down

0 comments on commit b77e64b

Please sign in to comment.