Sample code for 30+ languages & platforms
Rust

Require that the Web Server's SSL Certificate is Non-Expired and the Signature is Valid

Demonstrates setting the RequireSslCertVerify property to require that the web server's SSL/TLS certificate is non-expired and that the certificate's signature is valid.

Chilkat Rust Downloads

Rust
// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let url = "https://chilkatsoft.com".to_string();

let http = chilkat::Http::new();
http.set_require_ssl_cert_verify(true);

let Ok(html) = http.quick_get_str(&url) else {
    println!("{}", http.last_error_text());
    return;
};

println!("Success.");