| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Add Asn1IntegerRef::to_bn | Steven Fackler | 2018-03-28 | 3 | -6/+19 | |
| | | | | | | | | | Also deprecate Asn1IntegerRef since it's just asking for trouble. | |||||
| | * | Add X509Ref::serial_number | Steven Fackler | 2018-03-28 | 1 | -0/+13 | |
| |/ | ||||||
| * | Merge pull request #884 from sfackler/libressl-27 | Steven Fackler | 2018-03-24 | 4 | -35/+50 | |
| |\ | | | | | Support LibreSSL 2.7.0 | |||||
| | * | Support LibreSSL 2.7.0 | Steven Fackler | 2018-03-22 | 4 | -35/+50 | |
| |/ | | | | | Closes #883 Closes #805 | |||||
| * | Merge pull request #881 from sfackler/no-features-2 | Steven Fackler | 2018-03-19 | 2 | -11/+18 | |
| |\ | | | | | Remove a last couple features | |||||
| | * | Remove a last couple features | Steven Fackler | 2018-03-19 | 2 | -11/+18 | |
| |/ | ||||||
| * | Merge pull request #856 from Flakebi/master | Steven Fackler | 2018-03-19 | 3 | -1/+107 | |
| |\ | | | | | Make it possible to use cmac | |||||
| | * | Make it possible to use cmac | Flakebi | 2018-03-19 | 3 | -1/+107 | |
| | | | | | | | | | | | | | | | | | This adds Signer::new_without_digest to create Signers which don't have a digest (like cmac, which is based on aes). As openssl supports cmac since version 1.1.0, the functions are behind the ossl110 feature. This allows building CMAC/OMAC1 and the EAX AEAD on top of this library. | |||||
| * | | Merge pull request #879 from sfackler/no-features | Steven Fackler | 2018-03-19 | 11 | -171/+152 | |
| |\ \ | | | | | | | Remove version-specific features | |||||
| | * | | Remove version-specific features | Steven Fackler | 2018-03-19 | 11 | -171/+152 | |
| |/ / | | | | | | | Closes #852 | |||||
| * | | Merge pull request #875 from Ralith/hash-extras | Steven Fackler | 2018-03-16 | 6 | -0/+52 | |
| |\ \ | |/ |/| | Expose cipher digests and digest sizes | |||||
| | * | Expose additional cipher and digest accessors | Benjamin Saunders | 2018-03-16 | 6 | -0/+52 | |
| | | | ||||||
| * | | Merge pull request #874 from rohit-lshift/priv-key-from-num | Steven Fackler | 2018-03-13 | 1 | -0/+39 | |
| |\ \ | |/ |/| | Added a function to create a EcKey<Private> from its parts | |||||
| | * | Change function name to be similar to RSA one | Rohit Aggarwal | 2018-03-13 | 1 | -3/+3 | |
| | | | ||||||
| | * | Added a function to create a EC<Key> from its parts | Rohit Aggarwal | 2018-03-09 | 1 | -0/+39 | |
| | | | ||||||
| * | | Merge pull request #864 from mlen/aes-ccm-bindings | Steven Fackler | 2018-03-11 | 3 | -4/+181 | |
| |\ \ | | | | | | | Implement AES-{128,256}-CCM bindings | |||||
| | * | | fixup! Implement AES-{128,256}-CCM bindings | Mateusz Lenik | 2018-03-11 | 1 | -0/+40 | |
| | | | | ||||||
| | * | | fixup! Implement AES-{128,256}-CCM bindings | Mateusz Lenik | 2018-03-08 | 1 | -9/+9 | |
| | | | | ||||||
| | * | | Implement AES-{128,256}-CCM bindings | Mateusz Lenik | 2018-03-08 | 3 | -4/+141 | |
| | | | | ||||||
| * | | | Merge pull request #873 from sfackler/tweaks | Steven Fackler | 2018-03-11 | 2 | -38/+76 | |
| |\ \ \ | | | | | | | | | Add a Sync + Send bound to the custom ext type | |||||
| | * | | | Add a Sync + Send bound to the custom ext type | Steven Fackler | 2018-03-11 | 2 | -38/+76 | |
| | | | | | | | | | | | | | | | | | | | | | It's stored inside of the Ssl, so this is probably tecnically necessarly? | |||||
| * | | | | Merge pull request #872 from sfackler/tweaks | Steven Fackler | 2018-03-11 | 1 | -22/+27 | |
| |\ \ \ \ | |/ / / |/| | | | Some ECDSA fixes/tweaks | |||||
| | * | | | Some ECDSA fixes/tweaks | Steven Fackler | 2018-03-11 | 1 | -22/+27 | |
| | | | | | ||||||
| * | | | | Merge pull request #860 from Ralith/custom-extensions | Steven Fackler | 2018-03-11 | 8 | -3/+271 | |
| |\ \ \ \ | |/ / / |/| | | | Custom extensions | |||||
| | * | | | Merge branch 'master' into custom-extensions | Steven Fackler | 2018-03-11 | 16 | -43/+555 | |
| | |\ \ \ | |/ / / |/| | | | ||||||
| * | | | | Merge pull request #863 from rohit-lshift/master | Steven Fackler | 2018-03-11 | 6 | -0/+219 | |
| |\ \ \ \ | | | | | | | | | | | Exposed some of ECDSA functions | |||||
| | * | | | | Revert previous commit | Rohit Aggarwal | 2018-03-11 | 1 | -3/+5 | |
| | | | | | | ||||||
| | * | | | | Arguments should be BigNumRef and not BigNum | Rohit Aggarwal | 2018-03-10 | 1 | -5/+3 | |
| | | |_|/ | |/| | | ||||||
| | * | | | Remove unneeded paramter | Rohit Aggarwal | 2018-03-09 | 1 | -15/+12 | |
| | | | | | ||||||
| | * | | | Changes as per PR feedback | Rohit Aggarwal | 2018-03-08 | 1 | -9/+21 | |
| | | | | | ||||||
| | * | | | Get curves for OpenSSL tests itself | Rohit Aggarwal | 2018-03-08 | 1 | -1/+6 | |
| | | | | | ||||||
| | * | | | Try out another curve | Rohit Aggarwal | 2018-03-08 | 1 | -1/+1 | |
| | | | | | ||||||
| | * | | | Another try at using the correct curve | Rohit Aggarwal | 2018-03-08 | 1 | -8/+1 | |
| | | | | | ||||||
| | * | | | Use examples listed in OpenSSL docs for testing | Rohit Aggarwal | 2018-03-08 | 2 | -12/+22 | |
| | | | | | ||||||
| | * | | | Add support LibreSSL and remove OpenSSL binding which we aren't using | Rohit Aggarwal | 2018-03-08 | 4 | -39/+12 | |
| | | | | | ||||||
| | * | | | Exposed some of ECDSA functions | Rohit Aggarwal | 2018-03-08 | 4 | -0/+229 | |
| | | |/ | |/| | ||||||
| * | | | Merge pull request #871 from sfackler/tweaks | Steven Fackler | 2018-03-11 | 2 | -36/+40 | |
| |\ \ \ | | | | | | | | | Tweak verify_cert's signature | |||||
| | * | | | Tweak verify_cert's signature | Steven Fackler | 2018-03-11 | 2 | -36/+40 | |
| |/ / / | | | | | | | | | | | | | The call can fail either due to an invalid cert or an internal error, and we should distinguish between the two. | |||||
| * | | | Merge pull request #861 from bkchr/verify_certificate | Steven Fackler | 2018-03-11 | 3 | -1/+115 | |
| |\ \ \ | | | | | | | | | Implements `X509_verify_cert` | |||||
| | * | | | Changes `init` to take a closure which is called with the initialized context | Bastian Köcher | 2018-03-11 | 2 | -14/+28 | |
| | | | | | | | | | | | | | | | | | | | | | After calling the closure, we automatically cleanup the context. This is required, because otherwise we could have dangling references in the context. | |||||
| | * | | | Moves store context init into its own function | Bastian Köcher | 2018-03-10 | 2 | -13/+24 | |
| | | | | | ||||||
| | * | | | Extends the test to verify the certificate two times | Bastian Köcher | 2018-03-08 | 1 | -0/+2 | |
| | | | | | ||||||
| | * | | | Moves `cleanup` into its own function | Bastian Köcher | 2018-03-08 | 1 | -5/+14 | |
| | | | | | ||||||
| | * | | | Fixes the implementation of `X509StoreContextRef::verify_cert` | Bastian Köcher | 2018-03-07 | 2 | -34/+38 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | The certificate, the store and the certificates chain does not need to be consumed by `verify_cert` and instead are taken as references. We also call `X509_STORE_CTX_cleanup`, after the verification succeeded. | |||||
| | * | | | delay return until after forgets | Benjamin Fry | 2018-03-07 | 1 | -2/+4 | |
| | | | | | ||||||
| | * | | | cleanup and add negative test | Benjamin Fry | 2018-03-07 | 2 | -6/+23 | |
| | | | | | ||||||
| | * | | | add cleanup ffi to store context | Benjamin Fry | 2018-03-07 | 3 | -3/+8 | |
| | | | | | ||||||
| | * | | | restructure to self contained function | Benjamin Fry | 2018-03-07 | 2 | -8/+12 | |
| | | | | | ||||||
| | * | | | Little tweaks | Steven Fackler | 2018-03-07 | 1 | -4/+4 | |
| | | | | | ||||||
| | * | | | convert to raw pass-through methods | Benjamin Fry | 2018-03-07 | 2 | -7/+23 | |
| | | | | | ||||||