mod bytes;
mod decrypt;
mod equal;
mod from_bits;
mod from_fields;
mod num_randomizers;
mod parse;
mod serialize;
mod size_in_fields;
mod to_bits;
mod to_fields;
use crate::Plaintext;
use snarkvm_console_account::ViewKey;
use snarkvm_console_network::prelude::*;
use snarkvm_console_types::{Boolean, Field, Group};
use core::ops::Deref;
#[derive(Clone)]
pub struct Ciphertext<N: Network>(Vec<Field<N>>);
impl<N: Network> Deref for Ciphertext<N> {
type Target = [Field<N>];
fn deref(&self) -> &Self::Target {
&self.0
}
}