use super::*; use std::io::{ self, Write, }; /// TODO: RSA private key pub type RsaPrivateKey = (); /// TODO: RSA public key pub type RsaPublicKey = (); pub(crate) fn rsa_encrypt(with: &RsaPublicKey, to: &mut W, buf: &[u8]) -> io::Result { todo!() } pub(crate) fn generate() -> RsaPrivateKey { todo!() } pub use chacha20stream::{ Key, IV, keygen as chacha_keygen, };