aboutsummaryrefslogtreecommitdiffstats
path: root/vectors/cryptography_vectors/asymmetric/PEM_Serialization
Commit message (Collapse)AuthorAgeFilesLines
* Remove the EC PARAMETERS section from the PEMAlex Gaynor2014-10-081-3/+0
|
* Added missing newline, corrected changesmichael-hart2014-09-261-1/+1
|
* Part 1 of rebase, with corrections for pep8michael-hart2014-09-261-2/+2
|
* Added missing vector filemichael-hart2014-09-261-0/+4
|
* Test Vector changesmichael-hart2014-09-236-1/+105
| | | | | | | 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
* Changed EC curve type and add test markersMichael2014-09-123-9/+9
| | | | | | Changed the Elliptic Curve curve type from secp256k1 to secp256r1, as this is supported, in an attempt to pass tests on CentOS 7; also added markers and methods to skip test functions for systems that do not support ECC.
* Implemented support for loading EC private keysunknown2014-09-113-0/+23
Loads Elliptic Curve private keys from .PEM files, whether encrypted or unencrypted, given that the encryption method is supported. Also included changes to the test files and documentation for said method.