Skip to content

Commit

Permalink
Fix rc5_block_cipher tests
Browse files Browse the repository at this point in the history
  • Loading branch information
elenamsd committed May 21, 2024
1 parent f51b5cf commit ab72701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion claasp/ciphers/block_ciphers/rc5_block_cipher.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class RC5BlockCipher(Cipher):
sage: from claasp.ciphers.block_ciphers.rc5_block_cipher import RC5BlockCipher
sage: rc5 = RC5BlockCipher()
sage: key = 0x0x0001020304050607
sage: key = 0x0001020304050607
sage: plaintext = 0x00010203
sage: ciphertext = 0x23a8d72e
sage: rc5.evaluate([key, plaintext]) == ciphertext
Expand Down

0 comments on commit ab72701

Please sign in to comment.