Struct fog_pack::types::StreamId[][src]

pub struct StreamId { /* fields omitted */ }

An identifier for a corresponding StreamKey. It is primarily used to indicate lockboxes are meant for that particular key.

This is derived through a hash of the key, given a set of specific hash parameters (see crate::stream).

Examples

A StreamId can be made publically visible:


let mut csprng = rand::rngs::OsRng {};
let key = StreamKey::new_temp(&mut csprng);
let id = key.id();

println!("StreamId(Base58): {}", id);

It can also be used to identify a recipient of a lockbox:

// We start with a known StreamKey
let key = StreamKey::new_temp(&mut csprng);

// ...
// We get the byte vector `encoded`, which might be a lockbox
// ...

let dec_lockbox = DataLockboxRef::from_bytes(encoded.as_ref())?;
let recipient = dec_lockbox.recipient();
if let LockboxRecipient::StreamId(ref id) = dec_lockbox.recipient() {
    // Check to see if this matches the key's StreamId
    if id == key.id() {
        let dec_data: Vec<u8> = key.decrypt_data(&dec_lockbox)?;
    }
    else {
        panic!("We were hoping this lockbox was for us!");
    }
}

Implementations

impl StreamId[src]

pub fn version(&self) -> u8[src]

pub fn raw_identifier(&self) -> &[u8][src]

pub fn as_vec(&self) -> Vec<u8, Global>[src]

Convert into a byte vector. For extending an existing byte vector, see encode_vec.

pub fn to_base58(&self) -> String[src]

Convert into a base58-encoded StreamId.

pub fn from_base58(s: &str) -> Result<StreamId, CryptoError>[src]

Attempt to parse a base58-encoded StreamId.

pub fn encode_vec(&self, buf: &mut Vec<u8, Global>)[src]

pub fn size(&self) -> usize[src]

Trait Implementations

impl Clone for StreamId[src]

impl Debug for StreamId[src]

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

impl Display for StreamId[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Display as a base58-encoded string.

impl Eq for StreamId[src]

impl From<StreamId> for Value[src]

impl<'a> From<StreamId> for ValueRef<'a>[src]

impl Hash for StreamId[src]

impl LowerHex for StreamId[src]

impl PartialEq<StreamId> for StreamId[src]

impl Serialize for StreamId[src]

impl StructuralEq for StreamId[src]

impl StructuralPartialEq for StreamId[src]

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

type Error = CryptoError

The type returned in the event of a conversion error.

pub fn try_from(
    value: &[u8]
) -> Result<StreamId, <StreamId as TryFrom<&'_ [u8]>>::Error>
[src]

Value must be the same length as the StreamId was when it was encoded (no trailing bytes allowed).

impl TryFrom<Value> for StreamId[src]

type Error = Value

The type returned in the event of a conversion error.

impl<'a> TryFrom<ValueRef<'a>> for StreamId[src]

type Error = ValueRef<'a>

The type returned in the event of a conversion error.

impl UpperHex for StreamId[src]

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<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> ToString for T where
    T: Display + ?Sized
[src]

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