openssl/demos/cms/cms_ver.c

83 lines
1.5 KiB
C
Raw Normal View History

2008-04-11 16:52:45 +00:00
/* Simple S/MIME verification example */
#include <openssl/pem.h>
#include <openssl/cms.h>
#include <openssl/err.h>
int main(int argc, char **argv)
{
BIO *in = NULL, *out = NULL, *tbio = NULL, *cont = NULL;
X509_STORE *st = NULL;
X509 *cacert = NULL;
CMS_ContentInfo *cms = NULL;
2008-04-11 16:52:45 +00:00
int ret = 1;
2008-04-11 16:52:45 +00:00
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
2008-04-11 16:52:45 +00:00
/* Set up trusted CA certificate store */
2008-04-11 16:52:45 +00:00
st = X509_STORE_new();
2008-04-11 16:52:45 +00:00
/* Read in CA certificate */
tbio = BIO_new_file("cacert.pem", "r");
2008-04-11 16:52:45 +00:00
if (!tbio)
goto err;
2008-04-11 16:52:45 +00:00
cacert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
2008-04-11 16:52:45 +00:00
if (!cacert)
goto err;
2008-04-11 16:52:45 +00:00
if (!X509_STORE_add_cert(st, cacert))
goto err;
2008-04-11 16:52:45 +00:00
/* Open message being verified */
2008-04-11 16:52:45 +00:00
in = BIO_new_file("smout.txt", "r");
2008-04-11 16:52:45 +00:00
if (!in)
goto err;
2008-04-11 16:52:45 +00:00
/* parse message */
cms = SMIME_read_CMS(in, &cont);
2008-04-11 16:52:45 +00:00
if (!cms)
goto err;
2008-04-11 16:52:45 +00:00
/* File to output verified content to */
out = BIO_new_file("smver.txt", "w");
if (!out)
goto err;
2008-04-11 16:52:45 +00:00
if (!CMS_verify(cms, NULL, st, cont, out, 0)) {
fprintf(stderr, "Verification Failure\n");
goto err;
}
2008-04-11 16:52:45 +00:00
fprintf(stderr, "Verification Successful\n");
2008-04-11 16:52:45 +00:00
ret = 0;
2008-04-11 16:52:45 +00:00
err:
2008-04-11 16:52:45 +00:00
if (ret) {
fprintf(stderr, "Error Verifying Data\n");
ERR_print_errors_fp(stderr);
}
2008-04-11 16:52:45 +00:00
if (cms)
CMS_ContentInfo_free(cms);
2008-04-11 16:52:45 +00:00
if (cacert)
X509_free(cacert);
2008-04-11 16:52:45 +00:00
BIO_free(in);
BIO_free(out);
BIO_free(tbio);
2008-04-11 16:52:45 +00:00
return ret;
2008-04-11 16:52:45 +00:00
}