Blame doc/man3/CMS_add1_signer.pod

Packit Service 084de1
=pod
Packit Service 084de1
Packit Service 084de1
=head1 NAME
Packit Service 084de1
Packit Service 084de1
CMS_add1_signer, CMS_SignerInfo_sign - add a signer to a CMS_ContentInfo signed data structure
Packit Service 084de1
Packit Service 084de1
=head1 SYNOPSIS
Packit Service 084de1
Packit Service 084de1
 #include <openssl/cms.h>
Packit Service 084de1
Packit Service 084de1
 CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms, X509 *signcert,
Packit Service 084de1
                                 EVP_PKEY *pkey, const EVP_MD *md,
Packit Service 084de1
                                 unsigned int flags);
Packit Service 084de1
Packit Service 084de1
 int CMS_SignerInfo_sign(CMS_SignerInfo *si);
Packit Service 084de1
Packit Service 084de1
=head1 DESCRIPTION
Packit Service 084de1
Packit Service 084de1
CMS_add1_signer() adds a signer with certificate B<signcert> and private
Packit Service 084de1
key B<pkey> using message digest B<md> to CMS_ContentInfo SignedData
Packit Service 084de1
structure B<cms>.
Packit Service 084de1
Packit Service 084de1
The CMS_ContentInfo structure should be obtained from an initial call to
Packit Service 084de1
CMS_sign() with the flag B<CMS_PARTIAL> set or in the case or re-signing a
Packit Service 084de1
valid CMS_ContentInfo SignedData structure.
Packit Service 084de1
Packit Service 084de1
If the B<md> parameter is B<NULL> then the default digest for the public
Packit Service 084de1
key algorithm will be used.
Packit Service 084de1
Packit Service 084de1
Unless the B<CMS_REUSE_DIGEST> flag is set the returned CMS_ContentInfo
Packit Service 084de1
structure is not complete and must be finalized either by streaming (if
Packit Service 084de1
applicable) or a call to CMS_final().
Packit Service 084de1
Packit Service 084de1
The CMS_SignerInfo_sign() function will explicitly sign a CMS_SignerInfo
Packit Service 084de1
structure, its main use is when B<CMS_REUSE_DIGEST> and B<CMS_PARTIAL> flags
Packit Service 084de1
are both set.
Packit Service 084de1
Packit Service 084de1
=head1 NOTES
Packit Service 084de1
Packit Service 084de1
The main purpose of CMS_add1_signer() is to provide finer control
Packit Service 084de1
over a CMS signed data structure where the simpler CMS_sign() function defaults
Packit Service 084de1
are not appropriate. For example if multiple signers or non default digest
Packit Service 084de1
algorithms are needed. New attributes can also be added using the returned
Packit Service 084de1
CMS_SignerInfo structure and the CMS attribute utility functions or the
Packit Service 084de1
CMS signed receipt request functions.
Packit Service 084de1
Packit Service 084de1
Any of the following flags (ored together) can be passed in the B<flags>
Packit Service 084de1
parameter.
Packit Service 084de1
Packit Service 084de1
If B<CMS_REUSE_DIGEST> is set then an attempt is made to copy the content
Packit Service 084de1
digest value from the CMS_ContentInfo structure: to add a signer to an existing
Packit Service 084de1
structure.  An error occurs if a matching digest value cannot be found to copy.
Packit Service 084de1
The returned CMS_ContentInfo structure will be valid and finalized when this
Packit Service 084de1
flag is set.
Packit Service 084de1
Packit Service 084de1
If B<CMS_PARTIAL> is set in addition to B<CMS_REUSE_DIGEST> then the
Packit Service 084de1
CMS_SignerInfo structure will not be finalized so additional attributes
Packit Service 084de1
can be added. In this case an explicit call to CMS_SignerInfo_sign() is
Packit Service 084de1
needed to finalize it.
Packit Service 084de1
Packit Service 084de1
If B<CMS_NOCERTS> is set the signer's certificate will not be included in the
Packit Service 084de1
CMS_ContentInfo structure, the signer's certificate must still be supplied in
Packit Service 084de1
the B<signcert> parameter though. This can reduce the size of the signature if
Packit Service 084de1
the signers certificate can be obtained by other means: for example a
Packit Service 084de1
previously signed message.
Packit Service 084de1
Packit Service 084de1
The SignedData structure includes several CMS signedAttributes including the
Packit Service 084de1
signing time, the CMS content type and the supported list of ciphers in an
Packit Service 084de1
SMIMECapabilities attribute. If B<CMS_NOATTR> is set then no signedAttributes
Packit Service 084de1
will be used. If B<CMS_NOSMIMECAP> is set then just the SMIMECapabilities are
Packit Service 084de1
omitted.
Packit Service 084de1
Packit Service 084de1
OpenSSL will by default identify signing certificates using issuer name
Packit Service 084de1
and serial number. If B<CMS_USE_KEYID> is set it will use the subject key
Packit Service 084de1
identifier value instead. An error occurs if the signing certificate does not
Packit Service 084de1
have a subject key identifier extension.
Packit Service 084de1
Packit Service 084de1
If present the SMIMECapabilities attribute indicates support for the following
Packit Service 084de1
algorithms in preference order: 256 bit AES, Gost R3411-94, Gost 28147-89, 192
Packit Service 084de1
bit AES, 128 bit AES, triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2.
Packit Service 084de1
If any of these algorithms is not available then it will not be included: for example the GOST algorithms will not be included if the GOST ENGINE is
Packit Service 084de1
not loaded.
Packit Service 084de1
Packit Service 084de1
CMS_add1_signer() returns an internal pointer to the CMS_SignerInfo
Packit Service 084de1
structure just added, this can be used to set additional attributes
Packit Service 084de1
before it is finalized.
Packit Service 084de1
Packit Service 084de1
=head1 RETURN VALUES
Packit Service 084de1
Packit Service 084de1
CMS_add1_signer() returns an internal pointer to the CMS_SignerInfo
Packit Service 084de1
structure just added or NULL if an error occurs.
Packit Service 084de1
Packit Service 084de1
=head1 SEE ALSO
Packit Service 084de1
Packit Service 084de1
L<ERR_get_error(3)>, L<CMS_sign(3)>,
Packit Service 084de1
L<CMS_final(3)>,
Packit Service 084de1
Packit Service 084de1
=head1 COPYRIGHT
Packit Service 084de1
Packit Service 084de1
Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
Packit Service 084de1
Packit Service 084de1
Licensed under the OpenSSL license (the "License").  You may not use
Packit Service 084de1
this file except in compliance with the License.  You can obtain a copy
Packit Service 084de1
in the file LICENSE in the source distribution or at
Packit Service 084de1
L<https://www.openssl.org/source/license.html>.
Packit Service 084de1
Packit Service 084de1
=cut