mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-07-30 03:09:50 +08:00
12 lines
556 B
XML
12 lines
556 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Worked example: enabling Cache-Only Keys WITH replay detection.
|
|
Note the ordering guarantee — enableCacheOnlyKeys=true is present, which is
|
|
the precondition for enableReplayDetection=true. Removing enableCacheOnlyKeys
|
|
(or setting it false) while keeping enableReplayDetection=true is invalid.
|
|
-->
|
|
<EncryptionKeySettings xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
<enableCacheOnlyKeys>true</enableCacheOnlyKeys>
|
|
<enableReplayDetection>true</enableReplayDetection>
|
|
</EncryptionKeySettings>
|