Decrypts a ciphertext using the RSA private key # Arguments `ciphertext` - The encrypted message `private_key` - The private key to use for decryption # Returns The decrypted plaintext message # Examples ``` use the_algorithms_rust::ciphers::{generate_keypair, encrypt, decrypt}; let (public_key, private_key) = generate_keypair(61, 53); let message = 65; let ciphertext = encrypt(message, &pu
(ciphertext: u64, private_key: &PrivateKey)
source not stored for this graph (policy: none)