summaryrefslogtreecommitdiff
path: root/openssl/src/x509/store.rs
AgeCommit message (Collapse)Author
2021-01-01Remove remaining uses of extern crate in openssl, systestJonas Platte
2021-01-01Remove needless `fn main() {}` from doctestsJonas Platte
2021-01-01Remove extern crate declarations from doctestsJonas Platte
2021-01-01Rename the openssl_sys crate through Cargo.tomlJonas Platte
2021-01-01Use crate in imports in the openssl crateJonas 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-11-29remove 'as of 1.0.0' commentmxheller
2020-11-29rename AddDir to HashDirmxheller
2020-11-17enforce proper usage of X509Lookup::add_dirmxheller
2020-11-17static lookup method lifetimemxheller
2020-11-17stop rust from complaining about unused variableMax Heller
2020-11-17lookup safe APIMax Heller
2020-03-24Update openssl/src/x509/store.rsSteven Fackler
2020-03-24Add a shim for X509_STORE_get0_objects and X509_OBJECT_freeNoah
2020-03-22Add a way to get the certificates stored in an X509StoreNoah
2018-05-29Add SslRef::verified_chainSteven Fackler
2018-02-12Don't leak X509sSteven Fackler
2018-01-01Fix x509 doc examplesAnsley Peduru
2017-12-31Add documentation for x509 moduleAnsley Peduru
2017-07-15RustfmtSteven Fackler
2017-02-03Switch to foreign_typesSteven Fackler
2017-01-14OCSP functionalitySteven Fackler
2016-11-12Add basic X509_STORE accessSteven Fackler
There's more to do here, but this enabled addition of trusted CAs from X509 objects. Closes #394