summaryrefslogtreecommitdiff
path: root/rsa/util.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2011-08-03 13:56:32 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2011-08-03 13:56:32 +0200
commit58fe9468aaeb0910e08502d6d82184e2ef8b1901 (patch)
tree132be36f986c68ab654a782eb84739d69dbba8f9 /rsa/util.py
parentdbea213e8875d53087b5b3adf85c7004f13b05d8 (diff)
downloadrsa-git-58fe9468aaeb0910e08502d6d82184e2ef8b1901.tar.gz
More documentation about key size and OpenSSL compatibility
Diffstat (limited to 'rsa/util.py')
-rw-r--r--rsa/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/util.py b/rsa/util.py
index 9c1c863..db6944e 100644
--- a/rsa/util.py
+++ b/rsa/util.py
@@ -30,9 +30,9 @@ def private_to_public():
'corresponding public key. Both private and public keys use '
'the format described in PKCS#1 v1.5')
- parser.add_option('--in', dest='infilename', type='string',
+ parser.add_option('-i', '--input', dest='infilename', type='string',
help='Input filename. Reads from stdin if not specified')
- parser.add_option('--out', dest='outfilename', type='string',
+ parser.add_option('-o', '--output', dest='outfilename', type='string',
help='Output filename. Writes to stdout of not specified')
parser.add_option('--inform', dest='inform',