[][src]Struct rust_sodium::crypto::box_::curve25519xsalsa20poly1305::PrecomputedKey

#[must_use]
pub struct PrecomputedKey(pub [u8; 32]);

Applications that send several messages to the same receiver can gain speed by splitting seal() into two steps, precompute() and seal_precomputed(). Similarly, applications that receive several messages from the same sender can gain speed by splitting open() into two steps, precompute() and open_precomputed().

When a PrecomputedKey goes out of scope its contents will be zeroed out

Methods

impl PrecomputedKey
[src]

pub fn from_slice(bs: &[u8]) -> Option<PrecomputedKey>
[src]

from_slice() creates an object from a byte slice

This function will fail and return None if the length of the byte-slice isn't equal to the length of the object

Trait Implementations

impl Eq for PrecomputedKey
[src]

impl Drop for PrecomputedKey
[src]

impl PartialEq<PrecomputedKey> for PrecomputedKey
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for PrecomputedKey
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PrecomputedKey
[src]

impl Index<Range<usize>> for PrecomputedKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[a..b] == y[a..b]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the rust_sodium API.

type Output = [u8]

The returned type after indexing.

impl Index<RangeTo<usize>> for PrecomputedKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[..b] == y[..b]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the rust_sodium API.

type Output = [u8]

The returned type after indexing.

impl Index<RangeFrom<usize>> for PrecomputedKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[a..] == y[a..]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the rust_sodium API.

type Output = [u8]

The returned type after indexing.

impl Index<RangeFull> for PrecomputedKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[] == y[]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the rust_sodium API.

type Output = [u8]

The returned type after indexing.

impl Serialize for PrecomputedKey
[src]

impl<'de> Deserialize<'de> for PrecomputedKey
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]