openssl/demos/cms/cms_uncomp.c

50 lines
903 B
C
Raw Normal View History

2008-04-12 01:33:29 +08:00
/* Simple S/MIME uncompression example */
#include <openssl/pem.h>
#include <openssl/cms.h>
#include <openssl/err.h>
int main(int argc, char **argv)
{
BIO *in = NULL, *out = NULL;
CMS_ContentInfo *cms = NULL;
int ret = 1;
2008-04-12 01:33:29 +08:00
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
2008-04-12 01:33:29 +08:00
/* Open compressed content */
2008-04-12 01:33:29 +08:00
in = BIO_new_file("smcomp.txt", "r");
2008-04-12 01:33:29 +08:00
if (!in)
goto err;
2008-04-12 01:33:29 +08:00
/* Sign content */
cms = SMIME_read_CMS(in, NULL);
2008-04-12 01:33:29 +08:00
if (!cms)
goto err;
2008-04-12 01:33:29 +08:00
out = BIO_new_file("smuncomp.txt", "w");
if (!out)
goto err;
2008-04-12 01:33:29 +08:00
/* Uncompress S/MIME message */
if (!CMS_uncompress(cms, out, NULL, 0))
goto err;
2008-04-12 01:33:29 +08:00
ret = 0;
2008-04-12 01:33:29 +08:00
err:
2008-04-12 01:33:29 +08:00
if (ret) {
fprintf(stderr, "Error Uncompressing Data\n");
ERR_print_errors_fp(stderr);
}
2008-04-12 01:33:29 +08:00
CMS_ContentInfo_free(cms);
BIO_free(in);
BIO_free(out);
return ret;
}