1
0
Fork
You've already forked rsa-magic-public-key
0
  • Rust 85.5%
  • Nix 14.5%
2026年06月21日 12:29:25 -05:00
src rsa rc.17 2026年04月20日 15:57:33 -05:00
.gitignore Update RSA 2023年04月27日 19:02:30 -05:00
Cargo.toml Bump package version 2026年06月21日 12:25:35 -05:00
flake.lock Bump package version 2026年06月21日 12:25:35 -05:00
flake.nix Bump package version 2026年06月21日 12:25:35 -05:00
LICENSE Update license, repo URL 2023年04月27日 19:06:10 -05:00
README.md Update readme 2026年06月21日 12:29:25 -05:00

RSA Magic Public Key

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

usersa_magic_public_key::*;usersa::{RsaPrivateKey,RsaPublicKey};letmutrng=rand::rng();letprivate_key=rsa::RsaPrivateKey::new(&mutrng,2048)?;letmagic_public_key: String =rsa.as_magic_public_key();letres=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/.