[−][src]Enum socket_collection::EncryptContext
Simplifies encryption by holding the necessary context - encryption keys. Allows "null" encryption where data is only serialized. See: null object pattern.
Variants
NullNo encryption.
AuthenticatedEncryption + authentication
Fields of Authenticated
AnonymousEncryptNo message authentication. Only encrypt operation is allowed.
Fields of AnonymousEncrypt
their_pk: PublicEncryptKeyTheir public key.
Methods
impl EncryptContext[src]
impl EncryptContextpub fn null() -> Self[src]
pub fn null() -> SelfContructs "null" encryption context which actually does no encryption. In this case data is simply serialized but not encrypted.
pub fn authenticated(shared_key: SharedSecretKey) -> Self[src]
pub fn authenticated(shared_key: SharedSecretKey) -> SelfConstruct crypto context that encrypts and authenticate messages.
pub fn anonymous_encrypt(their_pk: PublicEncryptKey) -> Self[src]
pub fn anonymous_encrypt(their_pk: PublicEncryptKey) -> SelfConstructs crypto context that is only meant for unauthenticated encryption.
pub fn encrypt<T: Serialize>(&self, msg: &T) -> Res<Vec<u8>>[src]
pub fn encrypt<T: Serialize>(&self, msg: &T) -> Res<Vec<u8>>Serialize given structure and encrypt it.
pub fn encrypted_size_len(&self) -> usize[src]
pub fn encrypted_size_len(&self) -> usizeOur data size is 32 bit number. When we encrypt this number with safe_crypto, we get a
constant size byte array. This size depends on encryption variation though.
Trait Implementations
impl Clone for EncryptContext[src]
impl Clone for EncryptContextfn clone(&self) -> EncryptContext[src]
fn clone(&self) -> EncryptContextfn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Default for EncryptContext[src]
impl Default for EncryptContextimpl Debug for EncryptContext[src]
impl Debug for EncryptContextAuto Trait Implementations
impl Send for EncryptContext
impl Send for EncryptContextimpl Sync for EncryptContext
impl Sync for EncryptContextBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut Timpl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeIdimpl<T> DebugAny for T where
T: Any + Debug,
impl<T> DebugAny for T where
T: Any + Debug, impl<T> CloneAny for T where
T: Clone + Any,
impl<T> CloneAny for T where
T: Clone + Any, fn clone_any(&self) -> Box<dyn CloneAny + 'static>
fn clone_any(&self) -> Box<dyn CloneAny + 'static>fn clone_any_send(&self) -> Box<dyn CloneAny + 'static + Send> where
T: Send,
fn clone_any_send(&self) -> Box<dyn CloneAny + 'static + Send> where
T: Send, fn clone_any_sync(&self) -> Box<dyn CloneAny + 'static + Sync> where
T: Sync,
fn clone_any_sync(&self) -> Box<dyn CloneAny + 'static + Sync> where
T: Sync, fn clone_any_send_sync(&self) -> Box<dyn CloneAny + 'static + Send + Sync> where
T: Send + Sync,
fn clone_any_send_sync(&self) -> Box<dyn CloneAny + 'static + Send + Sync> where
T: Send + Sync, impl<T> UnsafeAny for T where
T: Any,
impl<T> UnsafeAny for T where
T: Any, impl<T> Same for T
impl<T> Same for Ttype Output = T
Should always be Self