Lines Matching refs:is
21 I<signcert> is the certificate to sign with, I<pkey> is the corresponding
22 private key. I<certs> is an optional additional set of certificates to include
28 The data to be signed is read from BIO B<data>.
30 B<flags> is an optional set of flags.
32 CMS_sign() is similar to CMS_sign_ex() but uses default values of NULL
41 the B<CMS_TEXT> flag is set MIME headers for type B<text/plain> are prepended
44 If B<CMS_NOCERTS> is set the signer's certificate will not be included in the
50 The data being signed is included in the CMS_ContentInfo structure, unless
51 B<CMS_DETACHED> is set in which case it is omitted. This is used for
55 Normally the supplied content is translated into MIME canonical format (as
56 required by the S/MIME specifications) if B<CMS_BINARY> is set no translation
57 occurs. This option should be used if the supplied data is in binary format
62 SMIMECapabilities attribute. If B<CMS_NOATTR> is set then no signedAttributes
63 will be used. If B<CMS_NOSMIMECAP> is set then just the SMIMECapabilities are
69 If any of these algorithms is not available then it will not be included:
70 for example the GOST algorithms will not be included if the GOST ENGINE is
74 and serial number. If B<CMS_USE_KEYID> is set it will use the subject key
78 If the flags B<CMS_STREAM> is set then the returned B<CMS_ContentInfo>
79 structure is just initialized ready to perform the signing operation. The
80 signing is however B<not> performed and the data to be signed is not read from
81 the B<data> parameter. Signing is deferred until after the data has been
84 If the B<CMS_PARTIAL> flag is set a partial B<CMS_ContentInfo> structure is
88 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
98 If a signer is specified it will use the default digest for the signing
99 algorithm. This is B<SHA1> for both RSA and DSA keys.
101 If B<signcert> and B<pkey> are NULL then a certificates only CMS structure is
104 The function CMS_sign() is a basic CMS signing function whose output will be
110 structure if streaming is not enabled.
128 The B<CMS_STREAM> flag is only supported for detached data in OpenSSL 0.9.8,
129 it is supported for embedded data in OpenSSL 1.0.0 and later.