Function read_encrypted_page_header_len

Source
fn read_encrypted_page_header_len<T: Read>(
    input: &mut T,
    crypto_context: Option<Arc<CryptoContext>>,
) -> Result<(usize, PageHeader)>
Expand description

Reads a PageHeader from the provided Read returning the number of bytes read. If the page header is encrypted [CryptoContext] must be provided.