From 94cf0af1b9b31523a12b91531d8858bc5f728902 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Fri, 5 Dec 2025 16:22:00 -0500 Subject: [PATCH] DSP direct instructions, remove v2 token info --- docs/guides/integration-dsp-no-sdk.md | 38 +++++---------------------- 1 file changed, 7 insertions(+), 31 deletions(-) diff --git a/docs/guides/integration-dsp-no-sdk.md b/docs/guides/integration-dsp-no-sdk.md index c2cbd91a8..e1a0e83e2 100644 --- a/docs/guides/integration-dsp-no-sdk.md +++ b/docs/guides/integration-dsp-no-sdk.md @@ -13,7 +13,7 @@ import Link from '@docusaurus/Link'; This document provides instructions for DSPs who want to integrate with UID2 but who are using a programming language not supported by an existing UID2 SDK. -For a list of the existing SDKs, see [SDKs: Summary](../sdks/summary-sdks.md). +For a list of all SDKs, see [SDKs: Summary](../sdks/summary-sdks.md). ## Overview @@ -60,7 +60,6 @@ When you have current keys, you'll be able to decrypt a UID2 token into a raw UI You'll need to complete the following steps: -1. [Check the token version](#check-the-token-version). 1. [Decrypt the token](#decrypt-the-token). @@ -70,17 +69,9 @@ You'll need to complete the following steps: The UID2 SDK for C# / .NET uses a `DecryptTokenIntoRawUid` function to perform these steps: see [BidstreamClient.cs, line 15](https://github.com/IABTechLab/uid2-client-net/blob/6ac53b106301e431a4aada3cbfbb93f8164ff7be/src/UID2.Client/BidstreamClient.cs#L15). -### Check the Token Version - -There are different UID2 token versions in current use, and later processing steps are a little different depending on whether the token version is v2 or a later version. - -You can check the token version using the first few bytes of the token. - -To review detailed logic, see [UID2Encryption.cs, lines 36-50](https://github.com/IABTechLab/uid2-client-net/blob/6ac53b106301e431a4aada3cbfbb93f8164ff7be/src/UID2.Client/UID2Encryption.cs#L36-L50). - ### Decrypt the Token -Use the master key and site key to decrypt the token. For a code example, refer to the `Decrypt` function: see [UID2Encryption.cs, line 29](https://github.com/IABTechLab/uid2-client-net/blob/6ac53b106301e431a4aada3cbfbb93f8164ff7be/src/UID2.Client/UID2Encryption.cs#L29). This function decrypts UID2 tokens into raw UID2s as part of the UID2 SDK for C# / .NET, and includes logic to handle different token versions. +Use the master key and site key to decrypt the token. For a code example, refer to the `Decrypt` function: see [UID2Encryption.cs, line 29](https://github.com/IABTechLab/uid2-client-net/blob/6ac53b106301e431a4aada3cbfbb93f8164ff7be/src/UID2.Client/UID2Encryption.cs#L29). This function decrypts UID2 tokens into raw UID2s as part of the UID2 SDK for C# / .NET.