in src/lib.rs [157:169]
fn test_e2e_large_plaintext() {
let (remote_key, auth_secret) = generate_keypair_and_auth_secret().unwrap();
let plaintext = [0; 5000];
let ciphertext =
encrypt(&remote_key.pub_as_raw().unwrap(), &auth_secret, &plaintext).unwrap();
let decrypted = decrypt(
&remote_key.raw_components().unwrap(),
&auth_secret,
&ciphertext,
)
.unwrap();
assert_eq!(decrypted, plaintext.to_vec());
}