]> git.ipfire.org Git - thirdparty/openssl.git/blame - demos/smime/smenc.c
demos: tidy up makefiles, fix warnings
[thirdparty/openssl.git] / demos / smime / smenc.c
CommitLineData
9e200689 1/*
da1c088f 2 * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
9e200689 3 *
5e73e6ba 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
9e200689
RS
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
b2b2dafc
DSH
10/* Simple S/MIME encrypt example */
11#include <openssl/pem.h>
12#include <openssl/pkcs7.h>
13#include <openssl/err.h>
14
15int main(int argc, char **argv)
0f113f3e
MC
16{
17 BIO *in = NULL, *out = NULL, *tbio = NULL;
18 X509 *rcert = NULL;
19 STACK_OF(X509) *recips = NULL;
20 PKCS7 *p7 = NULL;
09ff84bd 21 int ret = EXIT_FAILURE;
b2b2dafc 22
0f113f3e 23 /*
0f113f3e
MC
24 * for streaming set PKCS7_STREAM
25 */
26 int flags = PKCS7_STREAM;
b2b2dafc 27
0f113f3e
MC
28 OpenSSL_add_all_algorithms();
29 ERR_load_crypto_strings();
b2b2dafc 30
0f113f3e
MC
31 /* Read in recipient certificate */
32 tbio = BIO_new_file("signer.pem", "r");
b2b2dafc 33
0f113f3e
MC
34 if (!tbio)
35 goto err;
b2b2dafc 36
0f113f3e 37 rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
b2b2dafc 38
0f113f3e
MC
39 if (!rcert)
40 goto err;
b2b2dafc 41
0f113f3e
MC
42 /* Create recipient STACK and add recipient cert to it */
43 recips = sk_X509_new_null();
b2b2dafc 44
0f113f3e
MC
45 if (!recips || !sk_X509_push(recips, rcert))
46 goto err;
b2b2dafc 47
0f113f3e 48 /*
79b2a2f2
DDO
49 * OSSL_STACK_OF_X509_free() will free up recipient STACK and its contents
50 * so set rcert to NULL so it isn't freed up twice.
0f113f3e
MC
51 */
52 rcert = NULL;
b2b2dafc 53
0f113f3e 54 /* Open content being encrypted */
b2b2dafc 55
0f113f3e 56 in = BIO_new_file("encr.txt", "r");
b2b2dafc 57
0f113f3e
MC
58 if (!in)
59 goto err;
b2b2dafc 60
0f113f3e
MC
61 /* encrypt content */
62 p7 = PKCS7_encrypt(recips, in, EVP_des_ede3_cbc(), flags);
b2b2dafc 63
0f113f3e
MC
64 if (!p7)
65 goto err;
b2b2dafc 66
0f113f3e
MC
67 out = BIO_new_file("smencr.txt", "w");
68 if (!out)
69 goto err;
b2b2dafc 70
0f113f3e
MC
71 /* Write out S/MIME message */
72 if (!SMIME_write_PKCS7(out, p7, in, flags))
73 goto err;
b2b2dafc 74
86db9588 75 printf("Success\n");
b2b2dafc 76
86db9588 77 ret = EXIT_SUCCESS;
0f113f3e 78 err:
09ff84bd 79 if (ret != EXIT_SUCCESS) {
0f113f3e
MC
80 fprintf(stderr, "Error Encrypting Data\n");
81 ERR_print_errors_fp(stderr);
82 }
e0e920b1 83 PKCS7_free(p7);
222561fe 84 X509_free(rcert);
79b2a2f2 85 OSSL_STACK_OF_X509_free(recips);
ca3a82c3
RS
86 BIO_free(in);
87 BIO_free(out);
88 BIO_free(tbio);
0f113f3e 89 return ret;
0f113f3e 90}