TLS-Attacker
TLS-Attacker copied to clipboard
Help :For eddsa certificates in server mode
For EDDSA certificates I need call same method CertificateKeyPair
or different method
Certificate readCertificate = PemUtil.readCertificate(new FileInputStream("resources/ed25519crt.pem")); PrivateKey privateKey = PemUtil.readPrivateKey(new FileInputStream("resources/ed25519key.pem")); conf.setDefaultExplicitCertificateKeyPair(new CertificateKeyPair(readCertificate, privateKey));
this is the correct method, but it might be that x25519 certificates are not supported by our underlying api.