cryptograpi/
lib.rs

1mod build;
2
3use openssl::ssl::{SslConnector, SslMethod};
4
5fn main() {
6    let mut ctx = SslConnector::builder(SslMethod::tls()).unwrap();
7
8    #[cfg(openssl111)]
9    ctx.set_ciphersuites("TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256").unwrap();
10
11}