summaryrefslogtreecommitdiff
path: root/rsa/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/cli.py')
-rw-r--r--rsa/cli.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/rsa/cli.py b/rsa/cli.py
index 60bc07c..b227a56 100644
--- a/rsa/cli.py
+++ b/rsa/cli.py
@@ -37,7 +37,7 @@ def keygen() -> None:
# Parse the CLI options
parser = optparse.OptionParser(usage='usage: %prog [options] keysize',
- description='Generates a new RSA keypair of "keysize" bits.')
+ description='Generates a new RSA keypair of "keysize" bits.')
parser.add_option('--pubout', type='string',
help='Output filename for the public key. The public key is '
@@ -203,7 +203,7 @@ class EncryptOperation(CryptoOperation):
operation_progressive = 'encrypting'
def perform_operation(self, indata: bytes, pub_key: rsa.key.AbstractKey,
- cli_args: Indexable=()):
+ cli_args: Indexable = ()):
"""Encrypts files."""
assert isinstance(pub_key, rsa.key.PublicKey)
return rsa.encrypt(indata, pub_key)
@@ -221,7 +221,7 @@ class DecryptOperation(CryptoOperation):
key_class = rsa.PrivateKey
def perform_operation(self, indata: bytes, priv_key: rsa.key.AbstractKey,
- cli_args: Indexable=()):
+ cli_args: Indexable = ()):
"""Decrypts files."""
assert isinstance(priv_key, rsa.key.PrivateKey)
return rsa.decrypt(indata, priv_key)
@@ -244,7 +244,7 @@ class SignOperation(CryptoOperation):
'to stdout if this option is not present.')
def perform_operation(self, indata: bytes, priv_key: rsa.key.AbstractKey,
- cli_args: Indexable):
+ cli_args: Indexable):
"""Signs files."""
assert isinstance(priv_key, rsa.key.PrivateKey)
@@ -271,7 +271,7 @@ class VerifyOperation(CryptoOperation):
has_output = False
def perform_operation(self, indata: bytes, pub_key: rsa.key.AbstractKey,
- cli_args: Indexable):
+ cli_args: Indexable):
"""Verifies files."""
assert isinstance(pub_key, rsa.key.PublicKey)