aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* reorganize a bunch of things related to the x509certificate interfacePaul Kehrer2014-12-156-63/+104
|
* move mem_bio creation/reading to backendPaul Kehrer2014-12-152-18/+24
|
* change it to not_valid_* why notPaul Kehrer2014-12-154-20/+24
|
* improve phrasing on X509Certificate fingerprint method paramPaul Kehrer2014-12-151-2/+2
|
* move x509 to the top of our docsPaul Kehrer2014-12-151-1/+1
|
* refactor a test function to avoid string typingPaul Kehrer2014-12-151-18/+13
|
* learn to bytesPaul Kehrer2014-12-151-1/+1
|
* test x509 fingerprintPaul Kehrer2014-12-151-1/+4
|
* py3 fixesPaul Kehrer2014-12-152-49/+62
|
* address review feedbackPaul Kehrer2014-12-156-17/+15
|
* clean up x509 tests & add DSA/ECDSA testsPaul Kehrer2014-12-151-15/+57
|
* improve tests, remove some outdated commentsPaul Kehrer2014-12-152-10/+19
|
* improve x509 load error handlingPaul Kehrer2014-12-152-2/+16
|
* add x509v1 testPaul Kehrer2014-12-151-0/+9
|
* update docs, test invalid x509 versionPaul Kehrer2014-12-157-4/+29
|
* move x509 to top level, add more docsPaul Kehrer2014-12-156-6/+208
|
* initial x509 version supportPaul Kehrer2014-12-152-1/+12
| | | | Adds enum34 as a dependency
* initial x509 openssl implementationPaul Kehrer2014-12-153-1/+120
|
* Merge pull request #1527 from alex/pr/1517Paul Kehrer2014-12-156-6/+244
|\ | | | | Added SSH public key loading
| * Added two more tests to get coverage back upAlex Gaynor2014-12-151-1/+17
| |
| * two flake8 fixesAlex Gaynor2014-12-151-2/+0
| |
| * A handful of tiny fixesAlex Gaynor2014-12-155-59/+77
| |
| * Added optimization for Python 3 to use int.from_bytes instead of Python codeMark Adams2014-12-141-1/+7
| |
| * Made a couple of minor tweaks to clean up _read_next_string and _read_next_mpintMark Adams2014-12-141-3/+1
| |
| * Added better parsing for RFC 4251 string and mpint values.Mark Adams2014-12-142-22/+85
| | | | | | | | | | Also moved several of the SSH key splitting and validation checks up into the load_ssh_public_key method since they will apply to more than just RSA. Added additional checks to make sure the key doesn't contain extraneous data
| * Removed redundant tests for _load_ssh_rsa_public_key since it is now a ↵Mark Adams2014-12-132-69/+25
| | | | | | | | non-public part of the API and made a number of minor changes to tests and documentation
| * Minor documentation corrections for load_ssh_public_keyMark Adams2014-12-132-3/+4
| |
| * Standardized the assignment statement for str_key in TestSSHSerialization.Mark Adams2014-12-131-16/+16
| |
| * Privatized the load_ssh_rsa_public_key function and fixed some coverage ↵Mark Adams2014-12-134-66/+44
| | | | | | | | issues on test_serialization.
| * Added load_ssh_rsa_public_key to hazmat.primitives.serialization to allow ↵Mark Adams2014-12-135-3/+207
| | | | | | | | | | | | for loading of OpenSSH RSA public keys Also added load_ssh_public_key as a generic method that can be later extended to support more public key algorithms.
* | Merge pull request #1525 from alex/style-fixPaul Kehrer2014-12-144-17/+17
|\ \ | | | | | | A handful of style fixes for the bindings
| * | A few more style fixesAlex Gaynor2014-12-133-9/+9
| | |
| * | Fixed a few other places as wellAlex Gaynor2014-12-133-8/+8
| | |
| * | Fixed the bio bindings to match our style guideAlex Gaynor2014-12-131-1/+1
| | |
* | | Merge pull request #1526 from Ayrx/move-pytest-iniAlex Gaynor2014-12-142-5/+6
|\ \ \ | |/ / |/| | Move config in pytest.ini to tox.ini.
| * | Move config in pytest.ini to tox.ini.Terry Chia2014-12-142-5/+6
|/ /
* | Merge pull request #1498 from reaperhulk/x509-more-vectorsAlex Stapleton2014-12-137-21/+160
|\ \ | |/ |/| add several new x509 test vectors
| * rename DSA test vector certificate to be more clearPaul Kehrer2014-12-122-1/+2
| |
| * add ECDSA certificate that does not have a named curve OIDPaul Kehrer2014-12-122-0/+18
| |
| * add several new x509 test vectorsPaul Kehrer2014-11-266-21/+141
| |
* | Merge pull request #1519 from alex/class-namingPaul Kehrer2014-12-122-0/+4
|\ \ | | | | | | Fixes #1518 -- document the captilazation of lcass names
| * | this is a wordAlex Gaynor2014-12-121-0/+1
| | |
| * | Fixes #1518 -- document the captilazation of lcass namesAlex Gaynor2014-12-121-0/+3
| | |
* | | Merge pull request #1520 from alex/https-all-the-thingsPaul Kehrer2014-12-128-10/+10
|\ \ \ | | | | | | | | Use HTTPS for a number of URLs in the docs
| * | | Use HTTPS for a number of URLs in the docsAlex Gaynor2014-12-128-10/+10
| |/ /
* | | Merge pull request #1516 from exarkun/SSL_CTX_check_private_keyPaul Kehrer2014-12-111-0/+2
|\ \ \ | | | | | | | | Bind it.
| * | | Bind it.Jean-Paul Calderone2014-12-111-0/+2
|/ / /
* | | Merge pull request #1514 from reaperhulk/ne-eq-funAlex Stapleton2014-12-116-1/+237
|\ \ \ | |/ / |/| | add __ne__ and __eq__ methods to RSA, DSA, and EC numbers classes
| * | add NotImplemented handlingPaul Kehrer2014-12-106-0/+28
| | |
| * | add __ne__ and __eq__ methods to RSA, DSA, and EC numbers classesPaul Kehrer2014-12-106-1/+209
|/ / | | | | | | fixes #1449