Export Password Protected Files

This section describes how to export password-protected non-container files with the C API.

To export password-protected files

  1. Call the fpInit() function.

  2. Call the KVXMLConfig() function with the following arguments :

    Argument

    Parameter

    nType

    KVCFG_SETPASSWORD

    nValue

    TRUE

    pData

    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.

  3. Call the fpConvertStream() or KVXMLConvertFile() function.