| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Release v0.9.14v0.9.14 | Steven Fackler | 2017-06-14 | 1 | -1/+1 | |
| | | | ||||||
| * | | Properly reexport ConnectConfiguration | Steven Fackler | 2017-06-14 | 1 | -1/+2 | |
| | | | ||||||
| * | | Fix documentation typo | Hasan | 2017-06-10 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix for changes in OpenSSL 1.1.0f | Steven Fackler | 2017-06-06 | 1 | -34/+2 | |
| | | | ||||||
| * | | Little docs fix | Steven Fackler | 2017-05-29 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add a fixme | Steven Fackler | 2017-05-29 | 1 | -64/+68 | |
| | | | ||||||
| * | | Release v0.9.13v0.9.13 | Steven Fackler | 2017-05-29 | 1 | -1/+1 | |
| | | | ||||||
| * | | Update bitflags 0.8 -> 0.9 | golem131 | 2017-05-22 | 3 | -61/+61 | |
| |/ | ||||||
| * | Release v0.9.12v0.9.12 | Steven Fackler | 2017-05-12 | 1 | -1/+1 | |
| | | ||||||
| * | Support public key decode from DER | Steven Fackler | 2017-05-06 | 1 | -0/+7 | |
| | | | | | Closes #629 | |||||
| * | Add a note to rename variant | Steven Fackler | 2017-05-06 | 1 | -0/+1 | |
| | | ||||||
| * | Clarify use of ssl::HandshakeError::Interrupted | jethrogb | 2017-05-03 | 1 | -1/+1 | |
| | | ||||||
| * | Expose the lower level SHA functions | Steven Fackler | 2017-04-14 | 2 | -0/+108 | |
| | | | | | | These don't allocate so they're both infallible and significantly faster. | |||||
| * | Release v0.9.11v0.9.11 | Steven Fackler | 2017-04-14 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #616 from sfackler/no-alloc | Steven Fackler | 2017-04-13 | 2 | -22/+86 | |
| |\ | | | | | Don't force allocation for message digests | |||||
| | * | Don't force allocation for message digests | Steven Fackler | 2017-04-13 | 2 | -22/+86 | |
| | | | ||||||
| * | | (issues-600) Avoid compiling ec2m code against no-ec2m openssl | Andrew Roetker | 2017-04-11 | 1 | -0/+1 | |
| |/ | | | | | This commit avoids defining code that leads to undefined references when compiling against an openssl built with no-ec2m. | |||||
| * | Add new EC/PKEY methods to permit deriving shared secrets. | Andrew Osmond | 2017-04-10 | 2 | -7/+69 | |
| | | ||||||
| * | Release v0.9.10v0.9.10 | Steven Fackler | 2017-03-26 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #606 from cjcole/master | Steven Fackler | 2017-03-26 | 1 | -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_range | Chris Cole | 2017-03-25 | 1 | -2/+20 | |
| | | | ||||||
| * | | Logic to support client-side session reuse | Steven Fackler | 2017-03-25 | 2 | -7/+105 | |
| |/ | ||||||
| * | Release v0.9.9v0.9.9 | Steven Fackler | 2017-03-14 | 1 | -1/+1 | |
| | | ||||||
| * | Release v0.9.8v0.9.8 | Steven Fackler | 2017-03-09 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #592 from Byron/master | Steven Fackler | 2017-03-09 | 2 | -1/+19 | |
| |\ | | | | | Fix for len() == isize::max() for stacks that are unallocated | |||||
| | * | Don't allow Stacks to be allocated with a null-ptr | Sebastian Thiel | 2017-03-07 | 2 | -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 stacks | Sebastian Thiel | 2017-03-06 | 1 | -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 Thiel | 2017-03-06 | 1 | -0/+11 | |
| | | | ||||||
| * | | Merge pull request #585 from bluejekyll/master | Steven Fackler | 2017-03-07 | 1 | -0/+17 | |
| |\ \ | |/ |/| | some helpful documentation and example on set_subject_name() | |||||
| | * | mention the common fields | Benjamin Fry | 2017-02-22 | 1 | -1/+1 | |
| | | | ||||||
| | * | some helpful documentation and example. | Benjamin Fry | 2017-02-20 | 1 | -0/+17 | |
| | | | ||||||
| * | | Fix Shr trait impl for BigNum: was using shl | Chris Cole | 2017-03-01 | 1 | -2/+10 | |
| | | | ||||||
| * | | scrypt support | Steven Fackler | 2017-02-21 | 1 | -6/+56 | |
| |/ | | | | Closes #586 | |||||
| * | Expose more error information | Steven Fackler | 2017-02-19 | 1 | -17/+79 | |
| | | ||||||
| * | Add a fixme to drop const prefixes | Steven Fackler | 2017-02-19 | 1 | -0/+1 | |
| | | ||||||
| * | Tweaks | Steven Fackler | 2017-02-18 | 1 | -4/+3 | |
| | | ||||||
| * | add Ok to result | Benjamin Fry | 2017-02-16 | 1 | -1/+1 | |
| | | ||||||
| * | only forget in non-error condition | Benjamin Fry | 2017-02-16 | 1 | -1/+1 | |
| | | ||||||
| * | review fixes: reorder forget() | Benjamin Fry | 2017-02-16 | 1 | -2/+6 | |
| | | ||||||
| * | fix cfg options for v102 and v110 | Benjamin Fry | 2017-02-16 | 1 | -2/+2 | |
| | | ||||||
| * | add set_verify_cert_store() to ssl ctx | Benjamin Fry | 2017-02-16 | 2 | -0/+38 | |
| | | ||||||
| * | Support PKCS#8 private key deserialization | Steven Fackler | 2017-02-14 | 1 | -1/+62 | |
| | | | | | Closes #581 | |||||
| * | Release v0.9.7v0.9.7 | Steven Fackler | 2017-02-11 | 1 | -1/+1 | |
| | | ||||||
| * | Update deprecation version | Steven Fackler | 2017-02-11 | 2 | -18/+18 | |
| | | ||||||
| * | Remove X509Req setters | Steven Fackler | 2017-02-11 | 1 | -13/+0 | |
| | | ||||||
| * | Merge remote-tracking branch 'origin/master' into x509-builder | Steven Fackler | 2017-02-11 | 33 | -728/+3506 | |
| |\ | ||||||
| | * | Re-add reexport | Steven Fackler | 2017-02-11 | 1 | -0/+1 | |
| | | | ||||||
| | * | Merge branch 'master' into x509_req_version_subject | Steven Fackler | 2017-02-11 | 3 | -14/+136 | |
| | |\ | ||||||
| | | * | X509 signature algorithm access | Steven Fackler | 2017-02-10 | 3 | -9/+77 | |
| | | | | ||||||
| | | * | X509 signature access | Steven Fackler | 2017-02-10 | 2 | -5/+42 | |
| | | | | ||||||