/**
* rsa_verify_key() - Verify a signature against some data using RSA Key
*
- * Verify a RSA PKCS1.5 signature against an expected hash using
+ * Verify a RSA PKCS1.5/PSS signature against an expected hash using
* the RSA Key properties in prop structure.
*
* @info: Specifies key and FIT information
* @sig_len: Number of bytes in signature
*
* Parse a RSA public key blob in DER format pointed to in @info and fill
- * a key_prop structure with properties of the key. Then verify a RSA PKCS1.5
+ * a key_prop structure with properties of the key. Then verify a RSA PKCS1.5/PSS
* signature against an expected hash using the calculated properties.
*
* Return 0 if verified, -ve on error
* information in node with prperties of RSA Key like modulus, exponent etc.
*
* Parse sign-node and fill a key_prop structure with properties of the
- * key. Verify a RSA PKCS1.5 signature against an expected hash using
+ * key. Verify a RSA PKCS1.5/PSS signature against an expected hash using
* the properties parsed
*
* @info: Specifies key and FIT information