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
);
100 SecCmsUtilGetHashObjByAlgID(SECAlgorithmID
*algid
);
103 * XXX I would *really* like to not have to do this, but the current
104 * signing interface gives me little choice.
107 SecCmsUtilMakeSignatureAlgorithm(SECOidTag hashalg
, SECOidTag encalg
);
109 extern const SecAsn1Template
*
110 SecCmsUtilGetTemplateByTypeTag(SECOidTag type
);
113 SecCmsUtilGetSizeByTypeTag(SECOidTag type
);
115 extern SecCmsContentInfoRef
116 SecCmsContentGetContentInfo(void *msg
, SECOidTag type
);
118 /************************************************************************
119 * cmsmessage.c - CMS message methods
120 ************************************************************************/
124 @abstract Set up a CMS message object for encoding or decoding.
125 @discussion used internally.
126 @param cmsg Pointer to a SecCmsMessage object
127 @param pwfn callback function for getting token password for enveloped
128 data content with a password recipient.
129 @param pwfn_arg first argument passed to pwfn when it is called.
130 @param encrypt_key_cb callback function for getting bulk key for encryptedData content.
131 @param encrypt_key_cb_arg first argument passed to encrypt_key_cb when it is
135 SecCmsMessageSetEncodingParams(SecCmsMessageRef cmsg
,
136 PK11PasswordFunc pwfn
, void *pwfn_arg
,
137 SecCmsGetDecryptKeyCallback encrypt_key_cb
, void *encrypt_key_cb_arg
);
139 /************************************************************************
140 * cmscinfo.c - CMS contentInfo methods
141 ************************************************************************/
144 Destroy a CMS contentInfo and all of its sub-pieces.
145 @param cinfo The contentInfo object to destroy.
148 SecCmsContentInfoDestroy(SecCmsContentInfoRef cinfo
);
151 * SecCmsContentInfoSetContent - set cinfo's content type & content to CMS object
154 SecCmsContentInfoSetContent(SecCmsContentInfoRef cinfo
, SECOidTag type
, void *ptr
);
157 /************************************************************************
158 * cmssigdata.c - CMS signedData methods
159 ************************************************************************/
162 SecCmsSignedDataSetDigestValue(SecCmsSignedDataRef sigd
,
163 SECOidTag digestalgtag
,
164 SecAsn1Item
* digestdata
);
167 SecCmsSignedDataAddDigest(PRArenaPool
*poolp
,
168 SecCmsSignedDataRef sigd
,
169 SECOidTag digestalgtag
,
170 SecAsn1Item
* digest
);
173 SecCmsSignedDataGetDigestByAlgTag(SecCmsSignedDataRef sigd
, SECOidTag algtag
);
176 SecCmsSignedDataGetDigestValue(SecCmsSignedDataRef sigd
, SECOidTag digestalgtag
);
182 SecCmsSignedDataAddSignerInfo(SecCmsSignedDataRef sigd
,
183 SecCmsSignerInfoRef signerinfo
);
189 SecCmsSignedDataSetDigests(SecCmsSignedDataRef sigd
,
190 SECAlgorithmID
**digestalgs
,
191 SecAsn1Item
* *digests
);
194 * SecCmsSignedDataEncodeBeforeStart - do all the necessary things to a SignedData
195 * before start of encoding.
198 * - find out about the right value to put into sigd->version
199 * - come up with a list of digestAlgorithms (which should be the union of the algorithms
200 * in the signerinfos).
201 * If we happen to have a pre-set list of algorithms (and digest values!), we
202 * check if we have all the signerinfos' algorithms. If not, this is an error.
205 SecCmsSignedDataEncodeBeforeStart(SecCmsSignedDataRef sigd
);
208 SecCmsSignedDataEncodeBeforeData(SecCmsSignedDataRef sigd
);
211 * SecCmsSignedDataEncodeAfterData - do all the necessary things to a SignedData
212 * after all the encapsulated data was passed through the encoder.
215 * - create the signatures in all the SignerInfos
217 * Please note that nothing is done to the Certificates and CRLs in the message - this
218 * is entirely the responsibility of our callers.
221 SecCmsSignedDataEncodeAfterData(SecCmsSignedDataRef sigd
);
224 SecCmsSignedDataDecodeBeforeData(SecCmsSignedDataRef sigd
);
227 * SecCmsSignedDataDecodeAfterData - do all the necessary things to a SignedData
228 * after all the encapsulated data was passed through the decoder.
231 SecCmsSignedDataDecodeAfterData(SecCmsSignedDataRef sigd
);
234 * SecCmsSignedDataDecodeAfterEnd - do all the necessary things to a SignedData
235 * after all decoding is finished.
238 SecCmsSignedDataDecodeAfterEnd(SecCmsSignedDataRef sigd
);
241 /************************************************************************
242 * cmssiginfo.c - CMS signerInfo methods
243 ************************************************************************/
246 * SecCmsSignerInfoSign - sign something
250 SecCmsSignerInfoSign(SecCmsSignerInfoRef signerinfo
, SecAsn1Item
* digest
, SecAsn1Item
* contentType
);
253 * If trustRef is NULL the cert chain is verified and the VerificationStatus is set accordingly.
254 * Otherwise a SecTrust object is returned for the caller to evaluate using SecTrustEvaluate().
257 SecCmsSignerInfoVerifyCertificate(SecCmsSignerInfoRef signerinfo
, SecKeychainRef keychainOrArray
,
258 CFTypeRef policies
, SecTrustRef
*trustRef
);
261 * SecCmsSignerInfoVerify - verify the signature of a single SignerInfo
263 * Just verifies the signature. The assumption is that verification of the certificate
267 SecCmsSignerInfoVerify(SecCmsSignerInfoRef signerinfo
, SecAsn1Item
* digest
, SecAsn1Item
* contentType
);
270 * SecCmsSignerInfoAddAuthAttr - add an attribute to the
271 * authenticated (i.e. signed) attributes of "signerinfo".
274 SecCmsSignerInfoAddAuthAttr(SecCmsSignerInfoRef signerinfo
, SecCmsAttribute
*attr
);
277 * SecCmsSignerInfoAddUnauthAttr - add an attribute to the
278 * unauthenticated attributes of "signerinfo".
281 SecCmsSignerInfoAddUnauthAttr(SecCmsSignerInfoRef signerinfo
, SecCmsAttribute
*attr
);
284 SecCmsSignerInfoGetVersion(SecCmsSignerInfoRef signerinfo
);
288 @abstract Destroy a SignerInfo data structure.
291 SecCmsSignerInfoDestroy(SecCmsSignerInfoRef si
);
294 /************************************************************************
295 * cmsenvdata.c - CMS envelopedData methods
296 ************************************************************************/
300 @abstract Add a recipientinfo to the enveloped data msg.
301 @discussion Rip must be created on the same pool as edp - this is not enforced, though.
304 SecCmsEnvelopedDataAddRecipient(SecCmsEnvelopedDataRef edp
, SecCmsRecipientInfoRef rip
);
307 * SecCmsEnvelopedDataEncodeBeforeStart - prepare this envelopedData for encoding
309 * at this point, we need
310 * - recipientinfos set up with recipient's certificates
311 * - a content encryption algorithm (if none, 3DES will be used)
313 * this function will generate a random content encryption key (aka bulk key),
314 * initialize the recipientinfos with certificate identification and wrap the bulk key
315 * using the proper algorithm for every certificiate.
316 * it will finally set the bulk algorithm and key so that the encode step can find it.
319 SecCmsEnvelopedDataEncodeBeforeStart(SecCmsEnvelopedDataRef envd
);
322 * SecCmsEnvelopedDataEncodeBeforeData - set up encryption
325 SecCmsEnvelopedDataEncodeBeforeData(SecCmsEnvelopedDataRef envd
);
328 * SecCmsEnvelopedDataEncodeAfterData - finalize this envelopedData for encoding
331 SecCmsEnvelopedDataEncodeAfterData(SecCmsEnvelopedDataRef envd
);
334 * SecCmsEnvelopedDataDecodeBeforeData - find our recipientinfo,
335 * derive bulk key & set up our contentinfo
338 SecCmsEnvelopedDataDecodeBeforeData(SecCmsEnvelopedDataRef envd
);
341 * SecCmsEnvelopedDataDecodeAfterData - finish decrypting this envelopedData's content
344 SecCmsEnvelopedDataDecodeAfterData(SecCmsEnvelopedDataRef envd
);
347 * SecCmsEnvelopedDataDecodeAfterEnd - finish decoding this envelopedData
350 SecCmsEnvelopedDataDecodeAfterEnd(SecCmsEnvelopedDataRef envd
);
353 /************************************************************************
354 * cmsrecinfo.c - CMS recipientInfo methods
355 ************************************************************************/
358 SecCmsRecipientInfoGetVersion(SecCmsRecipientInfoRef ri
);
361 SecCmsRecipientInfoGetEncryptedKey(SecCmsRecipientInfoRef ri
, int subIndex
);
365 SecCmsRecipientInfoGetKeyEncryptionAlgorithmTag(SecCmsRecipientInfoRef ri
);
368 SecCmsRecipientInfoWrapBulkKey(SecCmsRecipientInfoRef ri
, SecSymmetricKeyRef bulkkey
, SECOidTag bulkalgtag
);
370 extern SecSymmetricKeyRef
371 SecCmsRecipientInfoUnwrapBulkKey(SecCmsRecipientInfoRef ri
, int subIndex
,
372 SecCertificateRef cert
, SecPrivateKeyRef privkey
, SECOidTag bulkalgtag
);
378 SecCmsRecipientInfoDestroy(SecCmsRecipientInfoRef ri
);
381 /************************************************************************
382 * cmsencdata.c - CMS encryptedData methods
383 ************************************************************************/
386 * SecCmsEncryptedDataEncodeBeforeStart - do all the necessary things to a EncryptedData
387 * before encoding begins.
390 * - set the correct version value.
391 * - get the encryption key
394 SecCmsEncryptedDataEncodeBeforeStart(SecCmsEncryptedDataRef encd
);
397 * SecCmsEncryptedDataEncodeBeforeData - set up encryption
400 SecCmsEncryptedDataEncodeBeforeData(SecCmsEncryptedDataRef encd
);
403 * SecCmsEncryptedDataEncodeAfterData - finalize this encryptedData for encoding
406 SecCmsEncryptedDataEncodeAfterData(SecCmsEncryptedDataRef encd
);
409 * SecCmsEncryptedDataDecodeBeforeData - find bulk key & set up decryption
412 SecCmsEncryptedDataDecodeBeforeData(SecCmsEncryptedDataRef encd
);
415 * SecCmsEncryptedDataDecodeAfterData - finish decrypting this encryptedData's content
418 SecCmsEncryptedDataDecodeAfterData(SecCmsEncryptedDataRef encd
);
421 * SecCmsEncryptedDataDecodeAfterEnd - finish decoding this encryptedData
424 SecCmsEncryptedDataDecodeAfterEnd(SecCmsEncryptedDataRef encd
);
427 /************************************************************************
428 * cmsdigdata.c - CMS encryptedData methods
429 ************************************************************************/
432 * SecCmsDigestedDataEncodeBeforeStart - do all the necessary things to a DigestedData
433 * before encoding begins.
436 * - set the right version number. The contentInfo's content type must be set up already.
439 SecCmsDigestedDataEncodeBeforeStart(SecCmsDigestedDataRef digd
);
442 * SecCmsDigestedDataEncodeBeforeData - do all the necessary things to a DigestedData
443 * before the encapsulated data is passed through the encoder.
446 * - set up the digests if necessary
449 SecCmsDigestedDataEncodeBeforeData(SecCmsDigestedDataRef digd
);
452 * SecCmsDigestedDataEncodeAfterData - do all the necessary things to a DigestedData
453 * after all the encapsulated data was passed through the encoder.
456 * - finish the digests
459 SecCmsDigestedDataEncodeAfterData(SecCmsDigestedDataRef digd
);
462 * SecCmsDigestedDataDecodeBeforeData - do all the necessary things to a DigestedData
463 * before the encapsulated data is passed through the encoder.
466 * - set up the digests if necessary
469 SecCmsDigestedDataDecodeBeforeData(SecCmsDigestedDataRef digd
);
472 * SecCmsDigestedDataDecodeAfterData - do all the necessary things to a DigestedData
473 * after all the encapsulated data was passed through the encoder.
476 * - finish the digests
479 SecCmsDigestedDataDecodeAfterData(SecCmsDigestedDataRef digd
);
482 * SecCmsDigestedDataDecodeAfterEnd - finalize a digestedData.
485 * - check the digests for equality
488 SecCmsDigestedDataDecodeAfterEnd(SecCmsDigestedDataRef digd
);
491 /************************************************************************
492 * cmsdigest.c - CMS encryptedData methods
493 ************************************************************************/
496 * SecCmsDigestContextStartSingle - same as SecCmsDigestContextStartMultiple, but
497 * only one algorithm.
499 extern SecCmsDigestContextRef
500 SecCmsDigestContextStartSingle(SECAlgorithmID
*digestalg
);
503 * SecCmsDigestContextFinishSingle - same as SecCmsDigestContextFinishMultiple,
504 * but for one digest.
507 SecCmsDigestContextFinishSingle(SecCmsDigestContextRef cmsdigcx
,
508 SecAsn1Item
* digest
);
512 @abstract Finish the digests being calculated and put them into to parralel
513 arrays of SecAsn1Items.
514 @param cmsdigcx A DigestContext object.
515 @param digestalgsp will contain a to an array of digest algorithms on
517 @param digestsp A EncryptedData object to set as the content of the cinfo
519 @result A result code. See "SecCmsBase.h" for possible results.
520 @discussion This function requires a DigestContext object which can be made
521 by calling SecCmsDigestContextStartSingle or
522 SecCmsDigestContextStartMultiple. The returned arrays remain valid
523 until SecCmsDigestContextDestroy is called.
524 @availability 10.4 and later
527 SecCmsDigestContextFinishMultiple(SecCmsDigestContextRef cmsdigcx
,
528 SECAlgorithmID
***digestalgsp
,
529 SecAsn1Item
* **digestsp
);
532 /************************************************************************/
535 #endif /* _CMSPRIV_H_ */