pub trait EncryptedImmutable { // Required methods fn get_total_blocks(&self) -> usize; fn get_block(&self, index: usize) -> &[u8] ⓘ; }
Specification of how to access all ciphertext, whcih are stored in blocks.