#public-key #rsa #magic #format #rust-crypto #converting

rsa-magic-public-key

Converting between the Magic Public Key format and a RustCrypto RSA type

10 releases (breaking)

0.8.0 Apr 28, 2023
0.7.0 Jan 23, 2023
0.6.0 Oct 29, 2022
0.5.0 Apr 8, 2022
0.1.1 Apr 21, 2020

#1474 in Cryptography

Download history 42/week @ 2024-01-07 25/week @ 2024-01-14 35/week @ 2024-01-21 90/week @ 2024-01-28 21/week @ 2024-02-04 9/week @ 2024-02-11 8/week @ 2024-02-18 33/week @ 2024-02-25 15/week @ 2024-03-03 58/week @ 2024-03-10 23/week @ 2024-03-17 4/week @ 2024-03-24 35/week @ 2024-03-31 21/week @ 2024-04-07 11/week @ 2024-04-14 9/week @ 2024-04-21

76 downloads per month
Used in ap-relay

AGPL-3.0

16KB
77 lines

RSA Magic Public Key

Converting between the Magic Public Key format and a RustCrypto RSA type

use rsa_magic_public_key::*;
use rsa::{RSAPrivateKey, RSAPublicKey};

let mut rng = rand::thread_rng();
let rsa = RSAPrivateKey::new(&mut rng, 2048)?;

let magic_public_key: String = rsa.as_magic_public_key();

let res = RSAPublicKey::from_magic_public_key(&magic_public_key);

assert!(res.is_ok());

Contributing

Feel free to open issues for anything you find an issue with. Please note that any contributed code will be licensed under the AGPLv3.

License

Copyright © 2023 Riley Trautman

rsa-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.

rsa-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 rsa-magic-public-key.

You should have received a copy of the GNU General Public License along with rsa-magic-public-key. If not, see http://www.gnu.org/licenses/.

Dependencies

~4MB
~89K SLoC