[−][src]Enum socket_collection::DecryptContext
Simplifies decryption by holding the necessary context - keys to decrypt data. Allows "null" decryption where data is only deserialized. See: null object pattern.
Variants
NullNo encryption.
AuthenticatedEncryption + authentication
Fields of Authenticated
AnonymousDecryptNo message authentication. Only decrypt operation is allowed.
Fields of AnonymousDecrypt
Methods
impl DecryptContext[src]
impl DecryptContextpub 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_decrypt(
our_pk: PublicEncryptKey,
our_sk: SecretEncryptKey
) -> Self[src]
pub fn anonymous_decrypt(
our_pk: PublicEncryptKey,
our_sk: SecretEncryptKey
) -> SelfConstructs crypto context that is only meant for unauthenticated decryption.
pub fn decrypt<T>(&self, msg: &[u8]) -> Res<T> where
T: Serialize + DeserializeOwned, [src]
pub fn decrypt<T>(&self, msg: &[u8]) -> Res<T> where
T: Serialize + DeserializeOwned, Decrypt given buffer and deserialize into structure.
pub fn encrypted_size_len(&self) -> usize[src]
pub fn encrypted_size_len(&self) -> usizeThe length of encrypted size variable. The returned value must match
EncryptContext::encrypted_size_len(), so that we could be able to decrypt it.
Trait Implementations
impl Clone for DecryptContext[src]
impl Clone for DecryptContextfn clone(&self) -> DecryptContext[src]
fn clone(&self) -> DecryptContextfn 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 DecryptContext[src]
impl Default for DecryptContextimpl Debug for DecryptContext[src]
impl Debug for DecryptContextAuto Trait Implementations
impl Send for DecryptContext
impl Send for DecryptContextimpl Sync for DecryptContext
impl Sync for DecryptContextBlanket 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