Encrypts a message using the RSA public key # Arguments `message` - The plaintext message (must be less than n) `public_key` - The public key to use for encryption # Returns The encrypted ciphertext # 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(messag
(message: u64, public_key: &PublicKey)
source not stored for this graph (policy: none)