From a04b2071a7095a9e96e3d176f742a27da2c14deb Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Mon, 19 May 2025 12:37:23 +0200 Subject: [PATCH] Add more docs --- libs/common/src/key-management/types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/common/src/key-management/types.ts b/libs/common/src/key-management/types.ts index 219b5ca5143..204a24fa013 100644 --- a/libs/common/src/key-management/types.ts +++ b/libs/common/src/key-management/types.ts @@ -1,2 +1,7 @@ -/// A base64 encoded proof that a signing key identity claims ownership of a public encryption key. +/** + * A base64 encoded proof that a signing key identity claims ownership of a public encryption key + * Specifically, a claimer, signs a message with their signing key, where the message says (in part): + * - "I own publicKey XYZ" + * This shows that a user/signing identity wants to receive confidential data to this public key. + */ export type SignedPublicKeyOwnershipClaim = string;