2 * The contents of this file are subject to the Mozilla Public
3 * License Version 1.1 (the "License"); you may not use this file
4 * except in compliance with the License. You may obtain a copy of
5 * the License at http://www.mozilla.org/MPL/
7 * Software distributed under the License is distributed on an "AS
8 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9 * implied. See the License for the specific language governing
10 * rights and limitations under the License.
12 * The Original Code is the Netscape security libraries.
14 * The Initial Developer of the Original Code is Netscape
15 * Communications Corporation. Portions created by Netscape are
16 * Copyright (C) 1994-2000 Netscape Communications Corporation. All
21 * Alternatively, the contents of this file may be used under the
22 * terms of the GNU General Public License Version 2 or later (the
23 * "GPL"), in which case the provisions of the GPL are applicable
24 * instead of those above. If you wish to allow use of your
25 * version of this file only under the terms of the GPL and not to
26 * allow others to use your version of this file under the MPL,
27 * indicate your decision by deleting the provisions above and
28 * replace them with the notice and other provisions required by
29 * the GPL. If you do not delete the provisions above, a recipient
30 * may use your version of this file under either the MPL or the
35 * Interfaces of the CMS implementation.
41 #include <Security/SecTrust.h>
42 #include <security_asn1/seccomon.h> // SEC_BEGIN_PROTOS
45 /************************************************************************/
48 /************************************************************************
49 * cmsutil.c - CMS misc utility functions
50 ************************************************************************/
54 * SecCmsArraySortByDER - sort array of objects by objects' DER encoding
56 * make sure that the order of the objects guarantees valid DER (which must be
57 * in lexigraphically ascending order for a SET OF); if reordering is necessary it
58 * will be done in place (in objs).
61 SecCmsArraySortByDER(void **objs
, const SecAsn1Template
*objtemplate
, void **objs2
);
64 * SecCmsUtilDERCompare - for use with SecCmsArraySort to
65 * sort arrays of SecAsn1Items containing DER
68 SecCmsUtilDERCompare(void *a
, void *b
);
71 * SecCmsAlgArrayGetIndexByAlgID - find a specific algorithm in an array of
74 * algorithmArray - array of algorithm IDs
75 * algid - algorithmid of algorithm to pick
78 * An integer containing the index of the algorithm in the array or -1 if
79 * algorithm was not found.
82 SecCmsAlgArrayGetIndexByAlgID(SECAlgorithmID
**algorithmArray
, SECAlgorithmID
*algid
);
85 * SecCmsAlgArrayGetIndexByAlgID - find a specific algorithm in an array of
88 * algorithmArray - array of algorithm IDs
89 * algiddata - id of algorithm to pick
92 * An integer containing the index of the algorithm in the array or -1 if
93 * algorithm was not found.
96 SecCmsAlgArrayGetIndexByAlgTag(SECAlgorithmID
**algorithmArray
, SECOidTag algtag
);
103 SecCmsUtilGetHashObjByAlgID(SECAlgorithmID
*algid
);
106 * XXX I would *really* like to not have to do this, but the current
107 * signing interface gives me little choice.
110 SecCmsUtilMakeSignatureAlgorithm(SECOidTag hashalg
, SECOidTag encalg
);
112 extern const SecAsn1Template
*
113 SecCmsUtilGetTemplateByTypeTag(SECOidTag type
);
116 SecCmsUtilGetSizeByTypeTag(SECOidTag type
);
118 extern SecCmsContentInfoRef
119 SecCmsContentGetContentInfo(void *msg
, SECOidTag type
);
121 /************************************************************************
122 * cmsmessage.c - CMS message methods
123 ************************************************************************/
127 @abstract Set up a CMS message object for encoding or decoding.
128 @discussion used internally.
129 @param cmsg Pointer to a SecCmsMessage object
130 @param pwfn callback function for getting token password for enveloped
131 data content with a password recipient.
132 @param pwfn_arg first argument passed to pwfn when it is called.
133 @param encrypt_key_cb callback function for getting bulk key for encryptedData content.
134 @param encrypt_key_cb_arg first argument passed to encrypt_key_cb when it is
138 SecCmsMessageSetEncodingParams(SecCmsMessageRef cmsg
,
139 PK11PasswordFunc pwfn
, void *pwfn_arg
,
140 SecCmsGetDecryptKeyCallback encrypt_key_cb
, void *encrypt_key_cb_arg
);
142 /************************************************************************
143 * cmscinfo.c - CMS contentInfo methods
144 ************************************************************************/
147 Destroy a CMS contentInfo and all of its sub-pieces.
148 @param cinfo The contentInfo object to destroy.
151 SecCmsContentInfoDestroy(SecCmsContentInfoRef cinfo
);
154 * SecCmsContentInfoSetContent - set cinfo's content type & content to CMS object
157 SecCmsContentInfoSetContent(SecCmsContentInfoRef cinfo
, SECOidTag type
, void *ptr
);
160 /************************************************************************
161 * cmssigdata.c - CMS signedData methods
162 ************************************************************************/
165 SecCmsSignedDataSetDigestValue(SecCmsSignedDataRef sigd
,
166 SECOidTag digestalgtag
,
167 SecAsn1Item
* digestdata
);
170 SecCmsSignedDataAddDigest(PRArenaPool
*poolp
,
171 SecCmsSignedDataRef sigd
,
172 SECOidTag digestalgtag
,
173 SecAsn1Item
* digest
);
176 SecCmsSignedDataGetDigestByAlgTag(SecCmsSignedDataRef sigd
, SECOidTag algtag
);
179 SecCmsSignedDataGetDigestValue(SecCmsSignedDataRef sigd
, SECOidTag digestalgtag
);
185 SecCmsSignedDataAddSignerInfo(SecCmsSignedDataRef sigd
,
186 SecCmsSignerInfoRef signerinfo
);
192 SecCmsSignedDataSetDigests(SecCmsSignedDataRef sigd
,
193 SECAlgorithmID
**digestalgs
,
194 SecAsn1Item
* *digests
);
197 * SecCmsSignedDataEncodeBeforeStart - do all the necessary things to a SignedData
198 * before start of encoding.
201 * - find out about the right value to put into sigd->version
202 * - come up with a list of digestAlgorithms (which should be the union of the algorithms
203 * in the signerinfos).
204 * If we happen to have a pre-set list of algorithms (and digest values!), we
205 * check if we have all the signerinfos' algorithms. If not, this is an error.
208 SecCmsSignedDataEncodeBeforeStart(SecCmsSignedDataRef sigd
);
211 SecCmsSignedDataEncodeBeforeData(SecCmsSignedDataRef sigd
);
214 * SecCmsSignedDataEncodeAfterData - do all the necessary things to a SignedData
215 * after all the encapsulated data was passed through the encoder.
218 * - create the signatures in all the SignerInfos
220 * Please note that nothing is done to the Certificates and CRLs in the message - this
221 * is entirely the responsibility of our callers.
224 SecCmsSignedDataEncodeAfterData(SecCmsSignedDataRef sigd
);
227 SecCmsSignedDataDecodeBeforeData(SecCmsSignedDataRef sigd
);
230 * SecCmsSignedDataDecodeAfterData - do all the necessary things to a SignedData
231 * after all the encapsulated data was passed through the decoder.
234 SecCmsSignedDataDecodeAfterData(SecCmsSignedDataRef sigd
);
237 * SecCmsSignedDataDecodeAfterEnd - do all the necessary things to a SignedData
238 * after all decoding is finished.
241 SecCmsSignedDataDecodeAfterEnd(SecCmsSignedDataRef sigd
);
244 /************************************************************************
245 * cmssiginfo.c - CMS signerInfo methods
246 ************************************************************************/
249 * SecCmsSignerInfoSign - sign something
253 SecCmsSignerInfoSign(SecCmsSignerInfoRef signerinfo
, SecAsn1Item
* digest
, SecAsn1Item
* contentType
);
256 * If trustRef is NULL the cert chain is verified and the VerificationStatus is set accordingly.
257 * Otherwise a SecTrust object is returned for the caller to evaluate using SecTrustEvaluate().
260 SecCmsSignerInfoVerifyCertificate(SecCmsSignerInfoRef signerinfo
, SecKeychainRef keychainOrArray
,
261 CFTypeRef policies
, SecTrustRef
*trustRef
);
264 * SecCmsSignerInfoVerify - verify the signature of a single SignerInfo
266 * Just verifies the signature. The assumption is that verification of the certificate
270 SecCmsSignerInfoVerify(SecCmsSignerInfoRef signerinfo
, SecAsn1Item
* digest
, SecAsn1Item
* contentType
);
273 * SecCmsSignerInfoAddAuthAttr - add an attribute to the
274 * authenticated (i.e. signed) attributes of "signerinfo".
277 SecCmsSignerInfoAddAuthAttr(SecCmsSignerInfoRef signerinfo
, SecCmsAttribute
*attr
);
280 * SecCmsSignerInfoAddUnauthAttr - add an attribute to the
281 * unauthenticated attributes of "signerinfo".
284 SecCmsSignerInfoAddUnauthAttr(SecCmsSignerInfoRef signerinfo
, SecCmsAttribute
*attr
);
287 SecCmsSignerInfoGetVersion(SecCmsSignerInfoRef signerinfo
);
291 @abstract Destroy a SignerInfo data structure.
294 SecCmsSignerInfoDestroy(SecCmsSignerInfoRef si
);
297 /************************************************************************
298 * cmsenvdata.c - CMS envelopedData methods
299 ************************************************************************/
303 @abstract Add a recipientinfo to the enveloped data msg.
304 @discussion Rip must be created on the same pool as edp - this is not enforced, though.
307 SecCmsEnvelopedDataAddRecipient(SecCmsEnvelopedDataRef edp
, SecCmsRecipientInfoRef rip
);
310 * SecCmsEnvelopedDataEncodeBeforeStart - prepare this envelopedData for encoding
312 * at this point, we need
313 * - recipientinfos set up with recipient's certificates
314 * - a content encryption algorithm (if none, 3DES will be used)
316 * this function will generate a random content encryption key (aka bulk key),
317 * initialize the recipientinfos with certificate identification and wrap the bulk key
318 * using the proper algorithm for every certificiate.
319 * it will finally set the bulk algorithm and key so that the encode step can find it.
322 SecCmsEnvelopedDataEncodeBeforeStart(SecCmsEnvelopedDataRef envd
);
325 * SecCmsEnvelopedDataEncodeBeforeData - set up encryption
328 SecCmsEnvelopedDataEncodeBeforeData(SecCmsEnvelopedDataRef envd
);
331 * SecCmsEnvelopedDataEncodeAfterData - finalize this envelopedData for encoding
334 SecCmsEnvelopedDataEncodeAfterData(SecCmsEnvelopedDataRef envd
);
337 * SecCmsEnvelopedDataDecodeBeforeData - find our recipientinfo,
338 * derive bulk key & set up our contentinfo
341 SecCmsEnvelopedDataDecodeBeforeData(SecCmsEnvelopedDataRef envd
);
344 * SecCmsEnvelopedDataDecodeAfterData - finish decrypting this envelopedData's content
347 SecCmsEnvelopedDataDecodeAfterData(SecCmsEnvelopedDataRef envd
);
350 * SecCmsEnvelopedDataDecodeAfterEnd - finish decoding this envelopedData
353 SecCmsEnvelopedDataDecodeAfterEnd(SecCmsEnvelopedDataRef envd
);
356 /************************************************************************
357 * cmsrecinfo.c - CMS recipientInfo methods
358 ************************************************************************/
361 SecCmsRecipientInfoGetVersion(SecCmsRecipientInfoRef ri
);
364 SecCmsRecipientInfoGetEncryptedKey(SecCmsRecipientInfoRef ri
, int subIndex
);
368 SecCmsRecipientInfoGetKeyEncryptionAlgorithmTag(SecCmsRecipientInfoRef ri
);
371 SecCmsRecipientInfoWrapBulkKey(SecCmsRecipientInfoRef ri
, SecSymmetricKeyRef bulkkey
, SECOidTag bulkalgtag
);
373 extern SecSymmetricKeyRef
374 SecCmsRecipientInfoUnwrapBulkKey(SecCmsRecipientInfoRef ri
, int subIndex
,
375 SecCertificateRef cert
, SecPrivateKeyRef privkey
, SECOidTag bulkalgtag
);
381 SecCmsRecipientInfoDestroy(SecCmsRecipientInfoRef ri
);
384 /************************************************************************
385 * cmsencdata.c - CMS encryptedData methods
386 ************************************************************************/
389 * SecCmsEncryptedDataEncodeBeforeStart - do all the necessary things to a EncryptedData
390 * before encoding begins.
393 * - set the correct version value.
394 * - get the encryption key
397 SecCmsEncryptedDataEncodeBeforeStart(SecCmsEncryptedDataRef encd
);
400 * SecCmsEncryptedDataEncodeBeforeData - set up encryption
403 SecCmsEncryptedDataEncodeBeforeData(SecCmsEncryptedDataRef encd
);
406 * SecCmsEncryptedDataEncodeAfterData - finalize this encryptedData for encoding
409 SecCmsEncryptedDataEncodeAfterData(SecCmsEncryptedDataRef encd
);
412 * SecCmsEncryptedDataDecodeBeforeData - find bulk key & set up decryption
415 SecCmsEncryptedDataDecodeBeforeData(SecCmsEncryptedDataRef encd
);
418 * SecCmsEncryptedDataDecodeAfterData - finish decrypting this encryptedData's content
421 SecCmsEncryptedDataDecodeAfterData(SecCmsEncryptedDataRef encd
);
424 * SecCmsEncryptedDataDecodeAfterEnd - finish decoding this encryptedData
427 SecCmsEncryptedDataDecodeAfterEnd(SecCmsEncryptedDataRef encd
);
430 /************************************************************************
431 * cmsdigdata.c - CMS encryptedData methods
432 ************************************************************************/
435 * SecCmsDigestedDataEncodeBeforeStart - do all the necessary things to a DigestedData
436 * before encoding begins.
439 * - set the right version number. The contentInfo's content type must be set up already.
442 SecCmsDigestedDataEncodeBeforeStart(SecCmsDigestedDataRef digd
);
445 * SecCmsDigestedDataEncodeBeforeData - do all the necessary things to a DigestedData
446 * before the encapsulated data is passed through the encoder.
449 * - set up the digests if necessary
452 SecCmsDigestedDataEncodeBeforeData(SecCmsDigestedDataRef digd
);
455 * SecCmsDigestedDataEncodeAfterData - do all the necessary things to a DigestedData
456 * after all the encapsulated data was passed through the encoder.
459 * - finish the digests
462 SecCmsDigestedDataEncodeAfterData(SecCmsDigestedDataRef digd
);
465 * SecCmsDigestedDataDecodeBeforeData - do all the necessary things to a DigestedData
466 * before the encapsulated data is passed through the encoder.
469 * - set up the digests if necessary
472 SecCmsDigestedDataDecodeBeforeData(SecCmsDigestedDataRef digd
);
475 * SecCmsDigestedDataDecodeAfterData - do all the necessary things to a DigestedData
476 * after all the encapsulated data was passed through the encoder.
479 * - finish the digests
482 SecCmsDigestedDataDecodeAfterData(SecCmsDigestedDataRef digd
);
485 * SecCmsDigestedDataDecodeAfterEnd - finalize a digestedData.
488 * - check the digests for equality
491 SecCmsDigestedDataDecodeAfterEnd(SecCmsDigestedDataRef digd
);
494 /************************************************************************
495 * cmsdigest.c - CMS encryptedData methods
496 ************************************************************************/
499 * SecCmsDigestContextStartSingle - same as SecCmsDigestContextStartMultiple, but
500 * only one algorithm.
502 extern SecCmsDigestContextRef
503 SecCmsDigestContextStartSingle(SECAlgorithmID
*digestalg
);
506 * SecCmsDigestContextFinishSingle - same as SecCmsDigestContextFinishMultiple,
507 * but for one digest.
510 SecCmsDigestContextFinishSingle(SecCmsDigestContextRef cmsdigcx
,
511 SecAsn1Item
* digest
);
515 @abstract Finish the digests being calculated and put them into to parralel
516 arrays of SecAsn1Items.
517 @param cmsdigcx A DigestContext object.
518 @param digestalgsp will contain a to an array of digest algorithms on
520 @param digestsp A EncryptedData object to set as the content of the cinfo
522 @result A result code. See "SecCmsBase.h" for possible results.
523 @discussion This function requires a DigestContext object which can be made
524 by calling SecCmsDigestContextStartSingle or
525 SecCmsDigestContextStartMultiple. The returned arrays remain valid
526 until SecCmsDigestContextDestroy is called.
527 @availability 10.4 and later
530 SecCmsDigestContextFinishMultiple(SecCmsDigestContextRef cmsdigcx
,
531 SECAlgorithmID
***digestalgsp
,
532 SecAsn1Item
* **digestsp
);
535 /************************************************************************/
538 #endif /* _CMSPRIV_H_ */