2016-05-18 21:16:36 +08:00
|
|
|
/*
|
2023-09-07 16:59:15 +08:00
|
|
|
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 21:16:36 +08:00
|
|
|
*
|
2018-12-06 21:08:15 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 21:16:36 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2007-04-14 04:40:47 +08:00
|
|
|
/* Simple S/MIME verification example */
|
|
|
|
#include <openssl/pem.h>
|
|
|
|
#include <openssl/pkcs7.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;
|
|
|
|
PKCS7 *p7 = NULL;
|
2023-03-20 12:48:33 +08:00
|
|
|
int ret = EXIT_FAILURE;
|
2007-04-14 04:40:47 +08:00
|
|
|
|
|
|
|
OpenSSL_add_all_algorithms();
|
|
|
|
ERR_load_crypto_strings();
|
|
|
|
|
|
|
|
/* Set up trusted CA certificate store */
|
|
|
|
|
|
|
|
st = X509_STORE_new();
|
2021-12-15 16:24:21 +08:00
|
|
|
if (st == NULL)
|
|
|
|
goto err;
|
2007-04-14 04:40:47 +08:00
|
|
|
|
|
|
|
/* Read in signer certificate and private key */
|
|
|
|
tbio = BIO_new_file("cacert.pem", "r");
|
|
|
|
|
2021-12-15 16:24:21 +08:00
|
|
|
if (tbio == NULL)
|
2007-04-14 04:40:47 +08:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
cacert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
|
|
|
|
|
2021-12-15 16:24:21 +08:00
|
|
|
if (cacert == NULL)
|
2007-04-14 04:40:47 +08:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (!X509_STORE_add_cert(st, cacert))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* Open content being signed */
|
|
|
|
|
|
|
|
in = BIO_new_file("smout.txt", "r");
|
|
|
|
|
2021-12-15 16:24:21 +08:00
|
|
|
if (in == NULL)
|
2007-04-14 04:40:47 +08:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* Sign content */
|
|
|
|
p7 = SMIME_read_PKCS7(in, &cont);
|
|
|
|
|
2021-12-15 16:24:21 +08:00
|
|
|
if (p7 == NULL)
|
2007-04-14 04:40:47 +08:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* File to output verified content to */
|
|
|
|
out = BIO_new_file("smver.txt", "w");
|
2021-12-15 16:24:21 +08:00
|
|
|
if (out == NULL)
|
2007-04-14 04:40:47 +08:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (!PKCS7_verify(p7, NULL, st, cont, out, 0)) {
|
|
|
|
fprintf(stderr, "Verification Failure\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2023-11-11 03:02:00 +08:00
|
|
|
printf("Verification Successful\n");
|
2007-04-14 04:40:47 +08:00
|
|
|
|
2023-03-20 12:48:33 +08:00
|
|
|
ret = EXIT_SUCCESS;
|
2007-04-14 04:40:47 +08:00
|
|
|
err:
|
2023-03-20 12:48:33 +08:00
|
|
|
if (ret != EXIT_SUCCESS) {
|
2007-04-14 04:40:47 +08:00
|
|
|
fprintf(stderr, "Error Verifying Data\n");
|
|
|
|
ERR_print_errors_fp(stderr);
|
|
|
|
}
|
2021-12-15 16:24:21 +08:00
|
|
|
|
|
|
|
X509_STORE_free(st);
|
2015-04-12 04:32:54 +08:00
|
|
|
PKCS7_free(p7);
|
2015-05-01 05:33:59 +08:00
|
|
|
X509_free(cacert);
|
2015-03-25 23:31:18 +08:00
|
|
|
BIO_free(in);
|
|
|
|
BIO_free(out);
|
|
|
|
BIO_free(tbio);
|
2007-04-14 04:40:47 +08:00
|
|
|
return ret;
|
|
|
|
}
|