IAppxEncryptionFactory2::CreateEncryptedPackageWriter method (appxpackaging.h)

Creates a new instance of an IAppxEncryptedPackageWriter.

Syntax

HRESULT CreateEncryptedPackageWriter(
  [in]          IStream                               *outputStream,
  [in]          IStream                               *manifestStream,
  [in]          IStream                               *contentGroupMapStream,
  [in]          const APPX_ENCRYPTED_PACKAGE_SETTINGS *settings,
  [in]          const APPX_KEY_INFO                   *keyInfo,
  [in]          const APPX_ENCRYPTED_EXEMPTIONS       *exemptedFiles,
  [out, retval] IAppxEncryptedPackageWriter           **packageWriter
);

Parameters

[in] outputStream

A writable stream for sending bytes produced by the app package.

[in] manifestStream

A readable stream that defines the package for the AppxManifest.xml.

[in] contentGroupMapStream

A stream that defines the content group map.

[in] settings

Settings for creating the package.

[in] keyInfo

Key info containing the base encryption key and key ID for encrypting the package. The base encryption key is used to derive the per file encryption keys. If this parameter is null, the global test key and key ID are used.

[in] exemptedFiles

Files exempted from the package writer.

[out, retval] packageWriter

The package writer object created.

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Minimum supported client Windows 10 [desktop apps only]
Minimum supported server Windows Server 2016 [desktop apps only]
Target Platform Windows
Header appxpackaging.h

See also

IAppxEncryptionFactory2