sec1_decode

Crates.iosec1_decode
lib.rssec1_decode
version0.1.0
sourcesrc
created_at2021-08-17 03:44:03.662049
updated_at2021-08-17 03:44:03.662049
descriptionCrate for parsing EcPrivateKey structures as defined in SEC1 section C4 from both PEM and DER encodings.
homepagehttps://github.com/andyblarblar/sec1_decode
repositoryhttps://github.com/andyblarblar/sec1_decode
max_upload_size
id438292
size25,074
Andrew Ealovega (andyblarblar)

documentation

https://docs.rs/crate/sec1_decode/

README

badge

Crate for parsing EcPrivateKey structures as defined in SEC1 section C4. This is the default format generated by openssl for ec keys.

This crate is capable of decoding both PEM and DER encoded keys.

use sec1_decode::parse_pem;
const PEM:&str = "-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIASgox4rXoGc6ajVAjBCsjVIjbfHd8OK3m5v34ZWVBmmoAoGCCqGSM49
AwEHoUQDQgAEUfXAsSR5LH4rVdHbcK1vnYcN9I/6T7u1bl1RprSZFf89aZXL+CeG
G21XVW8IDhjU7HAXgrO1Sqj00zQtluVBTg==
-----END EC PRIVATE KEY-----";

let parsed = parse_pem(PEM.as_bytes()).unwrap();
Commit count: 8

cargo fmt