|
Properties
# Returns a boolean value get_Utf8( )
# b is a boolean (input) put_Utf8( b )
When set to true, all "const char *" arguments are expected to be utf-8 strings. If set to false, the "const char *" arguments are expected to be ANSI strings.
Methods
# pfxFilename is a string (input) # password is a string (input) # bMachineKeyset is a boolean (input) # bLocalMachineCertStore is a boolean (input) # bExportable is a boolean (input) # bUseWarningDialog is a boolean (input) # Returns a boolean value ImportPfxFile( pfxFilename, password, bMachineKeyset, bLocalMachineCertStore, bExportable, bUseWarningDialog )
Imports the certificate(s) and private key(s) contained within a PFX file onto the computer. If the "machine keyset" argument is true, the private keys are stored under local computer and not the current user. If the "local machine cert store" argument is true, the certificates are saved in the local machine certificate store. If the "exportable" argument is true, the private keys are marked as exportable. If the "use warning dialog" argument is true, the user is to be notified through a dialog box or other method when certain actions are attempting to use the private key. The precise 'behavior is specified by the cryptographic service provider (CSP) being used.Returns true for success, false for failure.
# str is a CkString object (output) LastErrorHtml( str )
Error information in HTML format for the last method called.
# str is a CkString object (output) LastErrorText( str )
Error information in plain-text format for the last method called.
# str is a CkString object (output) LastErrorXml( str )
Error information in XML format for the last method called.
# filename is a string (input) # Returns a boolean value SaveLastError( filename )
Saves the last error information to an XML formatted file.
# unlockCode is a string (input) # Returns a boolean value UnlockComponent( unlockCode )
Unlocks the component. This must be called once prior to using the component.Returns true for success, false for failure.
|