<?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>topic Re: Encryption in Endpoint Security</title>
    <link>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428155#M11331</link>
    <description>&lt;P&gt;It sounds like System manager isn't able to access the Fault vault recovery key because the payload is corrupted or something has gone wrong when the device uploaded the payload to systems manager. &lt;/P&gt;&lt;P&gt;Is the MDM certificate on the device still valid or has it expired? &lt;/P&gt;</description>
    <pubDate>Wed, 08 Nov 2023 21:44:53 GMT</pubDate>
    <dc:creator>BlakeRichardson</dc:creator>
    <dc:date>2023-11-08T21:44:53Z</dc:date>
    <item>
      <title>Encryption</title>
      <link>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428154#M11330</link>
      <description>&lt;P&gt;What does this mean? &lt;STRONG&gt;The encryption certificate referenced by the FileVault Recovery Key Escrow payload is invalid or does not support encryption.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 21:10:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428154#M11330</guid>
      <dc:creator>pedrocallrail</dc:creator>
      <dc:date>2023-11-08T21:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428155#M11331</link>
      <description>&lt;P&gt;It sounds like System manager isn't able to access the Fault vault recovery key because the payload is corrupted or something has gone wrong when the device uploaded the payload to systems manager. &lt;/P&gt;&lt;P&gt;Is the MDM certificate on the device still valid or has it expired? &lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 21:44:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428155#M11331</guid>
      <dc:creator>BlakeRichardson</dc:creator>
      <dc:date>2023-11-08T21:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428156#M11332</link>
      <description>&lt;P&gt;&lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/99577"&gt;@pedrocallrail&lt;/A&gt; Can you take us through the flow you use to create the certificate, and which type of FileVault profile you are using?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2023 12:42:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428156#M11332</guid>
      <dc:creator>Arthur Dent</dc:creator>
      <dc:date>2023-11-10T12:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428157#M11333</link>
      <description>&lt;P&gt;I'm following: &lt;A href="https://documentation.meraki.com/SM/Other_Topics/Creating_a_Public%2F%2FPrivate_Certificate_Pair" target="_blank" rel="noopener nofollow noreferrer"&gt;https://documentation.meraki.com/SM/Other_Topics/Creating_a_Public%2F%2FPrivate_Certificate_Pair&lt;/A&gt; and &lt;A href="https://documentation.meraki.com/SM/Profiles_and_Settings/Using_File_Vault_2" target="_blank" rel="noopener nofollow noreferrer"&gt;https://documentation.meraki.com/SM/Profiles_and_Settings/Using_File_Vault_2&lt;/A&gt; It is not providing a .pem certificate. I am trying to create a :&lt;/P&gt;&lt;H1 id="toc-hId-1842172098"&gt;&lt;SPAN class=""&gt;macOS FileVault Recovery Key Escrow profile&lt;/SPAN&gt;&lt;/H1&gt;</description>
      <pubDate>Tue, 14 Nov 2023 20:24:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428157#M11333</guid>
      <dc:creator>pedrocallrail</dc:creator>
      <dc:date>2023-11-14T20:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428158#M11334</link>
      <description>&lt;P&gt;Creating a macOS FileVault Recovery Key Escrow profile involves generating a public/private key pair and then using the public key to encrypt the FileVault recovery key.&lt;/P&gt;&lt;P&gt;You can use a tool like OpenSSL to generate a public/private key pair. The private key should be kept secure, as it will be used to decrypt the FileVault recovery key.&lt;/P&gt;&lt;P&gt;In the Meraki dashboard, create a new profile and select the ‘FileVault Recovery Key Escrow’ payload. In the ‘&lt;STRONG&gt;EncryptCertPayloadUUID&lt;/STRONG&gt;’ field, enter the UUID of the payload that contains the public key. This will be used to encrypt the recovery key.&lt;/P&gt;&lt;P&gt;Once the profile is created, you can apply it to your devices. The devices will then escrow their FileVault recovery keys, encrypted with the public key, to the Meraki dashboard.&lt;/P&gt;&lt;P&gt;Please note that the certificate file used for the ‘&lt;STRONG&gt;EncryptCertPayloadUUID&lt;/STRONG&gt;’ field should be in PEM format. If you’re having trouble generating a PEM certificate, you might want to check the commands you’re using with OpenSSL.&lt;/P&gt;&lt;P&gt;The typical command to generate a PEM encoded certificate is something like this:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout server.key -out server.crt&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This command generates a new RSA key (&lt;EM&gt;&lt;STRONG&gt;server.key&lt;/STRONG&gt;&lt;/EM&gt;) and a self-signed certificate (&lt;EM&gt;&lt;STRONG&gt;server.crt&lt;/STRONG&gt;&lt;/EM&gt;). Both are in PEM format.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 19:30:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/endpoint-security/encryption/m-p/5428158#M11334</guid>
      <dc:creator>aleabrahao</dc:creator>
      <dc:date>2023-12-07T19:30:51Z</dc:date>
    </item>
  </channel>
</rss>

