X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/5dd5f9ec28f304ca377c42fd7f711d6cf12b90e1..5c19dc3ae3bd8e40a9c028b0deddd50ff337692c:/libsecurity_smime/Security/SecCmsEncoder.h diff --git a/libsecurity_smime/Security/SecCmsEncoder.h b/libsecurity_smime/Security/SecCmsEncoder.h new file mode 100644 index 00000000..ae45ad9a --- /dev/null +++ b/libsecurity_smime/Security/SecCmsEncoder.h @@ -0,0 +1,134 @@ +/* + * Copyright (c) 2004,2008,2010 Apple Inc. All Rights Reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +/*! + @header SecCmsEncoder.h + @Copyright (c) 2004,2008,2010 Apple Inc. All Rights Reserved. + + @availability 10.4 and later + @abstract CMS message encoding + @discussion The functions here implement functions for encoding + Cryptographic Message Syntax (CMS) objects as described + in rfc3369. + A SecCmsEncoder object is used to encode CMS messages into BER. + */ + +#ifndef _SECURITY_SECCMSENCODER_H_ +#define _SECURITY_SECCMSENCODER_H_ 1 + +#include +#include + + +#if defined(__cplusplus) +extern "C" { +#endif + + +/*! @functiongroup Streaming interface */ +/*! + @function + @abstract Set up encoding of a CMS message. + @param cmsg The SecCmsMessageRef to be encoded. + @param outputfn callback function for delivery of BER-encoded output will + not be called if NULL. + @param outputarg first argument passed to outputfn when it is called. + @param dest If non-NULL, a CFMutableDataRef to which the + BER-encoded output will be appended. + @param pwfn callback function for getting token password for enveloped + data content with a password recipient. + @param pwfn_arg first argument passed to pwfn when it is called. + @param encrypt_key_cb callback function for getting bulk key for encryptedData content. + @param encrypt_key_cb_arg first argument passed to encrypt_key_cb when it is + called. + @param detached_digestalgs digest algorithms in detached_digests + @param detached_digests digests from detached content (one for every element + in detached_digestalgs). + @result On success a pointer to a SecCmsMessage containing the decoded message + is returned. On failure returns NULL. Call PR_GetError() to find out what + went wrong in this case. + @availability 10.4 and later + */ +extern OSStatus +SecCmsEncoderCreate(SecCmsMessageRef cmsg, + SecCmsContentCallback outputfn, void *outputarg, + CFMutableDataRef outBer, + PK11PasswordFunc pwfn, void *pwfn_arg, + SecCmsGetDecryptKeyCallback encrypt_key_cb, void *encrypt_key_cb_arg, + SecCmsEncoderRef *outEncoder); + +/*! + @function + @abstract Take content data delivery from the user + @param encoder encoder context + @param data content data + @param len length of content data + @result On success 0 is returned. On failure returns non zero. Call + PR_GetError() to find out what went wrong in this case. + @availability 10.4 and later + */ +extern OSStatus +SecCmsEncoderUpdate(SecCmsEncoderRef encoder, const void *data, CFIndex len); + +/*! + @function + @abstract Abort a (presumably failed) encoding process. + @param encoder Pointer to a SecCmsEncoderContext created with SecCmsEncoderCreate(). + @availability 10.4 and later + */ +extern void +SecCmsEncoderDestroy(SecCmsEncoderRef encoder); + +/*! + @function + @abstract Signal the end of data. + @discussion Walks down the chain of encoders and the finishes them from the + innermost out. + @param encoder Pointer to a SecCmsEncoder created with SecCmsEncoderCreate(). + @result On success 0 is returned. On failure returns non zero. Call + PR_GetError() to find out what went wrong in this case. + @availability 10.4 and later + */ +extern OSStatus +SecCmsEncoderFinish(SecCmsEncoderRef encoder); + +/*! @functiongroup One shot interface */ +/*! + @function + @abstract BER Encode a CMS message. + @param cmsg The SecCmsMessageRef to be encoded. + @param input The inner content of the message. + @param outBer A CFMutableDataRef to which the + BER-encoded output will be appended. + @discussion BER Encode a CMS message, with input being the plaintext message and outBer being the output, stored in arena's pool. + */ +extern OSStatus +SecCmsMessageEncode(SecCmsMessageRef cmsg, const SecAsn1Item *input, + CFMutableDataRef outBer); + + +#if defined(__cplusplus) +} +#endif + +#endif /* _SECURITY_SECCMSENCODER_H_ */