Skip to content

Commit

Permalink
Cleaned up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta committed Apr 27, 2020
1 parent b622c48 commit 0ff9851
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion codext/crypto/rotn.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ def decode(text, errors="strict"):
return decode


# note: the integer behind "rot" is captured for sending to the parametrizable encode and decode functions "rotn_**code"
add("rotN", rot_encode, rot_decode, r"(?i)rot[-_]?([1-9]|1[0-9]|2[0-5])$")
2 changes: 0 additions & 2 deletions codext/crypto/xor_byte.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,4 @@ def encode(text, errors="strict"):
return encode


# note: the integer (belongs to ]0,256[) behind "xor" is captured for sending to the parametrizable encode and decode
# functions "xor_byte_**code"
add("xorN", xor_byte_encode, xor_byte_encode, r"(?i)xor[-_]?([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$")

0 comments on commit 0ff9851

Please sign in to comment.