From ec4cc88da52e75d491d6d48535ecd9225ff192e7 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Thu, 23 Apr 2026 15:05:04 -0400 Subject: [PATCH] Fix Base-64 to Base64 --- docs/getting-started/gs-normalization-encoding.md | 6 +++--- docs/guides/integration-javascript-client-side.md | 6 +++--- .../current/getting-started/gs-normalization-encoding.md | 2 +- .../current/guides/integration-javascript-client-side.md | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/getting-started/gs-normalization-encoding.md b/docs/getting-started/gs-normalization-encoding.md index 181383220..d53ff028e 100644 --- a/docs/getting-started/gs-normalization-encoding.md +++ b/docs/getting-started/gs-normalization-encoding.md @@ -60,7 +60,7 @@ An email hash is a Base64-encoded @@ -314,7 +314,7 @@ const clientSideConfig = { serverPublicKey: "...", }; -// Example of a base-64 encoded SHA-256 hash of an email address. +// Example of a base64-encoded SHA-256 hash of an email address. const emailHash = "tMmiiTI7IaAcPpQPFQ65uMVCWH8av9jw4cwf/F5HVRQ="; // When the UID2 SDK is executed, it looks for these callbacks and invokes them. @@ -386,7 +386,7 @@ window.__uid2.callbacks.push(async (eventType, payload) => { ![Publisher Workflow](images/NetworkTraffic.png) -## Example Code: Hashing and Base-64 Encoding +## Example Code: Hashing and Base64 Encoding 以下のコード例は、JavaScript でメールアドレスと電話番号のハッシュを生成する方法を示しています。