Trait snow::resolvers::CryptoResolver[][src]

pub trait CryptoResolver {
    fn resolve_rng(&self) -> Option<Box<dyn Random>>;
fn resolve_dh(&self, choice: &DHChoice) -> Option<Box<dyn Dh>>;
fn resolve_hash(&self, choice: &HashChoice) -> Option<Box<dyn Hash>>;
fn resolve_cipher(&self, choice: &CipherChoice) -> Option<Box<dyn Cipher>>; }
Expand description

An object that resolves the providers of Noise crypto choices

Required methods

fn resolve_rng(&self) -> Option<Box<dyn Random>>[src]

Expand description

Provide an implementation of the Random trait or None if none available.

fn resolve_dh(&self, choice: &DHChoice) -> Option<Box<dyn Dh>>[src]

Expand description

Provide an implementation of the Dh trait for the given DHChoice or None if unavailable.

fn resolve_hash(&self, choice: &HashChoice) -> Option<Box<dyn Hash>>[src]

Expand description

Provide an implementation of the Hash trait for the given HashChoice or None if unavailable.

fn resolve_cipher(&self, choice: &CipherChoice) -> Option<Box<dyn Cipher>>[src]

Expand description

Provide an implementation of the Cipher trait for the given CipherChoice or None if unavailable.

Loading content...

Implementors

impl CryptoResolver for DefaultResolver[src]

fn resolve_rng(&self) -> Option<Box<dyn Random>>[src]

fn resolve_dh(&self, choice: &DHChoice) -> Option<Box<dyn Dh>>[src]

fn resolve_hash(&self, choice: &HashChoice) -> Option<Box<dyn Hash>>[src]

fn resolve_cipher(&self, choice: &CipherChoice) -> Option<Box<dyn Cipher>>[src]

impl CryptoResolver for FallbackResolver[src]

fn resolve_rng(&self) -> Option<Box<dyn Random>>[src]

fn resolve_dh(&self, choice: &DHChoice) -> Option<Box<dyn Dh>>[src]

fn resolve_hash(&self, choice: &HashChoice) -> Option<Box<dyn Hash>>[src]

fn resolve_cipher(&self, choice: &CipherChoice) -> Option<Box<dyn Cipher>>[src]

impl CryptoResolver for RingResolver[src]

fn resolve_rng(&self) -> Option<Box<dyn Random>>[src]

fn resolve_dh(&self, _choice: &DHChoice) -> Option<Box<dyn Dh>>[src]

fn resolve_hash(&self, choice: &HashChoice) -> Option<Box<dyn Hash>>[src]

fn resolve_cipher(&self, choice: &CipherChoice) -> Option<Box<dyn Cipher>>[src]

impl CryptoResolver for SodiumResolver[src]

fn resolve_rng(&self) -> Option<Box<dyn Random>>[src]

fn resolve_dh(&self, choice: &DHChoice) -> Option<Box<dyn Dh>>[src]

fn resolve_hash(&self, choice: &HashChoice) -> Option<Box<dyn Hash>>[src]

fn resolve_cipher(&self, choice: &CipherChoice) -> Option<Box<dyn Cipher>>[src]

Loading content...