Struct hdk::prelude::x_salsa20_poly1305::x25519::X25519PubKey[][src]

pub struct X25519PubKey(_);

Trait Implementations

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

impl Clone for X25519PubKey[src]

impl Copy for X25519PubKey[src]

impl Debug for X25519PubKey[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 X25519PubKey[src]

impl Eq for X25519PubKey[src]

impl From<[u8; 32]> for X25519PubKey[src]

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

impl PartialEq<X25519PubKey> for X25519PubKey[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 X25519PubKey[src]

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

type Error = SecurePrimitiveError

The type returned in the event of a conversion error.

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

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<SerializedBytes> for X25519PubKey[src]

type Error = SerializedBytesError

The type returned in the event of a conversion error.

impl TryFrom<X25519PubKey> 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>,