Struct Encryptor

Source
pub struct Encryptor { /* private fields */ }

Implementations§

Trait Implementations§

Source§

impl Debug for Encryptor

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Encryptor

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl EncryptorT for Encryptor

Source§

fn encrypt(&self, addr: Option<&str>, text: &[u8]) -> EncryptorResult<Vec<u8>>

Encrypt the message use RSA public key

Source§

fn decrypt(&self, text: &[u8]) -> EncryptorResult<Vec<u8>>

Decrypt the message use RSA private key

Source§

fn gen_secret(&self) -> SecretKey

Source§

fn sign_raw(&self, message: &[u8]) -> EncryptorResult<Vec<u8>>

Source§

fn sign(&self, message: &[u8], signer: String) -> EncryptorResult<Signature>

Source§

fn verify_raw( &self, addr: Option<&str>, message: &[u8], signature: &[u8], ) -> EncryptorResult<()>

Source§

fn verify(&self, message: &[u8], signature: &Signature) -> EncryptorResult<()>

Source§

fn apply(&self, secret: &SecretKey, buffer: &mut [u8])

Source§

fn apply_multi(&self, secrets: Vec<SecretKey>, buffer: &mut [u8])

Source§

fn shuffle(&self, items: &mut Vec<Ciphertext>)

Source§

fn add_public_key( &self, addr: String, raw: &NodePublicKeyRaw, ) -> EncryptorResult<()>

Source§

fn digest(&self, text: &[u8]) -> SecretDigest

Source§

fn export_public_key( &self, addr: Option<&str>, ) -> EncryptorResult<NodePublicKeyRaw>

Source§

fn decrypt_with_secrets( &self, ciphertext_map: HashMap<usize, Vec<u8>>, secret_map: HashMap<usize, Vec<Vec<u8>>>, valid_options: &[String], ) -> Result<HashMap<usize, String>, EncryptorError>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V