openssl/demos/cms/cms_comp.c

56 lines
1 KiB
C
Raw Normal View History

2008-04-11 17:33:29 +00:00
/* Simple S/MIME compress 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-11 17:33:29 +00:00
/*
* On OpenSSL 1.0.0+ only:
* for streaming set CMS_STREAM
*/
int flags = CMS_STREAM;
2008-04-11 17:33:29 +00:00
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
2008-04-11 17:33:29 +00:00
/* Open content being compressed */
2008-04-11 17:33:29 +00:00
in = BIO_new_file("comp.txt", "r");
2008-04-11 17:33:29 +00:00
if (!in)
goto err;
2008-04-11 17:33:29 +00:00
/* compress content */
cms = CMS_compress(in, NID_zlib_compression, flags);
2008-04-11 17:33:29 +00:00
if (!cms)
goto err;
2008-04-11 17:33:29 +00:00
out = BIO_new_file("smcomp.txt", "w");
if (!out)
goto err;
2008-04-11 17:33:29 +00:00
/* Write out S/MIME message */
if (!SMIME_write_CMS(out, cms, in, flags))
goto err;
2008-04-11 17:33:29 +00:00
ret = 0;
2008-04-11 17:33:29 +00:00
err:
2008-04-11 17:33:29 +00:00
if (ret) {
fprintf(stderr, "Error Compressing Data\n");
ERR_print_errors_fp(stderr);
}
2008-04-11 17:33:29 +00:00
CMS_ContentInfo_free(cms);
BIO_free(in);
BIO_free(out);
return ret;
}