1 /* 2 * Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved. 3 * 4 * Licensed under the OpenSSL license (the "License"). You may not use 5 * this file except in compliance with the License. You can obtain a copy 6 * in the file LICENSE in the source distribution or at 7 * https://www.openssl.org/source/license.html 8 */ 9 10 /* Simple S/MIME verification example */ 11 #include <openssl/pem.h> 12 #include <openssl/cms.h> 13 #include <openssl/err.h> 14 15 int main(int argc, char **argv) 16 { 17 BIO *in = NULL, *out = NULL, *tbio = NULL, *cont = NULL; 18 X509_STORE *st = NULL; 19 X509 *cacert = NULL; 20 CMS_ContentInfo *cms = NULL; 21 22 int ret = 1; 23 24 OpenSSL_add_all_algorithms(); 25 ERR_load_crypto_strings(); 26 27 /* Set up trusted CA certificate store */ 28 29 st = X509_STORE_new(); 30 31 /* Read in CA certificate */ 32 tbio = BIO_new_file("cacert.pem", "r"); 33 34 if (!tbio) 35 goto err; 36 37 cacert = PEM_read_bio_X509(tbio, NULL, 0, NULL); 38 39 if (!cacert) 40 goto err; 41 42 if (!X509_STORE_add_cert(st, cacert)) 43 goto err; 44 45 /* Open message being verified */ 46 47 in = BIO_new_file("smout.txt", "r"); 48 49 if (!in) 50 goto err; 51 52 /* parse message */ 53 cms = SMIME_read_CMS(in, &cont); 54 55 if (!cms) 56 goto err; 57 58 /* File to output verified content to */ 59 out = BIO_new_file("smver.txt", "w"); 60 if (!out) 61 goto err; 62 63 if (!CMS_verify(cms, NULL, st, cont, out, 0)) { 64 fprintf(stderr, "Verification Failure\n"); 65 goto err; 66 } 67 68 fprintf(stderr, "Verification Successful\n"); 69 70 ret = 0; 71 72 err: 73 74 if (ret) { 75 fprintf(stderr, "Error Verifying Data\n"); 76 ERR_print_errors_fp(stderr); 77 } 78 79 CMS_ContentInfo_free(cms); 80 X509_free(cacert); 81 BIO_free(in); 82 BIO_free(out); 83 BIO_free(tbio); 84 return ret; 85 } 86