true if the signature is valid for message.bool verifyRsaPkcs1Signature(RSAPublicKey key, SignatureScheme sigScheme,
const(ubyte)[] message, const(ubyte)[] signature)Verifies an RSA PKCS#1 v1.5 signature for TLS 1.2 ServerKeyExchange.
key | RSA public key extracted from the peer certificate. |
sigScheme | Signature scheme advertised in the handshake. |
message | Raw handshake bytes covered by the signature. |
signature | Received signature bytes. |
true if the signature is valid for message.TlsHandshakeException if sigScheme is not an RSA PKCS#1 v1.5 scheme.