• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

patches/25-Apr-2025-2116

src/25-Apr-2025-3,6601,986

tests/25-Apr-2025-3,4852,784

.cargo-checksum.jsonD25-Apr-20258.4 KiB11

Android.bpD25-Apr-20251.9 KiB7670

CHANGELOG.mdD25-Apr-20255.4 KiB150123

Cargo.tomlD25-Apr-20252.2 KiB127109

LICENSED25-Apr-202510.6 KiB202169

LICENSE-APACHED25-Apr-202510.6 KiB202169

LICENSE-MITD25-Apr-20251.1 KiB2622

METADATAD25-Apr-2025453 1817

MODULE_LICENSE_APACHE2D25-Apr-20250

README.mdD25-Apr-20251.8 KiB5437

cargo_embargo.jsonD25-Apr-20251 KiB4847

rules.mkD25-Apr-2025693 2215

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.65** 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.65+-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