• Home
Name Date Size #Lines LOC

..--

patches/03-May-2024-1613

src/03-May-2024-2,3431,139

tests/03-May-2024-2,6652,072

.cargo_vcs_info.jsonD03-May-2024103 66

Android.bpD03-May-20241.6 KiB5147

CHANGELOG.mdD03-May-2024867 2519

Cargo.tomlD03-May-20241.5 KiB7464

Cargo.toml.origD03-May-20241.1 KiB3933

LICENSED03-May-202410.6 KiB202169

LICENSE-APACHED03-May-202410.6 KiB202169

LICENSE-MITD03-May-20241.1 KiB2622

METADATAD03-May-2024695 2422

MODULE_LICENSE_APACHE2D03-May-20240

OWNERSD03-May-202447 21

README.mdD03-May-20241.8 KiB5437

cargo2android.jsonD03-May-2024152 109

README.md

1# [RustCrypto]: X.509 Certificates
2
3[![crate][crate-image]][crate-link]
4[![Docs][docs-image]][docs-link]
5[![Build Status][build-image]][build-link]
6![Apache2/MIT licensed][license-image]
7![Rust Version][rustc-image]
8[![Project Chat][chat-image]][chat-link]
9
10Pure Rust implementation of the X.509 Public Key Infrastructure Certificate
11format as described in [RFC 5280].
12
13[Documentation][docs-link]
14
15## Minimum Supported Rust Version
16
17This crate requires **Rust 1.57** at a minimum.
18
19We may change the MSRV in the future, but it will be accompanied by a minor
20version bump.
21
22## License
23
24Licensed under either of:
25
26- [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
27- [MIT license](http://opensource.org/licenses/MIT)
28
29at your option.
30
31### Contribution
32
33Unless you explicitly state otherwise, any contribution intentionally submitted
34for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
35dual licensed as above, without any additional terms or conditions.
36
37[//]: # (badges)
38
39[crate-image]: https://buildstats.info/crate/x509-cert
40[crate-link]: https://crates.io/crates/x509-cert
41[docs-image]: https://docs.rs/x509-cert/badge.svg
42[docs-link]: https://docs.rs/x509-cert/
43[build-image]: https://github.com/RustCrypto/formats/actions/workflows/x509-cert.yml/badge.svg
44[build-link]: https://github.com/RustCrypto/formats/actions/workflows/x509-cert.yml
45[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
46[rustc-image]: https://img.shields.io/badge/rustc-1.57+-blue.svg
47[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
48[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/300570-formats
49
50[//]: # (links)
51
52[RustCrypto]: https://github.com/rustcrypto
53[RFC 5280]: https://datatracker.ietf.org/doc/html/rfc5280
54