1
2
3
4
5
6
7
8
9
10
11
12
13
use argon2::Argon2;
use opaque_ke::{key_exchange::tripledh::TripleDh, CipherSuite, Ristretto255};

#[allow(dead_code)]
#[derive(Debug)]
pub struct OpaqueCipherSuite;

impl CipherSuite for OpaqueCipherSuite {
    type OprfCs = Ristretto255;
    type KeGroup = Ristretto255;
    type KeyExchange = TripleDh;
    type Ksf = Argon2<'static>;
}