in geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java [100:111]
public static Properties withSsl(final Properties properties) {
properties.setProperty(SSL_ENABLED_COMPONENTS, ALL);
final String withSslProtocols = System.getProperty(WITH_SSL_PROTOCOLS_PROPERTY);
if (!isBlank(withSslProtocols)) {
properties.setProperty(SSL_PROTOCOLS, withSslProtocols);
}
final String withSslCiphers = System.getProperty(WITH_SSL_CIPHERS_PROPERTY);
if (!isBlank(withSslCiphers)) {
properties.setProperty(SSL_CIPHERS, withSslCiphers);
}
return properties;
}