• Home
Name Date Size #Lines LOC

..--

patches/06-Sep-2024-3429

src/06-Sep-2024-1,319914

tests/06-Sep-2024-151110

.cargo_vcs_info.jsonD06-Sep-202498 66

Android.bpD06-Sep-20242.7 KiB10497

CHANGELOG.mdD06-Sep-20242.8 KiB9370

Cargo.tomlD06-Sep-20242.2 KiB121108

Cargo.toml.origD06-Sep-20241.5 KiB4539

LICENSED06-Sep-202410.6 KiB202169

LICENSE-APACHED06-Sep-202410.6 KiB202169

LICENSE-MITD06-Sep-20241.1 KiB2622

METADATAD06-Sep-2024805 2119

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-202445 21

README.mdD06-Sep-20242 KiB5941

cargo2android_viz.bpD06-Sep-2024115 54

cargo2rulesmk.jsonD06-Sep-202472 54

cargo_embargo.jsonD06-Sep-2024709 3837

rules.mkD06-Sep-2024584 2316

README.md

1# [RustCrypto]: SEC1 Elliptic Curve Cryptography Formats
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
10[Documentation][docs-link]
11
12## About
13
14Pure Rust implementation of [SEC1: Elliptic Curve Cryptography] encoding
15formats including ASN.1 DER-serialized private keys (also described in
16[RFC5915]) as well as the `Elliptic-Curve-Point-to-Octet-String` and
17`Octet-String-to-Elliptic-Curve-Point` encoding algorithms.
18
19## Minimum Supported Rust Version
20
21This crate requires **Rust 1.65** at a minimum.
22
23We may change the MSRV in the future, but it will be accompanied by a minor
24version bump.
25
26## License
27
28Licensed under either of:
29
30 * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
31 * [MIT license](http://opensource.org/licenses/MIT)
32
33at your option.
34
35### Contribution
36
37Unless you explicitly state otherwise, any contribution intentionally submitted
38for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
39dual licensed as above, without any additional terms or conditions.
40
41[//]: # (badges)
42
43[crate-image]: https://buildstats.info/crate/sec1
44[crate-link]: https://crates.io/crates/sec1
45[docs-image]: https://docs.rs/sec1/badge.svg
46[docs-link]: https://docs.rs/sec1/
47[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
48[rustc-image]: https://img.shields.io/badge/rustc-1.65+-blue.svg
49[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
50[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/300570-formats
51[build-image]: https://github.com/RustCrypto/formats/workflows/sec1/badge.svg?branch=master&event=push
52[build-link]: https://github.com/RustCrypto/formats/actions
53
54[//]: # (links)
55
56[RustCrypto]: https://github.com/rustcrypto
57[SEC1: Elliptic Curve Cryptography]: https://www.secg.org/sec1-v2.pdf
58[RFC5915]: https://datatracker.ietf.org/doc/html/rfc5915
59