CertVerify

This commit is contained in:
Pascal Engélibert 2025-12-01 17:02:32 +01:00
commit 0e2ca537a0
4 changed files with 34 additions and 7 deletions

View file

@ -34,6 +34,15 @@ FUNCTIONS = {
"rustls::crypto::aws_lc_rs::tls13::AeadAlgorithm::encrypter": "encrypt",
"rustls::crypto::aws_lc_rs::tls13::AeadAlgorithm::decrypter": "decrypt",
# Emit TLS CertVerify (sign headers using certificate's secret key)
"rustls::server::tls13::client_hello::emit_certificate_verify_tls13": "certVerify",
# Verify TLS CertVerify
"rustls::webpki::verify::verify_tls13_signature": "certVerify",
# Verify certificate
"<rustls_platform_verifier::verification::others::Verifier as rustls::verify::ServerCertVerifier>::verify_server_cert": "cert"
}
def extract_function(data, name):