In the event you need to produce or consume a magic public key, this library helps in the conversion between a magic-public-key-formatted String
, and an openssl::rsa::Rsa<T>
type.
This crate exposes two traits: ```rust pub trait AsMagicPublicKey { fn asmagicpublic_key(&self) -> String; }
pub trait FromMagicPublicKey: Sized {
fn frommagicpublickey(magicpublic_key: &str) -> Result
toml
openssl = "0.10"
openssl-magic-public-key = "0.1"
AsMagicPublicKey
is implemented for Rsa<T> where T: HasPublic
. This means from any instantiated Rsa, you can produce a magic-public-key-formatted String
.
```rust let rsa = Rsa::generate(2048)?;
let magicpublickey: String = rsa.asmagicpublic_key(); ```
FromMagicPublicKey
is implemented for Rsa<Public>
.
rust
let rsa = Rsa::from_magic_public_key(&magic_public_key)?;
Copyright © 2019 Riley Trautman
OpenSSL Magic Public Key is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
OpenSSL Magic Public Key is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This file is part of OpenSSL Magic Public Key.
You should have received a copy of the GNU General Public License along with OpenSSL Magic Public Key. If not, see http://www.gnu.org/licenses/.