Not really a proper Perl solution, but I couldn't find out how to make the low level routines in Net::SSLeay work (the documentation states that the certificate verification code isn't well tested). Anyway, here's an Inline C bit of code that works on Debian Stretch:
use strict; use warnings; use Inline Config => force_build => 0, clean_after_build => 1; use Inline C => 'DATA'; use Inline C => Config => DIRECTORY => "/tmp" => enable => 'UNTAINT' => inc => '-I/usr/include' => libs => ' -lssl -lcrypto '; my $CAfile = "cacert.pem"; my $Cert = "good.crt"; my $Cert2 = "selfsigned.crt"; print "cert1 = " . verify_cert($CAfile, $Cert) . "\n"; print "cert2 = " . verify_cert($CAfile, $Cert2) . "\n"; __DATA__ __C__ #include <openssl/bio.h> #include <openssl/err.h> #include <openssl/pem.h> #include <openssl/x509.h> #include <openssl/x509_vfy.h> char *verify_cert(char *ca_bundlestr, char *cert_filestr) { BIO *certbio = NULL; BIO *outbio = NULL; X509 *error_cert = NULL; X509 *cert = NULL; X509_NAME *certsubject = NULL; X509_STORE *store = NULL; X509_STORE_CTX *vrfy_ctx = NULL; int ret; char *retmsg; OpenSSL_add_all_algorithms(); ERR_load_BIO_strings(); ERR_load_crypto_strings(); certbio = BIO_new(BIO_s_file()); if (!(store=X509_STORE_new())) { size_t needed = snprintf(NULL, 0, "Error creating X509_STORE_CTX +object") + 1; retmsg = malloc(needed); snprintf(retmsg, needed, "Error creating X509_STORE_CTX object"); goto done; } vrfy_ctx = X509_STORE_CTX_new(); ret = BIO_read_filename(certbio, cert_filestr); if (! (cert = PEM_read_bio_X509(certbio, NULL, 0, NULL))) { size_t needed = snprintf(NULL, 0, "Error loading cert into memory +") + 1; retmsg = malloc(needed); snprintf(retmsg, needed, "Error loading cert into memory"); goto done; } ret = X509_STORE_load_locations(store, ca_bundlestr, NULL); if (ret != 1) { size_t needed = snprintf(NULL, 0, "Error loading CA cert or chain + file") + 1; retmsg = malloc(needed); snprintf(retmsg, needed, "Error loading CA cert or chain file"); goto done; } X509_STORE_CTX_init(vrfy_ctx, store, cert, NULL); ret = X509_verify_cert(vrfy_ctx); if( ret == 0 ) { size_t needed = snprintf(NULL, 0, "Error %s", X509_verify_cert_er +ror_string(X509_STORE_CTX_get_error (vrfy_ctx))) + 1; retmsg = malloc(needed); snprintf(retmsg, needed, "Error %s", X509_verify_cert_error_strin +g(X509_STORE_CTX_get_error (vrfy_ctx))); } else { size_t needed = snprintf(NULL, 0, "OK") + 1; retmsg = malloc(needed); snprintf(retmsg, needed, "OK"); } done: X509_STORE_CTX_free(vrfy_ctx); X509_STORE_free(store); X509_free(cert); BIO_free_all(certbio); return( retmsg ); }
running it:
$ perl verify_certs.pl cert1 = OK cert2 = Error self signed certificate
(code is based on this source: original C code )

rdfield


In reply to Re: NET::SSLeay to verify certificates? by rdfield
in thread NET::SSLeay to verify certificates? by LoraIlieva

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.