xref: /openssl/demos/smime/smdec.c (revision 86db9588)
1 /*
2  * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 signing example */
11 #include <openssl/pem.h>
12 #include <openssl/pkcs7.h>
13 #include <openssl/err.h>
14 
main(int argc,char ** argv)15 int main(int argc, char **argv)
16 {
17     BIO *in = NULL, *out = NULL, *tbio = NULL;
18     X509 *rcert = NULL;
19     EVP_PKEY *rkey = NULL;
20     PKCS7 *p7 = NULL;
21     int ret = EXIT_FAILURE;
22 
23     OpenSSL_add_all_algorithms();
24     ERR_load_crypto_strings();
25 
26     /* Read in recipient certificate and private key */
27     tbio = BIO_new_file("signer.pem", "r");
28 
29     if (!tbio)
30         goto err;
31 
32     rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
33 
34     if (BIO_reset(tbio) < 0)
35         goto err;
36 
37     rkey = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL);
38 
39     if (!rcert || !rkey)
40         goto err;
41 
42     /* Open content being signed */
43 
44     in = BIO_new_file("smencr.txt", "r");
45 
46     if (!in)
47         goto err;
48 
49     /* Sign content */
50     p7 = SMIME_read_PKCS7(in, NULL);
51 
52     if (!p7)
53         goto err;
54 
55     out = BIO_new_file("encrout.txt", "w");
56     if (!out)
57         goto err;
58 
59     /* Decrypt S/MIME message */
60     if (!PKCS7_decrypt(p7, rkey, rcert, out, 0))
61         goto err;
62 
63     printf("Success\n");
64 
65     ret = EXIT_SUCCESS;
66  err:
67     if (ret != EXIT_SUCCESS) {
68         fprintf(stderr, "Error Signing Data\n");
69         ERR_print_errors_fp(stderr);
70     }
71     PKCS7_free(p7);
72     X509_free(rcert);
73     EVP_PKEY_free(rkey);
74     BIO_free(in);
75     BIO_free(out);
76     BIO_free(tbio);
77 
78     return ret;
79 }
80