xref: /netbsd-src/crypto/external/bsd/openssl/dist/demos/cms/cms_uncomp.c (revision b0d1725196a7921d003d2c66a14f186abda4176b)
1c7da899bSchristos /*
2c7da899bSchristos  * Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.
3c7da899bSchristos  *
4*b0d17251Schristos  * Licensed under the Apache License 2.0 (the "License").  You may not use
5c7da899bSchristos  * this file except in compliance with the License.  You can obtain a copy
6c7da899bSchristos  * in the file LICENSE in the source distribution or at
7c7da899bSchristos  * https://www.openssl.org/source/license.html
8c7da899bSchristos  */
9c7da899bSchristos 
10a89c9211Schristos /* Simple S/MIME uncompression example */
11a89c9211Schristos #include <openssl/pem.h>
12a89c9211Schristos #include <openssl/cms.h>
13a89c9211Schristos #include <openssl/err.h>
14a89c9211Schristos 
main(int argc,char ** argv)15a89c9211Schristos int main(int argc, char **argv)
16a89c9211Schristos {
17a89c9211Schristos     BIO *in = NULL, *out = NULL;
18a89c9211Schristos     CMS_ContentInfo *cms = NULL;
19a89c9211Schristos     int ret = 1;
20a89c9211Schristos 
21a89c9211Schristos     OpenSSL_add_all_algorithms();
22a89c9211Schristos     ERR_load_crypto_strings();
23a89c9211Schristos 
24a89c9211Schristos     /* Open compressed content */
25a89c9211Schristos 
26a89c9211Schristos     in = BIO_new_file("smcomp.txt", "r");
27a89c9211Schristos 
28a89c9211Schristos     if (!in)
29a89c9211Schristos         goto err;
30a89c9211Schristos 
31a89c9211Schristos     /* Sign content */
32a89c9211Schristos     cms = SMIME_read_CMS(in, NULL);
33a89c9211Schristos 
34a89c9211Schristos     if (!cms)
35a89c9211Schristos         goto err;
36a89c9211Schristos 
37a89c9211Schristos     out = BIO_new_file("smuncomp.txt", "w");
38a89c9211Schristos     if (!out)
39a89c9211Schristos         goto err;
40a89c9211Schristos 
41a89c9211Schristos     /* Uncompress S/MIME message */
42a89c9211Schristos     if (!CMS_uncompress(cms, out, NULL, 0))
43a89c9211Schristos         goto err;
44a89c9211Schristos 
45a89c9211Schristos     ret = 0;
46a89c9211Schristos 
47a89c9211Schristos  err:
48a89c9211Schristos 
49635165faSspz     if (ret) {
50a89c9211Schristos         fprintf(stderr, "Error Uncompressing Data\n");
51a89c9211Schristos         ERR_print_errors_fp(stderr);
52a89c9211Schristos     }
53a89c9211Schristos 
54a89c9211Schristos     CMS_ContentInfo_free(cms);
55a89c9211Schristos     BIO_free(in);
56a89c9211Schristos     BIO_free(out);
57a89c9211Schristos     return ret;
58a89c9211Schristos }
59