Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-01 | Remove remaining uses of extern crate in openssl, systest | Jonas Platte | |
2021-01-01 | Rename the openssl_sys crate through Cargo.toml | Jonas Platte | |
2021-01-01 | Use crate in imports in the openssl crate | Jonas Platte | |
This was mostly automated using `cargo fix --edition`, except imports of openssl_sys (renamed to ffi) were converted to crate::ffi, which was reverted. The same thing is not done for the openssl-sys crate because this breaks ctest (used in systest to verify the -sys crate), see https://github.com/gnzlbg/ctest/issues/70 | |||
2020-06-15 | sign.rs: fix typo in comment | Florian Klink | |
2020-05-24 | Run clippy | Steven Fackler | |
2020-05-24 | Run rustfmt on github actions | Steven Fackler | |
2020-02-04 | Fix mutability of oneshot sign/verify methods | Steven Fackler | |
2020-02-03 | Fix visibility of Signer::new_intern | Steven Fackler | |
2019-11-14 | Format code using 'cargo fmt' | Atul Bhosale | |
2019-09-08 | Ensure Signer::len has documentation | Sebastian Sturm | |
Applied conditional compilation to internal helpers | |||
2019-08-16 | Added support for Ed25519 and Ed448 signatures | Sebastian Sturm | |
2019-02-22 | Rustfmt | Steven Fackler | |
2018-05-20 | Overhaul openssl cfgs | Steven Fackler | |
Also expose hostname verification on libressl | |||
2018-03-19 | Remove a last couple features | Steven Fackler | |
2018-03-19 | Make it possible to use cmac | Flakebi | |
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. | |||
2018-03-10 | Merge pull request #862 from bkchr/sign_verifier | Steven Fackler | |
Adds new functions for Verifier/Signer | |||
2018-03-09 | Impl Sync and Send for various types | Steven Fackler | |
Closes #865 | |||
2018-03-10 | Switches to new type wrapper for RsaPssSaltlen | Bastian Köcher | |
2018-03-08 | Adds `RsaPssSaltlen` enum to encode the special values | Bastian Köcher | |
2018-03-07 | Adds more functions to `Verifier`/`Signer` for RSA keys | Bastian Köcher | |
2018-01-06 | Rename key serialization/deserialization methods | Steven Fackler | |
Also document their specific formats. Closes #502 | |||
2018-01-01 | Bump hex to 0.3 | Bastien Orivel | |
The `to_hex` method has been removed and `hex::encode` should be used instead. | |||
2017-12-30 | Parameterize keys over what they contain | Steven Fackler | |
Closes #790 | |||
2017-12-25 | Remove deprecated APIs | Steven Fackler | |
2017-12-25 | Move to associated consts | Steven Fackler | |
2017-12-25 | Upgrade bitflags to 1.0 | Steven Fackler | |
Closes #756 | |||
2017-12-03 | Impl deref for acceptor/connector builders | Steven Fackler | |
2017-12-03 | Documentation for the `sign` module. | Steven Fackler | |
Closes #720 | |||
2017-12-03 | Rename Signer::finish to sign_to_vec | Steven Fackler | |
2017-12-03 | Clean up tests | Steven Fackler | |
2017-12-03 | Simplifying finish_into | pe@pijul.org | |
2017-12-03 | Splitting the sign::Signer::finish function, to avoid allocations | pe@pijul.org | |
2017-10-03 | Convert try! usage to ? | johnthagen | |
2017-07-15 | Rustfmt | Steven Fackler | |
2017-02-03 | Switch to foreign_types | Steven Fackler | |
2017-01-31 | Fixed constant names from openssl/rsa.h | Brian Chin | |
Fixed PKeyCtxRef method that didn't need to be mutable. Added non-mutable accessors for PKeyCtxRef for Signer and Verifier. | |||
2017-01-30 | Adding suggestions from review. | Brian Chin | |
2017-01-30 | Simplify protocol based on the semantics defined by openssl. | Brian Chin | |
2017-01-30 | Simplify code, so that openssl-sys really doesn't contain anything aside | Brian Chin | |
from bindings | |||
2017-01-30 | Testing first version that works with signer. | Brian Chin | |
2016-12-31 | Indicate that memcmp::eq should be used for HMACs | Steven Fackler | |
2016-11-15 | Test elliptic curve signatures | Steven Fackler | |
2016-11-09 | Drop rustc-serialize dependency | Steven Fackler | |
2016-11-04 | Get rid of Ref | Steven Fackler | |
There's unfortunately a rustdoc bug that causes all methods implemented for any Ref<T> to be inlined in the deref methods section :( | |||
2016-10-31 | Update verify | Steven Fackler | |
2016-10-30 | Rustfmt | Steven Fackler | |
2016-10-22 | Fix tests | Steven Fackler | |
2016-10-22 | Camel case Rsa | Steven Fackler | |
2016-10-22 | Camel case Dsa | Steven Fackler | |
2016-10-22 | Flatten crypto module | Steven Fackler | |