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;