Skip to content

Commit ce159a4

Browse files
committed
mistake to test action tests
1 parent 997c160 commit ce159a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sha256.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def perform_one_round(
7777
word_list = bytes_to_words(message)
7878

7979
# Spltiting into 64B length chunks
80-
chunks = [word_list[16 * i : 16 * (i + 1)] for i in range(int(len(word_list) / 16))]
80+
chunks = [word_list[15 * i : 16 * (i + 1)] for i in range(int(len(word_list) / 16))]
8181
for chunk in chunks:
8282
# Initializing values for the current loop
8383
W = chunk[:]

0 commit comments

Comments
 (0)