Struct hdk::prelude::x_salsa20_poly1305::nonce::XSalsa20Poly1305Nonce[][src]

pub struct XSalsa20Poly1305Nonce(_);

Trait Implementations

impl AsRef<[u8]> for XSalsa20Poly1305Nonce[src]

impl Clone for XSalsa20Poly1305Nonce[src]

impl Copy for XSalsa20Poly1305Nonce[src]

impl Debug for XSalsa20Poly1305Nonce[src]

The only meaningful debug information for a cryptograhpic secret is the literal bytes. Also, encodings like base64 are not constant time so debugging could open some weird side channel issue trying to be ‘human friendly’. It seems better to never try to encode secrets.

@todo maybe we want something like HIDDEN by default and putting the actual bytes behind a feature flag?

See https://docs.rs/subtle-encoding/0.5.1/subtle_encoding/

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

impl Eq for XSalsa20Poly1305Nonce[src]

impl From<[u8; 24]> for XSalsa20Poly1305Nonce[src]

Trivial new type derivation. Secrets should have private interiors and be constructed directly from fixed length arrays of known length.

impl PartialEq<XSalsa20Poly1305Nonce> for XSalsa20Poly1305Nonce[src]

Constant time equality check. This mitigates timing attacks where a remote agent can reverse engineer data by measuring tiny changes in latency associated with optimised equality checks. More matching bytes = more latency = vulnerability. This type of attack has been successfully demonstrated over a network despite varied latencies.

impl Serialize for XSalsa20Poly1305Nonce[src]

impl<'_> TryFrom<&'_ [u8]> for XSalsa20Poly1305Nonce[src]

type Error = SecurePrimitiveError

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ XSalsa20Poly1305Nonce> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<SerializedBytes> for XSalsa20Poly1305Nonce[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<XSalsa20Poly1305Nonce> for SerializedBytes[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

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>,