openssl/demos/cms/cms_dec.c

75 lines
1.4 KiB
C
Raw Normal View History

2008-04-11 17:50:20 +00:00
/* Simple S/MIME decryption example */
2008-04-11 16:52:45 +00:00
#include <openssl/pem.h>
#include <openssl/cms.h>
#include <openssl/err.h>
int main(int argc, char **argv)
{
BIO *in = NULL, *out = NULL, *tbio = NULL;
X509 *rcert = NULL;
EVP_PKEY *rkey = NULL;
CMS_ContentInfo *cms = NULL;
int ret = 1;
2008-04-11 16:52:45 +00:00
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
2008-04-11 16:52:45 +00:00
/* Read in recipient certificate and private key */
tbio = BIO_new_file("signer.pem", "r");
2008-04-11 16:52:45 +00:00
if (!tbio)
goto err;
2008-04-11 16:52:45 +00:00
rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
2008-04-11 16:52:45 +00:00
BIO_reset(tbio);
2008-04-11 16:52:45 +00:00
rkey = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL);
2008-04-11 16:52:45 +00:00
if (!rcert || !rkey)
goto err;
2008-04-11 16:52:45 +00:00
/* Open S/MIME message to decrypt */
2008-04-11 16:52:45 +00:00
in = BIO_new_file("smencr.txt", "r");
2008-04-11 16:52:45 +00:00
if (!in)
goto err;
2008-04-11 16:52:45 +00:00
/* Parse message */
cms = SMIME_read_CMS(in, NULL);
2008-04-11 16:52:45 +00:00
if (!cms)
goto err;
2008-04-11 16:52:45 +00:00
out = BIO_new_file("decout.txt", "w");
if (!out)
goto err;
2008-04-11 16:52:45 +00:00
/* Decrypt S/MIME message */
if (!CMS_decrypt(cms, rkey, rcert, NULL, out, 0))
goto err;
2008-04-11 16:52:45 +00:00
ret = 0;
2008-04-11 16:52:45 +00:00
err:
2008-04-11 16:52:45 +00:00
if (ret) {
fprintf(stderr, "Error Decrypting Data\n");
ERR_print_errors_fp(stderr);
}
2008-04-11 16:52:45 +00:00
if (cms)
CMS_ContentInfo_free(cms);
if (rcert)
X509_free(rcert);
EVP_PKEY_free(rkey);
2008-04-11 16:52:45 +00:00
BIO_free(in);
BIO_free(out);
BIO_free(tbio);
2008-04-11 16:52:45 +00:00
return ret;
2008-04-11 16:52:45 +00:00
}