aboutsummaryrefslogtreecommitdiffstats
path: root/vectors/cryptography_vectors/asymmetric/PKCS8
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade the encryption algorithm on another thing. This uses the same PBES2 ↵Alex Gaynor2014-11-181-38/+16
| | | | | | parameters as the previous one. If someone has a choice for a 2nd algorithm, I'm happy to do that. See previous PR for ideas about how to review
* Re-encrypts one of our vectors from a truly atrocious algorithm (single DES, ↵Alex Gaynor2014-11-171-4/+5
| | | | | | MD5) to a PBES#2 based one (PBKDF2HMAC + AES) Refs #1390
* Test Vector changesmichael-hart2014-09-235-0/+18
| | | | | | | Changed names of existing vectors to be more instructive about what the key contains, and adapted tests to compensate, which pass. Added public keys for all encryption types and two new private keys for PEM serialization, documented in the README.txt in the same folder
* Added PKCS8 encoded private keys to testsMichael Hart2014-09-122-0/+11
| | | | | | | Generated two files with the same private key as PEM_Serialization's ec_private_key.pem, one unencrypted and one encrypted with "123456". Also changed existing PEMSerialization unit tests to take parameters so that tests can be extended easily.
* Add PKCS8 key with bad encryption OIDAlex Stapleton2014-05-271-0/+17
| | | | This is encpkcs8.pem with the base64 OID replaced with Ys
* Add PKCS#8 key with unknown OIDAlex Stapleton2014-05-271-0/+9
| | | | This is unenc-dsa-pkcs8.pem with the base64 OID replaced with X's
* Unencrypted 1024-bit DSA key in PKCS#8Alex Stapleton2014-05-271-0/+9
| | | | Generated by myself.
* Move cryptography.vectors to cryptography_vectorsAlex Stapleton2014-03-2418-0/+367
All vectors are now stored in the subpackage in the vectors/ folder. This package is automatically installed by setup.py test and will also be uploaded with a matching version number by the PyPI upload task.