<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How to enable Data Encryption In Qlik Sense Enterprise On Windows in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/ta-p/1712094</link>
    <description>&lt;P&gt;Qlik Sense allows for Data Encryption for Qlik Sense Apps (QVF) and Data (QVD) Files.&lt;/P&gt;
&lt;P&gt;Qlik Sense Engine can encrypt data by using a data encryption key (DEK), which is generated from a&amp;nbsp;certificate-based key encryption key (KEK). The DEK is unique to each encrypted file and is stored&amp;nbsp;alongside the encrypted data (inside the QVF and QVD files)&amp;nbsp;in an encrypted format using RSA. The industry standard AES-256 GCM is used as the data encryption algorithm. Decryption&amp;nbsp;requires access to the same certificate as used during encryption, which mean that the KEK certificate thumbprint in the certificate store must match the thumbprint used for the DEK generation.&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Instructions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Data encryption can be enabled in&amp;nbsp;the Service Cluster configuration of the Qlik Sense Management Console. See the Online Help at Qlik Sense Enterprise on Windows &amp;gt; Administer Qlik Sense Enterprise on Windows &amp;gt; Managing a Qlik Sense Enterprise on Windows site &amp;gt; QMC resources overview &amp;gt; &lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/service-cluster.htm" target="_blank" rel="noopener"&gt;&lt;I&gt;Service cluster &amp;gt; Data encryption&lt;/I&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data encryption in service cluster.png" style="width: 773px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48742i0DF75CF82FD3E122/image-size/large?v=v2&amp;amp;px=999" role="button" title="data encryption in service cluster.png" alt="data encryption in service cluster.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4 id="QlikSense:DataEncryption-EnableEncryption"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Detailed Instructions with Example&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;This is a simple example of how to explore data&amp;nbsp;encryption in Qlik Sense Enterprise on Windows.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a new sample app, like the attached&amp;nbsp;ascii-table.qvf
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Add a simple script to generate an ASCII table
&lt;PRE class="ckeditor_codeblock"&gt;ASCII:
Load
&amp;nbsp;if(RecNo()&amp;gt;=65 and RecNo()&amp;lt;=90,RecNo()-64) as Num,
&amp;nbsp;Chr(RecNo()) as AsciiAlpha,
&amp;nbsp;RecNo() as AsciiNum
autogenerate 255
&amp;nbsp;Where (RecNo()&amp;gt;=32 and RecNo()&amp;lt;=126) or RecNo()&amp;gt;=160 ;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Create a folder connection to a folder where the QVD can be written&lt;/LI&gt;
&lt;LI&gt;Generate QVD of a data table. Note, change the &lt;FONT face="courier new,courier"&gt;lib://&lt;/FONT&gt; reference to match a valid data connection
&lt;PRE class="ckeditor_codeblock"&gt;STORE ASCII INTO [lib://MyData (domain_administrator)/ascii.qvd] (QVD);&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Reload the app&lt;/LI&gt;
&lt;LI&gt;Copy the app and qvd files to allow comparison after enabling encryption&amp;nbsp;
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Default app location:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;C:\ProgramData\Qlik\Sense\Apps&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;The QVD location is per the app's folder data connection path&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Create a certificate to test, following&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/encryption-certificates.htm" target="_blank" rel="noopener"&gt;Encryption Certificates&lt;/A&gt;.
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Run Powershell as the Qlik Sense service account or log in to Windows as the Qlik Sense service account.&lt;BR /&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE class="quote"&gt;Doing this with the correct account is crucial to make the generated certificate available to the service account.&lt;/BLOCKQUOTE&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="run as a different user.png" style="width: 304px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48750i512FFC98AC0113F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="run as a different user.png" alt="run as a different user.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Generate a self-signed certificate to use as an encryption key&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Windows Server 2016&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-SelfSignedCertificate -Subject "QlikSenseDataEncrytion" `
                          -KeyAlgorithm RSA `
                          -KeyLength 4096 `
                          -Provider "Microsoft Software Key Storage Provider" `
                          -KeyExportPolicy ExportableEncrypted `
                          -CertStoreLocation "cert:\CurrentUser\My"&lt;/PRE&gt;
&lt;BR /&gt;&lt;STRONG&gt;Windows Server 2012 R2&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-SelfSignedCertificate -DnsName "QlikSenseDataEncrytion" `
                          -CertStoreLocation "cert:\CurrentUser\My"
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Validate that cert is available&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Get the cert thumbprint from generation result. This thumbprint can be used as key-encryption key (KEK) by Qlik Sense.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="get thumbprint power shell.png" style="width: 502px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48749i681AB43C57CF970B/image-size/large?v=v2&amp;amp;px=999" role="button" title="get thumbprint power shell.png" alt="get thumbprint power shell.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;BR /&gt;Note:&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN&gt;When copying the certificate thumbprint, an invisible character may be added at the beginning of the certificate thumbprint. Verify the thumbprint before executing the command in PowerShell:&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Encryption_issue.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52230iEF03E56E3205BAA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Encryption_issue.png" alt="Encryption_issue.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Enable encryption in Service Cluster settings per&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/service-cluster.htm" target="_blank" rel="noopener"&gt;Data Encryption&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data encryption enabled.png" style="width: 596px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48748i2F387A0B14764D2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="data encryption enabled.png" alt="data encryption enabled.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Restart Qlik Sense Engine service&lt;/LI&gt;
&lt;LI&gt;Reload the app to generate data encryption keys (DEK) for encrypted QVF and QVD files.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Disable Encryption&lt;/FONT&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Files remain encrypted after disabling encryption until the next following app reload or QVD generation.&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Disable encryption in QMC &amp;gt; Service Cluster
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Uncheck both encryption options&lt;/LI&gt;
&lt;LI&gt;Remove encryption key&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data encryption.png" style="width: 509px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48747i8C5103ECB401533A/image-size/large?v=v2&amp;amp;px=999" role="button" title="data encryption.png" alt="data encryption.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Restart Qlik Sense Engine Service on all nodes&lt;/LI&gt;
&lt;LI&gt;Complete a full successful app reload cycle, including QVD generators
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;All QVF files have been decrypted&lt;/LI&gt;
&lt;LI&gt;All QVD files have been decrypted&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;File Comparison&lt;/FONT&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Compare the unencrypted and encrypted files to validate successful encryption&lt;/P&gt;
&lt;P&gt;Qlik Sense app (.qvf) file is a binary file, which makes it harder to visually confirm the encryption effect.&lt;/P&gt;
&lt;P&gt;Encrypted app files have multiple references to&amp;nbsp;&lt;EM&gt;ciphertext&lt;/EM&gt;, which in turn refers to secrets used for the encryption.&lt;/P&gt;
&lt;P&gt;App file without encryption has no such references. The cypher text portion of QVF represents the data encryption key (DEK) used to encrypt the app data and bookmarks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file comparison 01.png" style="width: 798px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48746i5E8DF20DD5D2726C/image-size/large?v=v2&amp;amp;px=999" role="button" title="file comparison 01.png" alt="file comparison 01.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file comparison 02.png" style="width: 780px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48745i77793BABA2D7372C/image-size/large?v=v2&amp;amp;px=999" role="button" title="file comparison 02.png" alt="file comparison 02.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Encrypted data (.qvd) files has "Encryption Info"&amp;nbsp;defined, which includes the data encryption (DEK) references.&lt;BR /&gt;Data part is also significantly different, even though both version have exactly the same static data content.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file comparison 03.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48744iFF44C374FBBF5DEA/image-size/large?v=v2&amp;amp;px=999" role="button" title="file comparison 03.png" alt="file comparison 03.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H4 id="QlikSense:DataEncryption-EncryptionScope"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Encryption Scope&lt;/FONT&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Encryption only applies at rest, meaning when stored on disk. &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Data in memory is not encrypted&lt;/LI&gt;
&lt;LI&gt;Exported app (QVF) file is not encrypted&lt;/LI&gt;
&lt;LI&gt;Encrypted file (from apps storage folder) can not be imported in an other Qlik Sense instance.&lt;BR /&gt;The import fails as the importing server is unable to parse the encrypted file.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="failed to import app please check log file.png" style="width: 601px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48743i8A82665A1029EA19/image-size/large?v=v2&amp;amp;px=999" role="button" title="failed to import app please check log file.png" alt="failed to import app please check log file.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/Qlik-Sense-on-Windows-Data-Encryption-Key-Rotation/ta-p/1712447" target="_blank" rel="noopener"&gt;Qlik Sense on Windows: Data Encryption Key Rotation&lt;/A&gt;&lt;BR /&gt;&lt;A style="background-color: #ffffff;" href="https://community.qlik.com/t5/Support-Knowledge-Base/Using-Server-Certificates-for-Data-Encryption/ta-p/1712993" target="_blank" rel="noopener"&gt;Using Server Certificates for Data Encryption&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Aug 2024 07:48:58 GMT</pubDate>
    <dc:creator>ToniKautto</dc:creator>
    <dc:date>2024-08-28T07:48:58Z</dc:date>
    <item>
      <title>How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/ta-p/1712094</link>
      <description>&lt;P&gt;Qlik Sense allows for Data Encryption for Qlik Sense Apps (QVF) and Data (QVD) Files.&lt;/P&gt;
&lt;P&gt;Qlik Sense Engine can encrypt data by using a data encryption key (DEK), which is generated from a&amp;nbsp;certificate-based key encryption key (KEK). The DEK is unique to each encrypted file and is stored&amp;nbsp;alongside the encrypted data (inside the QVF and QVD files)&amp;nbsp;in an encrypted format using RSA. The industry standard AES-256 GCM is used as the data encryption algorithm. Decryption&amp;nbsp;requires access to the same certificate as used during encryption, which mean that the KEK certificate thumbprint in the certificate store must match the thumbprint used for the DEK generation.&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Instructions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Data encryption can be enabled in&amp;nbsp;the Service Cluster configuration of the Qlik Sense Management Console. See the Online Help at Qlik Sense Enterprise on Windows &amp;gt; Administer Qlik Sense Enterprise on Windows &amp;gt; Managing a Qlik Sense Enterprise on Windows site &amp;gt; QMC resources overview &amp;gt; &lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/service-cluster.htm" target="_blank" rel="noopener"&gt;&lt;I&gt;Service cluster &amp;gt; Data encryption&lt;/I&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data encryption in service cluster.png" style="width: 773px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48742i0DF75CF82FD3E122/image-size/large?v=v2&amp;amp;px=999" role="button" title="data encryption in service cluster.png" alt="data encryption in service cluster.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4 id="QlikSense:DataEncryption-EnableEncryption"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Detailed Instructions with Example&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;This is a simple example of how to explore data&amp;nbsp;encryption in Qlik Sense Enterprise on Windows.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a new sample app, like the attached&amp;nbsp;ascii-table.qvf
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Add a simple script to generate an ASCII table
&lt;PRE class="ckeditor_codeblock"&gt;ASCII:
Load
&amp;nbsp;if(RecNo()&amp;gt;=65 and RecNo()&amp;lt;=90,RecNo()-64) as Num,
&amp;nbsp;Chr(RecNo()) as AsciiAlpha,
&amp;nbsp;RecNo() as AsciiNum
autogenerate 255
&amp;nbsp;Where (RecNo()&amp;gt;=32 and RecNo()&amp;lt;=126) or RecNo()&amp;gt;=160 ;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Create a folder connection to a folder where the QVD can be written&lt;/LI&gt;
&lt;LI&gt;Generate QVD of a data table. Note, change the &lt;FONT face="courier new,courier"&gt;lib://&lt;/FONT&gt; reference to match a valid data connection
&lt;PRE class="ckeditor_codeblock"&gt;STORE ASCII INTO [lib://MyData (domain_administrator)/ascii.qvd] (QVD);&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Reload the app&lt;/LI&gt;
&lt;LI&gt;Copy the app and qvd files to allow comparison after enabling encryption&amp;nbsp;
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Default app location:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;C:\ProgramData\Qlik\Sense\Apps&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;The QVD location is per the app's folder data connection path&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Create a certificate to test, following&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/encryption-certificates.htm" target="_blank" rel="noopener"&gt;Encryption Certificates&lt;/A&gt;.
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Run Powershell as the Qlik Sense service account or log in to Windows as the Qlik Sense service account.&lt;BR /&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE class="quote"&gt;Doing this with the correct account is crucial to make the generated certificate available to the service account.&lt;/BLOCKQUOTE&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="run as a different user.png" style="width: 304px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48750i512FFC98AC0113F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="run as a different user.png" alt="run as a different user.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Generate a self-signed certificate to use as an encryption key&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Windows Server 2016&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-SelfSignedCertificate -Subject "QlikSenseDataEncrytion" `
                          -KeyAlgorithm RSA `
                          -KeyLength 4096 `
                          -Provider "Microsoft Software Key Storage Provider" `
                          -KeyExportPolicy ExportableEncrypted `
                          -CertStoreLocation "cert:\CurrentUser\My"&lt;/PRE&gt;
&lt;BR /&gt;&lt;STRONG&gt;Windows Server 2012 R2&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-SelfSignedCertificate -DnsName "QlikSenseDataEncrytion" `
                          -CertStoreLocation "cert:\CurrentUser\My"
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Validate that cert is available&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Get the cert thumbprint from generation result. This thumbprint can be used as key-encryption key (KEK) by Qlik Sense.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="get thumbprint power shell.png" style="width: 502px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48749i681AB43C57CF970B/image-size/large?v=v2&amp;amp;px=999" role="button" title="get thumbprint power shell.png" alt="get thumbprint power shell.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;BR /&gt;Note:&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN&gt;When copying the certificate thumbprint, an invisible character may be added at the beginning of the certificate thumbprint. Verify the thumbprint before executing the command in PowerShell:&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Encryption_issue.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52230iEF03E56E3205BAA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Encryption_issue.png" alt="Encryption_issue.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Enable encryption in Service Cluster settings per&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/service-cluster.htm" target="_blank" rel="noopener"&gt;Data Encryption&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data encryption enabled.png" style="width: 596px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48748i2F387A0B14764D2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="data encryption enabled.png" alt="data encryption enabled.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Restart Qlik Sense Engine service&lt;/LI&gt;
&lt;LI&gt;Reload the app to generate data encryption keys (DEK) for encrypted QVF and QVD files.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Disable Encryption&lt;/FONT&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Files remain encrypted after disabling encryption until the next following app reload or QVD generation.&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Disable encryption in QMC &amp;gt; Service Cluster
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Uncheck both encryption options&lt;/LI&gt;
&lt;LI&gt;Remove encryption key&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data encryption.png" style="width: 509px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48747i8C5103ECB401533A/image-size/large?v=v2&amp;amp;px=999" role="button" title="data encryption.png" alt="data encryption.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Restart Qlik Sense Engine Service on all nodes&lt;/LI&gt;
&lt;LI&gt;Complete a full successful app reload cycle, including QVD generators
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;All QVF files have been decrypted&lt;/LI&gt;
&lt;LI&gt;All QVD files have been decrypted&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;File Comparison&lt;/FONT&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Compare the unencrypted and encrypted files to validate successful encryption&lt;/P&gt;
&lt;P&gt;Qlik Sense app (.qvf) file is a binary file, which makes it harder to visually confirm the encryption effect.&lt;/P&gt;
&lt;P&gt;Encrypted app files have multiple references to&amp;nbsp;&lt;EM&gt;ciphertext&lt;/EM&gt;, which in turn refers to secrets used for the encryption.&lt;/P&gt;
&lt;P&gt;App file without encryption has no such references. The cypher text portion of QVF represents the data encryption key (DEK) used to encrypt the app data and bookmarks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file comparison 01.png" style="width: 798px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48746i5E8DF20DD5D2726C/image-size/large?v=v2&amp;amp;px=999" role="button" title="file comparison 01.png" alt="file comparison 01.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file comparison 02.png" style="width: 780px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48745i77793BABA2D7372C/image-size/large?v=v2&amp;amp;px=999" role="button" title="file comparison 02.png" alt="file comparison 02.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Encrypted data (.qvd) files has "Encryption Info"&amp;nbsp;defined, which includes the data encryption (DEK) references.&lt;BR /&gt;Data part is also significantly different, even though both version have exactly the same static data content.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file comparison 03.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48744iFF44C374FBBF5DEA/image-size/large?v=v2&amp;amp;px=999" role="button" title="file comparison 03.png" alt="file comparison 03.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H4 id="QlikSense:DataEncryption-EncryptionScope"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Encryption Scope&lt;/FONT&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Encryption only applies at rest, meaning when stored on disk. &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Data in memory is not encrypted&lt;/LI&gt;
&lt;LI&gt;Exported app (QVF) file is not encrypted&lt;/LI&gt;
&lt;LI&gt;Encrypted file (from apps storage folder) can not be imported in an other Qlik Sense instance.&lt;BR /&gt;The import fails as the importing server is unable to parse the encrypted file.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="failed to import app please check log file.png" style="width: 601px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/48743i8A82665A1029EA19/image-size/large?v=v2&amp;amp;px=999" role="button" title="failed to import app please check log file.png" alt="failed to import app please check log file.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/Qlik-Sense-on-Windows-Data-Encryption-Key-Rotation/ta-p/1712447" target="_blank" rel="noopener"&gt;Qlik Sense on Windows: Data Encryption Key Rotation&lt;/A&gt;&lt;BR /&gt;&lt;A style="background-color: #ffffff;" href="https://community.qlik.com/t5/Support-Knowledge-Base/Using-Server-Certificates-for-Data-Encryption/ta-p/1712993" target="_blank" rel="noopener"&gt;Using Server Certificates for Data Encryption&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 07:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/ta-p/1712094</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2024-08-28T07:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2070094#M9235</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/35546"&gt;@ToniKautto&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;thank you very much for this article.&lt;/P&gt;
&lt;P&gt;Let's imagine, that in my environement, i have 2 Qlik Sense servers. If i&amp;nbsp;&lt;SPAN&gt;enable Data Encryption on both of them, using the same certificate, a QVD file generated by one of the Qlik Sense Servers could be read by the other one ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks a lot&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Johann&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 09:12:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2070094#M9235</guid>
      <dc:creator>jchoucq</dc:creator>
      <dc:date>2023-05-11T09:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2070461#M9239</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14334"&gt;@jchoucq&lt;/a&gt;&amp;nbsp;correct, encrypted QVDs can only be decrypted with the same certificate that was used when encrypting the data.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 05:21:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2070461#M9239</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2023-05-12T05:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2102682#M9848</link>
      <description>&lt;P&gt;In the example provided, it appears you are using the Current User \ Personal cert store; in a production environment, I would think the cert store utilized to be the Current Machine\Personal (especially if the user doesn't exist on each machine...); correct?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2023 20:42:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2102682#M9848</guid>
      <dc:creator>rbpeterson2</dc:creator>
      <dc:date>2023-08-04T20:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2102961#M9854</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/8288"&gt;@rbpeterson2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Certificates should be stored in current users as per&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/encryption-certificates.htm" target="_blank" rel="noopener"&gt;Encryption Certificates&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Quote: Encryption keys are best managed through certificates. The certificates must be stored in a certificate store for the user running the Engine service, see&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://help.qlik.com/en-US/sense-admin/May2023/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Deploy_QSEoW/User-accounts.htm" target="_blank"&gt;User accounts&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 06:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2102961#M9854</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-08-07T06:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2122161#M10266</link>
      <description>&lt;P&gt;Is it possible to encrypt the CSV file which is created using store command ?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2023 21:31:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2122161#M10266</guid>
      <dc:creator>krishnakumars7</dc:creator>
      <dc:date>2023-09-25T21:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2488341#M14802</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;We have a few questions:&lt;/P&gt;
&lt;P&gt;1. Are the commands to generate the certificates in Windows 2019 Server any different? If yes, can you please provide the commands.&lt;/P&gt;
&lt;P&gt;2. What is the known behaviour with large QVF apps and QVDs if encryption is enabled. Are there signficant performance hits in terms of storing qvds, reading from qvds, accessing apps - when the qvds and qvfs are multiple GBs in size.&lt;/P&gt;
&lt;P&gt;3. Also, is there any known issues if it enabled in apps/qvds that store local language data?&lt;/P&gt;
&lt;P&gt;4. What is the recommended (if any) certificate backup strategy recommended by Qlik to its customers?&lt;/P&gt;
&lt;P&gt;5. What are the alternatives to using a self-signed certificate? what parameters should such certificates adhere to to be used for encryption?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 07:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2488341#M14802</guid>
      <dc:creator>karthiksrqv</dc:creator>
      <dc:date>2024-10-22T07:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2489401#M14834</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/50166"&gt;@karthiksrqv&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post these queries in the appropriate forum (&lt;A href="https://community.qlik.com/t5/deployment-management/bd-p/qlik-sense-deployment" target="_blank" rel="noopener"&gt;Deployment and Management&lt;/A&gt;), where our active support agents and your Qlik peers are more readily able to assist you. The queries you've sent here go beyond the scope of what we can assist you in an article with.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 09:32:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2489401#M14834</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2024-10-28T09:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522759#M16035</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I know the article is old now but I hope someone would help / reply to me here.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have a requirement here in my company to protect QVF and QVD files in a way that if someone exports the App to import it to another server the import should fail also if the QVD files are read by a group of users the reading should fail&lt;BR /&gt;&lt;BR /&gt;is this possible using this approach mentioned in this article?&lt;BR /&gt;kindly advise&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 07:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522759#M16035</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2025-07-01T07:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522766#M16036</link>
      <description>&lt;P&gt;what if I duplicate the QVF file, can't be decrypted?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 07:58:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522766#M16036</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2025-07-01T07:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522992#M16048</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;this article describes how Qlik Sense can be configured to encrypt files in storage. This is one part of securing a Qlik Sense deployment.&lt;/P&gt;
&lt;P&gt;If a user exports an app through UI or API endpoints. You can use the details in this article to validate this part of your deployment.&amp;nbsp;&lt;BR /&gt;A copied file directly from Qlik Sense storage, of course, remains encrypted (if you have enabled encryption per this article), and to decrypt it, a user will need access to the cert used for encrypting the file.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 11:56:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522992#M16048</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2025-11-26T11:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522993#M16049</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/35546"&gt;@ToniKautto&lt;/a&gt;&amp;nbsp;what do you mean by "a user needs access to the cert used for encrypting the file" to decrypt it?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 12:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522993#M16049</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2025-07-02T12:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522997#M16050</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/35546"&gt;@ToniKautto&lt;/a&gt;&amp;nbsp;so as long as the app is on the server where it was encrypted any developer is able to open it and work on it normally&lt;BR /&gt;but if this app is copied from where it is saved (folder location) and a user tries to import it to another server the import will fail&lt;BR /&gt;&lt;BR /&gt;so I assume that encryption is not intended to prevent a group of user from working on the app on the server where it was encrypted&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;another question if this encrypted app was duplicated, will the duplicate copy be encrypted too?&lt;BR /&gt;if I publish the duplicated app and replace the encrypted one, what will happen?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 13:10:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2522997#M16050</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2025-07-02T13:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable Data Encryption In Qlik Sense Enterprise On Windows</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2523014#M16053</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;encryption in this case protects a file at rest. As you can see in the post and related help pages, the encryption is certificate-based, so if someone copies a file, they can not decrypt it without access to the same certificate.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Encryption of a file is unrelated to authorization or user access to the product; these are two different concepts.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you can see in the documentation, encryption is enabled at the service cluster level; it affects all QVF and QVD files that are written in the deployment. A duplicate app is a new QVF; hence, it will be encrypted at creation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My suggestion is that you validate some of your use cases and concerns by following the post and the documentation. Enable encryption, and verify that files are encrypted in storage. Duplicate and publish apps, while verifying that encryption remains on he created, updates files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 15:44:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-enable-Data-Encryption-In-Qlik-Sense-Enterprise-On/tac-p/2523014#M16053</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2025-07-02T15:44:57Z</dc:date>
    </item>
  </channel>
</rss>

