[package] name = "rsa-export" version = "0.3.3" license = "Apache-2.0 OR MIT" authors = ["Glitch "] edition = "2018" description = "Export keys generated by the \"rsa\" crate into the PKCS#1 or PKCS#8 format" readme = "./README.md" repository = "https://gitlab.com/smallglitch/rsa-export" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] num-bigint-dig = { version = "0.6", default-features = false } pem = { version = "0.8", optional = true } rsa = "0.3" simple_asn1 = "0.5" [dev-dependencies] rand = "0.7" [features] default = [ "pem" ] [package.metadata.docs.rs] all-features = true [[example]] name = "pem" required-features = [ "pem" ] [[example]] name = "pem_custom_line_ending" required-features = [ "pem" ]