Skip to content

Commit 94fc980

Browse files
authored
Merge pull request #2 from elliotwutingfeng/patch-1
2 parents 149d89e + 51bce0d commit 94fc980

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

draft-denis-ipcrypt.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,8 +762,7 @@ function kiasu_bc_encrypt(key, tweak, plaintext):
762762
for round in range(1, 10):
763763
state = sub_bytes(state)
764764
state = shift_rows(state)
765-
if round < 9:
766-
state = mix_columns(state)
765+
state = mix_columns(state)
767766
state = add_round_key(state, round_keys[round] ^ padded_tweak)
768767

769768
// Final round

0 commit comments

Comments
 (0)