summaryrefslogtreecommitdiffstats
path: root/base/common/python/pki/cryptoutil.py
Commit message (Collapse)AuthorAgeFilesLines
* Renamed CryptoUtil to CryptoProvider.Endi S. Dewata2014-07-031-268/+0
| | | | | | | | The CryptoUtil classes in the Python client library has been renamed to CryptoProvider for consistency with the Java client library. The cryptoutil.py module has been renamed to crypto.py. Ticket #1042
* formatting fixes in python client code for pycharmAde Lee2014-05-291-48/+61
|
* Changes to KeyClient on the java side.Abhishek Koneru2014-03-191-1/+1
| | | | | The KeyClient class on the java side is modified to have a similar design as the KeyClient class on the python side.
* Get archival working for python key clientAde Lee2014-03-051-9/+24
|
* Fixes for coments from reviewAde Lee2014-02-261-8/+9
|
* Make generate_symmetric_key more generic.Ade Lee2014-02-261-4/+23
| | | | | | Added a method generate_session_key() which should be used when wrapping secrets for the drm. For now, this has to be a 168-bit 3DES symmetric key.
* Moved key functions out of kraclient.pyAde Lee2014-02-261-1/+6
|
* reame client_id to client_key_idAde Lee2014-02-261-0/+1
|
* Add methods to create nss certdb and import certAde Lee2014-02-261-7/+46
| | | | | Also changed arguments so that all args and returns from CryptoUtil are unencoded.
* Additional changes as per review.Ade Lee2014-02-191-0/+175
1. Moved most methods back into the key.py module. 2. Simplified the invocation by combining the KeyClient and KeyRequestClient as just KeyClient. 3. Added additional invocations in KRAClient - with lots of docuemntation. These are hopefully more user friendly. 4. Extracted crypto operations to cryptoutil class. This class has an NSS implementation provided. 5. Addressed other issues found in review.