Encrypts a text message by converting each character to its ASCII value # Arguments `message` - The plaintext string `public_key` - The public key to use for encryption # Returns A vector of encrypted values, one for each character # Examples ``` use the_algorithms_rust::ciphers::{generate_keypair, encrypt_text, decrypt_text}; let (public, private) = generate_keypair(61, 53); let encrypted
(message: &str, public_key: &PublicKey)
source not stored for this graph (policy: none)