Home
last modified time | relevance | path

Searched refs:Sha1 (Results 1 – 8 of 8) sorted by relevance

/webrtc/dtls/src/signature_hash_algorithm/
H A Dmod.rs16 Sha1 = 2, // Blacklisted enumerator
30 2 => HashAlgorithm::Sha1, in from()
46 HashAlgorithm::Sha1 => write!(f, "sha-1"), // [RFC3279] in fmt()
61 HashAlgorithm::Md2 | HashAlgorithm::Md5 | HashAlgorithm::Sha1 in insecure()
H A Dsignature_hash_algorithm_test.rs90 hash: HashAlgorithm::Sha1, in test_parse_signature_schemes()
/webrtc/dtls/src/handshake/handshake_message_server_key_exchange/
H A Dhandshake_message_server_key_exchange_test.rs25 hash: HashAlgorithm::Sha1, in test_handshake_message_server_key_exchange()
/webrtc/dtls/src/handshake/handshake_message_certificate_request/
H A Dhandshake_message_certificate_request_test.rs40 hash: HashAlgorithm::Sha1, in test_handshake_message_certificate_request()
/webrtc/srtp/src/cipher/
H A Dcipher_aes_cm_hmac_sha1.rs11 use sha1::Sha1;
15 type HmacSha1 = Hmac<Sha1>;
/webrtc/ice/src/udp_mux/
H A Dudp_mux_test.rs13 use sha1::{Digest, Sha1};
289 let mut hasher = Sha1::new(); in sha1_hash()
/webrtc/dtls/src/prf/
H A Dmod.rs8 use sha1::Sha1;
13 type HmacSha1 = Hmac<Sha1>;
/webrtc/dtls/src/crypto/
H A Dmod.rs344 SignatureAlgorithm::Rsa if hash_algorithm.hash == HashAlgorithm::Sha1 => { in verify_signature()