Trait cryptraits::key::Blind

source ·
pub trait Blind {
    type E: Error;

    fn blind(&mut self, blinding_factor: &[u8]) -> Result<(), Self::E>;
    fn to_blind(&self, blinding_factor: &[u8]) -> Result<Self, Self::E>
    where
        Self: Sized
; }
Expand description

Perform a blinding operation on keys.

Required Associated Types§

Required Methods§

Perform a blinding operation on the key with the given blinding factor.

Perform a blinding operation on the key with the given blinding factor.

Implementors§