Trait rustls::internal::msgs::handshake::DecomposedSignatureScheme
[−]
[src]
pub trait DecomposedSignatureScheme {
fn sign(&self) -> SignatureAlgorithm;
fn hash(&self) -> HashAlgorithm;
fn make(alg: SignatureAlgorithm, hash: HashAlgorithm) -> SignatureScheme;
}
Required Methods
fn sign(&self) -> SignatureAlgorithm
fn hash(&self) -> HashAlgorithm
fn make(alg: SignatureAlgorithm, hash: HashAlgorithm) -> SignatureScheme
Implementors
impl DecomposedSignatureScheme for SignatureScheme