Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 04-Jul-2025 | - | 4,398 | 2,572 | ||
tests/ | 04-Jul-2025 | - | 3,481 | 2,783 | ||
.android-checksum.json | D | 04-Jul-2025 | 8.9 KiB | 1 | 1 | |
.cargo-checksum.json | D | 04-Jul-2025 | 8.5 KiB | 1 | 1 | |
Android.bp | D | 04-Jul-2025 | 2 KiB | 80 | 74 | |
CHANGELOG.md | D | 04-Jul-2025 | 5.8 KiB | 163 | 132 | |
Cargo.toml | D | 04-Jul-2025 | 2.3 KiB | 135 | 116 | |
LICENSE | D | 04-Jul-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 04-Jul-2025 | 10.6 KiB | 202 | 169 | |
METADATA | D | 04-Jul-2025 | 451 | 18 | 17 | |
MODULE_LICENSE_APACHE2 | D | 04-Jul-2025 | 0 | |||
README.md | D | 04-Jul-2025 | 1.8 KiB | 54 | 37 | |
cargo_embargo.json | D | 04-Jul-2025 | 1.2 KiB | 50 | 50 | |
rules.mk | D | 04-Jul-2025 | 693 | 22 | 15 |
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