diff options
Diffstat (limited to 'pskc')
-rw-r--r-- | pskc/encryption.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pskc/encryption.py b/pskc/encryption.py index 4ca2042..16cc565 100644 --- a/pskc/encryption.py +++ b/pskc/encryption.py @@ -320,7 +320,7 @@ class Encryption(object): self.pskc.mac.setup() def setup_preshared_key(self, **kwargs): - """Configure pre-shared key encryption. + """Configure pre-shared key encryption when writing the file. The following arguments may be supplied: key: the encryption key to use @@ -342,7 +342,7 @@ class Encryption(object): 'key_length', self.algorithm_key_lengths[-1])) def setup_pbkdf2(self, password, **kwargs): - """Configure password-based PSKC encryption. + """Configure password-based PSKC encryption when writing the file. The following arguments may be supplied: password: the password to use (required) |