How Sealed Client Results work
Sealed Client Results is an alternative delivery mechanism for information normally available only through our Server API. Usually, you would need to call the Server API on your backend to:- Validate the authenticity of the visitor ID and other information sent from the client.
- Get the full identification event, including Smart Signals.
/events Server API endpoint. This has two main advantages:
- Reduced end-to-end latency — unsealing the result happens on your server, no need to call the Server API.
- Increased secrecy — the payload is fully encrypted with a symmetric key, making it impossible for a malicious actor to read or modify the results on the client, similar to Zero Trust Mode.
Data flow

Configuring Sealed Client Results
If you want to use Sealed Client Results, complete the following steps (the order is important):- Generate an Encryption key in the Dashboard.
- Set up your backend to accept Sealed Results and decrypt them.
- Prepare your frontend to start sending the encrypted payload to the backend.
- Activate the Encryption key in the Dashboard to start receiving Sealed Client Results in the JS agent response.
Step 1: Create an encryption key in the Dashboard
- Navigate to Dashboard > API Keys > Encryption Keys.

- Click Create Encryption Key.
- Select an Environment.
- Fill in a recognizable name into the form that pops up.
- Click Create API Key to confirm.
Step 2: Decrypt and validate the sealedResult payload on your backend
Once the payload arrives at your backend, it needs to be decrypted using the Encryption key generated in the previous step. The sealedResult payload (represented as base64 string) from the JS Agent has a format covered in Appendix: Payload format.
The easiest way to decrypt the sealed result is to use one of our Server SDKs.
Never decrypt the payload in the browserThe decryption is designed to work on the backend only. If you try to decrypt the payload on the client, it means that anyone can see the shared key. That opens the possibility to read and alter the payload, exposing sensitive information and introducing new attack vectors.
Step 3: Send sealedResult to your backend
Adjust your client code to send the sealedResult received from the Fingerprint JavaScript agent to the server endpoint you have prepared in the previous step:
Server API FallbackYou may also consider sending the
requestId that is returned in the regular JavaScript agent response to support the fallback to Server API request if something goes wrong and sealedResult is not available.Step 4: Activate the encryption key in the Dashboard
Once the backend is set up to accept and decrypt incoming traffic, and the frontend contains code to send thesealedResult to the backend, you can activate your Encryption key.
- Navigate to Dashboard > API Keys > Encryption Keys.
- Click
...and select Activate.

sealedResult payload should start flowing from your client to your backend. Note that the key propagation could take a few minutes to finish so don’t worry if you don’t see the sealedResult payload immediately after the key got activated.
Sealed Client Results with multiple environments
Sealed results are scoped to a specific environment. When creating an Encryption key, you are selecting on which environment you want payload to be encrypted. If you’re utilizing multiple environments, this means you can partially select for which environment you want to turn on Sealed Client Results. Payloads will only be encrypted on environments with an active encryption key. On other environments, payload will remain unchanged. This is beneficial if you would like to incrementally integrate Sealed Client Results into your multi-environment setup, or if you’d like to test Sealed Client Results on a smaller chunk of traffic before rolling it out everywhere.Key Rotation
We recommend creating a regular process for key rotation to prevent potential misuse. The generated keys don’t expire but it is advised to rotate the key every 3 months, or before reaching a total of 4 billion requests, or if the key might have leaked (whatever comes first). In all cases, follow these steps:- Generate a new Encryption key in the Dashboard. The process is identical to Step 1 from the initial configuration steps.
- Update the backend to try unsealing with both the old (original) and the new key.
- Activate the new key. The old key is automatically deactivated as there cannot be more than one key active at a time.
- Wait a few moments until your backend starts receiving results sealed with the new key exclusively. Optionally, you can then completely remove the old key from the backend logic.
- Once everything works as expected you can delete the old key through the Dashboard.
Replay attack protection
Sealed Client Results don’t add any protection against possible replay attacks. However, the feature makes it easy to implement replay attack protection. With Sealed Client Results, you only need to check if therequestId retrieved from the sealedResult (products.identification.data.requestId) contains a unique and previously unseen value. Because the sealed payload cannot be modified, the requestId is always valid and genuine.
Additionally, you can also check the timestamp field to further validate the authenticity of the request. The time difference between timestamp and the current time should not surpass a reasonably low threshold.
Disabling Sealed Client Results
You can turn off Sealed Client Results simply by disabling the Encryption key in the Dashboard.Disabling the Encryption key will immediately stop payload encryptionMake sure that your integration can support handling unencrypted payload before you disable the encryption key.
Appendix: Payload format
ThesealedResult field is a base64 representation of the following binary structure:

- [4 Bytes] Version header (currently set to
0x9E85DCED)- You can use the version header to check that you are processing the correct version of the payload but it isn’t part of the encrypted section. In rare cases where we introduce breaking changes to the payload structure, the version header will also get a new value (along with a way to pick which version you want to consume to ensure a smooth transition between different versions).
/eventsPayload sealed with AES-256-GCM- [12 Bytes] Nonce/Initialization Vector
- Encrypted
/eventsJSON payload, compressed with raw deflate - [16 Bytes] Authentication Tag