This section describes how to export password-protected non-container files with the C API.
To export password-protected files
Call the fpInit() or fpInitWithLicenseData() function.
Call the KVXMLConfig()
function with the following arguments :
Argument |
Parameter |
---|---|
|
|
|
|
|
The source file password. The password is a null-terminated string with a maximum length of 255 characters (the final byte is null). |
For example:
(*fpXMLConfig)(pKVXML,KVCFG_SETPASSWORD
,TRUE
,password
);
where password
is a null-terminated string of 255 or fewer characters.
fpConvertStream()
or KVXMLConvertFile()
function.
|