Skip to content

Commit

Permalink
Add -n parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeee committed Feb 21, 2020
1 parent 681e3f5 commit 06b065d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
group.add_argument('-d', '--decrypt', action="store_true")
parser.add_argument('-m', '--mode', type=str, default='ECB')
parser.add_argument('-i', '--iv', type=str)
parser.add_argument('--nonce', type=str, help='Nonce to use for CTR mode')
parser.add_argument('-n', '--nonce', type=str, help='Nonce to use for CTR mode')
parser.add_argument("input_file")
parser.add_argument("output_file")
args = parser.parse_args()
Expand Down

0 comments on commit 06b065d

Please sign in to comment.