X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdemos%2Fcms%2Fcms_dec.c;fp=lib%2Fopenssl%2Fdemos%2Fcms%2Fcms_dec.c;h=4f9428b4e71a8c377bf87bbcffd823bda5b5eb36;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=9fee0a3ebfc4d519e5eadf3a3bd4967ab1802153;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/demos/cms/cms_dec.c b/lib/openssl/demos/cms/cms_dec.c index 9fee0a3..4f9428b 100644 --- a/lib/openssl/demos/cms/cms_dec.c +++ b/lib/openssl/demos/cms/cms_dec.c @@ -1,79 +1,78 @@ +/* + * Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the OpenSSL license (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + /* Simple S/MIME decryption example */ #include #include #include 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; - - OpenSSL_add_all_algorithms(); - ERR_load_crypto_strings(); - - /* Read in recipient certificate and private key */ - tbio = BIO_new_file("signer.pem", "r"); - - if (!tbio) - goto err; +{ + BIO *in = NULL, *out = NULL, *tbio = NULL; + X509 *rcert = NULL; + EVP_PKEY *rkey = NULL; + CMS_ContentInfo *cms = NULL; + int ret = 1; - rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL); + OpenSSL_add_all_algorithms(); + ERR_load_crypto_strings(); - BIO_reset(tbio); + /* Read in recipient certificate and private key */ + tbio = BIO_new_file("signer.pem", "r"); - rkey = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL); + if (!tbio) + goto err; - if (!rcert || !rkey) - goto err; + rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL); - /* Open S/MIME message to decrypt */ + BIO_reset(tbio); - in = BIO_new_file("smencr.txt", "r"); + rkey = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL); - if (!in) - goto err; + if (!rcert || !rkey) + goto err; - /* Parse message */ - cms = SMIME_read_CMS(in, NULL); + /* Open S/MIME message to decrypt */ - if (!cms) - goto err; + in = BIO_new_file("smencr.txt", "r"); - out = BIO_new_file("decout.txt", "w"); - if (!out) - goto err; + if (!in) + goto err; - /* Decrypt S/MIME message */ - if (!CMS_decrypt(cms, rkey, rcert, NULL, out, 0)) - goto err; + /* Parse message */ + cms = SMIME_read_CMS(in, NULL); - ret = 0; + if (!cms) + goto err; - err: + out = BIO_new_file("decout.txt", "w"); + if (!out) + goto err; - if (ret) - { - fprintf(stderr, "Error Decrypting Data\n"); - ERR_print_errors_fp(stderr); - } + /* Decrypt S/MIME message */ + if (!CMS_decrypt(cms, rkey, rcert, NULL, out, 0)) + goto err; - if (cms) - CMS_ContentInfo_free(cms); - if (rcert) - X509_free(rcert); - if (rkey) - EVP_PKEY_free(rkey); + ret = 0; - if (in) - BIO_free(in); - if (out) - BIO_free(out); - if (tbio) - BIO_free(tbio); + err: - return ret; + if (ret) { + fprintf(stderr, "Error Decrypting Data\n"); + ERR_print_errors_fp(stderr); + } - } + CMS_ContentInfo_free(cms); + X509_free(rcert); + EVP_PKEY_free(rkey); + BIO_free(in); + BIO_free(out); + BIO_free(tbio); + return ret; +}