1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 14:04:03 +00:00

Add more docs

This commit is contained in:
Bernd Schoolmann
2025-05-19 12:37:23 +02:00
parent f37fb88ddf
commit a04b2071a7

View File

@@ -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;