[][src]Struct pkgar::Header

#[repr(packed)]
pub struct Header {
    pub signature: [u8; 64],
    pub public_key: [u8; 32],
    pub blake3: [u8; 32],
    pub count: u64,
}

Fields

signature: [u8; 64]

NaCl signature of header data

public_key: [u8; 32]

NaCl public key used to generate signature

blake3: [u8; 32]

Blake3 sum of entry data

count: u64

Count of Entry structs, which immediately follow

Methods

impl Header[src]

pub fn new<'a>(
    data: &'a [u8],
    public_key: &PublicKey
) -> Result<&'a Header, Error>
[src]

Parse header from raw header data and verify using public key

pub unsafe fn new_unchecked<'a>(data: &'a [u8]) -> Result<&'a Header, Error>[src]

Parse header from raw header data without verification

pub fn entries_size(&self) -> Result<u64, Error>[src]

Retrieve the size of the entries

pub fn total_size(&self) -> Result<u64, Error>[src]

Retrieve the size of the Header and its entries

pub fn entries<'a>(&self, data: &'a [u8]) -> Result<&'a [Entry], Error>[src]

Parse entries from raw entries data and verify using blake3

pub unsafe fn entries_unchecked<'a>(
    data: &'a [u8]
) -> Result<&'a [Entry], Error>
[src]

Parse entries from raw entries data without verification

Trait Implementations

impl Clone for Header[src]

impl Copy for Header[src]

impl Plain for Header[src]

Auto Trait Implementations

impl RefUnwindSafe for Header

impl Send for Header

impl Sync for Header

impl Unpin for Header

impl UnwindSafe for Header

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,