Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ext/openssl/ossl_x509cert.c
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,12 @@ ossl_x509_add_extension(VALUE self, VALUE extension)
*
* Compares the two certificates. Note that this takes into account all fields,
* not just the issuer name and the serial number.
*
* This method uses X509_cmp() from OpenSSL, which compares certificates based
* on their cached DER encodings. The comparison can be unreliable if a
* certificate is incomplete.
*
* See also the man page X509_cmp(3).
*/
static VALUE
ossl_x509_eq(VALUE self, VALUE other)
Expand Down