Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pskc/crypto/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Replace pycrypto with cryptographyArthur de Jong2017-10-091-18/+1
| | | | | | | | | The cryptography library is better supported. This uses the functions from cryptography for AES and Triple DES encryption, replaces the (un)padding functions that were previously implemented in python-pskc with cryptography and uses PBKDF2 implementation from hashlib.
* Add sanity checks to unpaddingArthur de Jong2016-12-201-2/+8
|
* Move padding functions to crypto packageArthur de Jong2016-04-051-0/+32
|
* Move encryption functions in pskc.crypto packageArthur de Jong2014-10-091-0/+0
This moves the encryption functions under the pskc.crypto package to more clearly separate it from the other code. Ideally this should be replaced by third-party library code.