aboutsummaryrefslogtreecommitdiff
path: root/openssl
Commit message (Collapse)AuthorAgeFilesLines
...
* Add new EC/PKEY methods to permit deriving shared secrets.Andrew Osmond2017-04-102-7/+69
|
* Don't exclude test data from packageSteven Fackler2017-04-041-1/+0
| | | | Closes #612
* bump bitflags to 0.8Igor Gnatenko2017-04-031-1/+1
|
* Release v0.9.10v0.9.10Steven Fackler2017-03-262-4/+4
|
* Merge pull request #606 from cjcole/masterSteven Fackler2017-03-261-2/+20
|\ | | | | Fix order of arguments to BN_rand_range and BN_pseudo_rand_range
| * Fix order of arguments to BN_rand_range and BN_pseudo_rand_rangeChris Cole2017-03-251-2/+20
| |
* | Logic to support client-side session reuseSteven Fackler2017-03-252-7/+105
|/
* Release v0.9.9v0.9.9Steven Fackler2017-03-142-4/+4
|
* Release v0.9.8v0.9.8Steven Fackler2017-03-092-4/+4
|
* Merge pull request #592 from Byron/masterSteven Fackler2017-03-093-1/+19
|\ | | | | Fix for len() == isize::max() for stacks that are unallocated
| * Don't allow Stacks to be allocated with a null-ptrSebastian Thiel2017-03-072-13/+11
| | | | | | | | | | | | | | | | | | | | The latter must be seen as undefined behaviour, as it will cause the `sk_num` function to return -1 to indicate the error, which causes all kinds of issues. Thus there now is a panic to abort the program if stacks are initialized with a null-ptr, and special handling of that case when decoding a Pkcs file.
| * Fix for empty stacksSebastian Thiel2017-03-061-2/+11
| | | | | | | | | | | | | | | | | | | | The culprit is that `sk_num(stack)` can return -1 as c_int if there is no stack allocated. Previously, thanks to unsafe casts, this would result in a isize::max() for len() and iteration size if there was no stack. Now this case is handled specifically, which fixes the issue.
| * Add test to run into issue with stack.len()Sebastian Thiel2017-03-062-0/+11
| |
* | Merge pull request #585 from bluejekyll/masterSteven Fackler2017-03-071-0/+17
|\ \ | |/ |/| some helpful documentation and example on set_subject_name()
| * mention the common fieldsBenjamin Fry2017-02-221-1/+1
| |
| * some helpful documentation and example.Benjamin Fry2017-02-201-0/+17
| |
* | Fix Shr trait impl for BigNum: was using shlChris Cole2017-03-011-2/+10
| |
* | scrypt supportSteven Fackler2017-02-211-6/+56
|/ | | | Closes #586
* Expose more error informationSteven Fackler2017-02-191-17/+79
|
* Add a fixme to drop const prefixesSteven Fackler2017-02-191-0/+1
|
* TweaksSteven Fackler2017-02-181-4/+3
|
* add Ok to resultBenjamin Fry2017-02-161-1/+1
|
* only forget in non-error conditionBenjamin Fry2017-02-161-1/+1
|
* review fixes: reorder forget()Benjamin Fry2017-02-161-2/+6
|
* fix cfg options for v102 and v110Benjamin Fry2017-02-161-2/+2
|
* add set_verify_cert_store() to ssl ctxBenjamin Fry2017-02-162-0/+38
|
* Support PKCS#8 private key deserializationSteven Fackler2017-02-142-1/+62
| | | | Closes #581
* Release v0.9.7v0.9.7Steven Fackler2017-02-112-4/+4
|
* Update deprecation versionSteven Fackler2017-02-112-18/+18
|
* Use published foreign_typesSteven Fackler2017-02-111-1/+1
|
* Remove X509Req settersSteven Fackler2017-02-111-13/+0
|
* Merge remote-tracking branch 'origin/master' into x509-builderSteven Fackler2017-02-1138-755/+3597
|\
| * Re-add reexportSteven Fackler2017-02-111-0/+1
| |
| * Merge branch 'master' into x509_req_version_subjectSteven Fackler2017-02-113-14/+136
| |\
| | * X509 signature algorithm accessSteven Fackler2017-02-103-9/+77
| | |
| | * X509 signature accessSteven Fackler2017-02-102-5/+42
| | |
| | * Add Asn1BitStringSteven Fackler2017-02-101-0/+18
| | |
| * | Make it compile again.mredlek2017-02-072-2/+9
| | | | | | | | | | | | | | | Make self mut in set_subject_name. Add assert to prevent a null pointer in subject_name.
| * | Merge branch 'master' into x509_req_version_subjectmredlek2017-02-0721-162/+360
| |\|
| | * Switch to foreign_typesSteven Fackler2017-02-0321-150/+272
| | |
| | * Fixed constant names from openssl/rsa.hBrian Chin2017-01-312-1/+9
| | | | | | | | | | | | | | | | | | Fixed PKeyCtxRef method that didn't need to be mutable. Added non-mutable accessors for PKeyCtxRef for Signer and Verifier.
| | * Adding suggestions from review.Brian Chin2017-01-303-38/+33
| | |
| | * Fixing typoBrian Chin2017-01-301-1/+1
| | |
| | * Small amount of docs.Brian Chin2017-01-301-0/+1
| | |
| | * Simplify protocol based on the semantics defined by openssl.Brian Chin2017-01-301-7/+12
| | |
| | * Simplify code, so that openssl-sys really doesn't contain anything asideBrian Chin2017-01-302-15/+52
| | | | | | | | | | | | from bindings
| | * Testing first version that works with signer.Brian Chin2017-01-303-6/+36
| | |
| * | Add setters to new getter-functions in X509ReqRefmredlek2017-01-271-0/+13
| | |
| * | Style changes according to reviewmredlek2017-01-272-11/+5
| | |
| * | Added X509ReqRef.subject_name and X509ReqRef.versionmredlek2017-01-263-2/+56
| |/