1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

OpaqueKeyExchangeCredential.cs - add docs on keys

This commit is contained in:
Jared Snider 2025-03-20 12:45:00 -04:00
parent 36c52a1e75
commit 4edd3da4cf
No known key found for this signature in database
GPG Key ID: A149DDD612516286

View File

@ -23,9 +23,22 @@ public class OpaqueKeyExchangeCredential : ITableObject<Guid>
/// iterations of the specifics of the OPAQUE implementation.
/// </summary>
public string CredentialBlob { get; set; }
/// <summary>
/// User key encapsulated OPAQUE credential public key (used for user key rotation enablement).
/// </summary>
public string EncryptedPublicKey { get; set; }
/// <summary>
/// The OPAQUE clientside export key encapsulated OPAQUE credential private key.
/// The client uses the export key to decrypt the private key and then decrypt the user key.
/// </summary>
public string EncryptedPrivateKey { get; set; }
/// <summary>
/// The OPAQUE Credential Public key encapsulated user key.
/// The client uses the private key to decrypt the user key.
/// </summary>
public string EncryptedUserKey { get; set; }
/// <summary>
/// Date credential was created. When we update we are creating a new key set so in effect we are creating a new credential.