Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
patches/ | 25-Apr-2025 | - | 21 | 16 | ||
src/ | 25-Apr-2025 | - | 3,660 | 1,986 | ||
tests/ | 25-Apr-2025 | - | 3,485 | 2,784 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 8.4 KiB | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 1.9 KiB | 76 | 70 | |
CHANGELOG.md | D | 25-Apr-2025 | 5.4 KiB | 150 | 123 | |
Cargo.toml | D | 25-Apr-2025 | 2.2 KiB | 127 | 109 | |
LICENSE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 25-Apr-2025 | 1.1 KiB | 26 | 22 | |
METADATA | D | 25-Apr-2025 | 453 | 18 | 17 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 1.8 KiB | 54 | 37 | |
cargo_embargo.json | D | 25-Apr-2025 | 1 KiB | 48 | 47 | |
rules.mk | D | 25-Apr-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