javax.net.ssl|DEBUG|10|main|2026-07-09 18:13:26.604 MSK|CertificateRequest.java:721|Consuming CertificateRequest handshake message (
"CertificateRequest": {
"certificate types": [rsa_sign, dss_sign, ecdsa_sign]
"supported signature algorithms": [ecdsa_secp256r1_sha256, ecdsa_secp384r1_sha384, ecdsa_secp521r1_sha512, ed25519, ed448, rsa_pss_pss_sha256, rsa_pss_pss_sha384, rsa_pss_pss_sha512, rsa_pss_rsae_sha256, rsa_pss_rsae_sha384, rsa_pss_rsae_sha512, rsa_pkcs1_sha256, rsa_pkcs1_sha384, rsa_pkcs1_sha512, ecdsa_sha224, ecdsa_sha1, rsa_sha224, rsa_pkcs1_sha1, dsa_sha224, dsa_sha1, dsa_sha256, dsa_sha384, dsa_sha512]
"certificate authorities": [CN=SberCA Test1 Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test1 Root Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test Root Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test Ext G2, O=Sberbank of Russia, C=RU]
}
avax.net.ssl|DEBUG|10|main|2026-07-09 18:13:21.740 MSK|SunX509KeyManagerImpl.java:160|found key for : 16733424 (
"certificate" : {
"version" : "v3",
"serial number" : "70:f3:92:e0:ea:df:c9:92:7a:e0:0c:51:e2:6a:61:94:ba:ff:70:84",
"signature algorithm": "SHA256withRSA",
"issuer" : "CN=SberCA Test1 Ext, O=Sberbank of Russia, C=RU",
"not before" : "2026-02-16 12:40:41.000 MSK",
"not after" : "2027-02-16 12:45:4
/**
* @param pathToJks The path to the JKS. REST Assured will first look in the classpath and if not found it will look for the JKS in the local file-system
* @param password The store pass
* @return A new SSLConfig instance
*/
public SSLConfig keyStore(String pathToJks, String password) {
Validate.notNull(pathToJks, "Path to JKS on the file system cannot be null");
Validate.notEmpty(password, "Password cannot be empty");
return new SSLConfig(pathToJks, pathToTrustStore, password, trustStorePassword, keyStoreType, trustStoreType, port, keyStore, trustStore, x509HostnameVerifier, sslSocketFactory, true);
}
/**
* Use a keystore located on the file-system. See {@link #keyStore(String, String)} for more details.
*
* @param pathToJks The path to JKS file on the file-system
* @param password The password for the keystore
* @return The request specification
* @see #keyStore(String, String)
*/
public SSLConfig keyStore(File pathToJks, String password) {