openssl/demos/cms/cms_sign2.c

98 lines
1.8 KiB
C
Raw Normal View History

2008-04-12 01:50:20 +08:00
/* S/MIME signing example: 2 signers */
2008-04-12 00:52:45 +08: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 *scert = NULL, *scert2 = NULL;
EVP_PKEY *skey = NULL, *skey2 = NULL;
CMS_ContentInfo *cms = NULL;
int ret = 1;
2008-04-12 00:52:45 +08:00
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
2008-04-12 00:52:45 +08:00
tbio = BIO_new_file("signer.pem", "r");
2008-04-12 00:52:45 +08:00
if (!tbio)
goto err;
2008-04-12 00:52:45 +08:00
scert = PEM_read_bio_X509(tbio, NULL, 0, NULL);
2008-04-12 00:52:45 +08:00
BIO_reset(tbio);
2008-04-12 00:52:45 +08:00
skey = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL);
2008-04-12 00:52:45 +08:00
BIO_free(tbio);
2008-04-12 00:52:45 +08:00
tbio = BIO_new_file("signer2.pem", "r");
2008-04-12 00:52:45 +08:00
if (!tbio)
goto err;
2008-04-12 00:52:45 +08:00
scert2 = PEM_read_bio_X509(tbio, NULL, 0, NULL);
2008-04-12 00:52:45 +08:00
BIO_reset(tbio);
2008-04-12 00:52:45 +08:00
skey2 = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL);
2008-04-12 00:52:45 +08:00
if (!scert2 || !skey2)
goto err;
2008-04-12 00:52:45 +08:00
in = BIO_new_file("sign.txt", "r");
2008-04-12 00:52:45 +08:00
if (!in)
goto err;
2008-04-12 00:52:45 +08:00
cms = CMS_sign(NULL, NULL, NULL, in, CMS_STREAM | CMS_PARTIAL);
2008-04-12 00:52:45 +08:00
if (!cms)
goto err;
2008-04-12 00:52:45 +08:00
/* Add each signer in turn */
2008-04-12 00:52:45 +08:00
if (!CMS_add1_signer(cms, scert, skey, NULL, 0))
goto err;
2008-04-12 00:52:45 +08:00
if (!CMS_add1_signer(cms, scert2, skey2, NULL, 0))
goto err;
2008-04-12 00:52:45 +08:00
out = BIO_new_file("smout.txt", "w");
if (!out)
goto err;
2008-04-12 00:52:45 +08:00
/* NB: content included and finalized by SMIME_write_CMS */
2008-04-12 00:52:45 +08:00
if (!SMIME_write_CMS(out, cms, in, CMS_STREAM))
goto err;
2008-04-12 00:52:45 +08:00
ret = 0;
2008-04-12 00:52:45 +08:00
err:
2008-04-12 00:52:45 +08:00
if (ret) {
fprintf(stderr, "Error Signing Data\n");
ERR_print_errors_fp(stderr);
}
2008-04-12 00:52:45 +08:00
if (cms)
CMS_ContentInfo_free(cms);
2008-04-12 00:52:45 +08:00
if (scert)
X509_free(scert);
EVP_PKEY_free(skey);
2008-04-12 00:52:45 +08:00
if (scert2)
X509_free(scert2);
EVP_PKEY_free(skey2);
2008-04-12 00:52:45 +08:00
BIO_free(in);
BIO_free(out);
BIO_free(tbio);
2008-04-12 00:52:45 +08:00
return ret;
2008-04-12 00:52:45 +08:00
}