CryptoSys PKI Toolkit Manual
Cms.MakeSigData Method
Creates a CMS object of type SignedData from an input data file ready for sending as part of an S/MIME email
Syntax
[C#]
public static int MakeSigData(
string outputFile,
string inputFile,
string certList,
string privateKey,
Cms.Options options
)
[VB.NET]
Public Shared Function MakeSigData ( _
outputFile As String, _
inputFile As String, _
certList As String, _
privateKey As String, _
options As Cms.Options _
) As Integer
Parameters
- outputFile
- name of output file to be created
- inputFile
- name of file containing message data to be signed
- certList
- containing the filename of the signer's certificate and (optionally) a list of other certificates to be included in the output, separated by semi-colons(;)
- privateKey
- containing the private key data for the sender
- options
- Option flags. See Cms.Options.
Return Value
Zero if successful; otherwise it returns an
error code
Examples (VB.NET)
See
Example1
See Also
VB6/C equivalent: CMS_MakeSigData
[Contents] [Index]