2e594ee89e07d17ebdb1f89936013482dc231d1a
[openssl.git] / demos / smime / smenc.c
1 /* Simple S/MIME encrypt example */
2 #include <openssl/pem.h>
3 #include <openssl/pkcs7.h>
4 #include <openssl/err.h>
5
6 int main(int argc, char **argv)
7 {
8     BIO *in = NULL, *out = NULL, *tbio = NULL;
9     X509 *rcert = NULL;
10     STACK_OF(X509) *recips = NULL;
11     PKCS7 *p7 = NULL;
12     int ret = 1;
13
14     /*
15      * On OpenSSL 0.9.9 only:
16      * for streaming set PKCS7_STREAM
17      */
18     int flags = PKCS7_STREAM;
19
20     OpenSSL_add_all_algorithms();
21     ERR_load_crypto_strings();
22
23     /* Read in recipient certificate */
24     tbio = BIO_new_file("signer.pem", "r");
25
26     if (!tbio)
27         goto err;
28
29     rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
30
31     if (!rcert)
32         goto err;
33
34     /* Create recipient STACK and add recipient cert to it */
35     recips = sk_X509_new_null();
36
37     if (!recips || !sk_X509_push(recips, rcert))
38         goto err;
39
40     /*
41      * sk_X509_pop_free will free up recipient STACK and its contents so set
42      * rcert to NULL so it isn't freed up twice.
43      */
44     rcert = NULL;
45
46     /* Open content being encrypted */
47
48     in = BIO_new_file("encr.txt", "r");
49
50     if (!in)
51         goto err;
52
53     /* encrypt content */
54     p7 = PKCS7_encrypt(recips, in, EVP_des_ede3_cbc(), flags);
55
56     if (!p7)
57         goto err;
58
59     out = BIO_new_file("smencr.txt", "w");
60     if (!out)
61         goto err;
62
63     /* Write out S/MIME message */
64     if (!SMIME_write_PKCS7(out, p7, in, flags))
65         goto err;
66
67     ret = 0;
68
69  err:
70     if (ret) {
71         fprintf(stderr, "Error Encrypting Data\n");
72         ERR_print_errors_fp(stderr);
73     }
74     PKCS7_free(p7);
75     if (rcert)
76         X509_free(rcert);
77     if (recips)
78         sk_X509_pop_free(recips, X509_free);
79     BIO_free(in);
80     BIO_free(out);
81     BIO_free(tbio);
82     return ret;
83
84 }