diff -r 866adc8c315b -r 0acf98cd089a eric6/Utilities/crypto/__init__.py --- a/eric6/Utilities/crypto/__init__.py Sun Jan 17 13:53:08 2021 +0100 +++ b/eric6/Utilities/crypto/__init__.py Mon Feb 01 10:38:16 2021 +0100 @@ -266,9 +266,9 @@ @param data data to encrypt (bytes) @param password password to be used for encryption (string) - @keyparam keyLength length of the key to be generated for encryption + @param keyLength length of the key to be generated for encryption (16, 24 or 32) - @keyparam hashIterations number of hashes to be applied to the password for + @param hashIterations number of hashes to be applied to the password for generating the encryption key (integer) @return encrypted data (bytes) and flag indicating success (boolean) @@ -297,7 +297,7 @@ @param edata hashed data to decrypt (string) @param password password to be used for decryption (string) - @keyparam keyLength length of the key to be generated for decryption + @param keyLength length of the key to be generated for decryption (16, 24 or 32) @return decrypted data (bytes) and flag indicating success (boolean)