Lunar Mushrooms
Lunar Mushrooms

Reputation: 8918

Openssl: Do the RSA_verify() and X509_verify_cert() uses common RSA verification code

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

Answers (1)

Lunar Mushrooms
Lunar Mushrooms

Reputation: 8918

Atlast I found it. X509_verify_cert make use of RSA_verify

Upvotes: 1

Related Questions