Skip to content

Commit 6a28e48

Browse files
committed
.
1 parent a5d573c commit 6a28e48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PyAES/AES.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def pcbc_dec(key, file_path, iv, terminal_width=80):
587587
remove(file_path)
588588

589589

590-
# OFB encryption function (Tested but no automated test implemented and no test with different file sizes)
590+
# OFB encryption function
591591
def ofb_enc(key, file_path, iv, terminal_width=80):
592592
file_size = getsize(file_path)
593593
progress = 0
@@ -628,7 +628,7 @@ def ofb_enc(key, file_path, iv, terminal_width=80):
628628
remove(file_path)
629629

630630

631-
# OFB decryption function (Tested but no automated test implemented and no test with different file sizes)
631+
# OFB decryption function
632632
def ofb_dec(key, file_path, iv, terminal_width=80):
633633
iv = [int(iv[i:i+2], 16) for i in range(0, len(iv), 2)]
634634
file_size = getsize(file_path)

0 commit comments

Comments
 (0)