Reputation: 8918
Do the RSA_verify() and X509_verify_cert() uses any common RSA signature verification code ? (I mean the signature verification part only).
I went through the openssl source code and could not figure it out. The X509_verify_cert() seems to use ASN1_verify() at the end, and the RSA_verify() doesn't seem to use it.
Some valuable comments are appreciated.
Upvotes: 0
Views: 692
Reputation: 8918
Atlast I found it. X509_verify_cert make use of RSA_verify
Upvotes: 1