Common base interface for Secret Storage Keys.

The common properties for all encryption keys used in server-side secret storage.

interface SecretStorageKeyDescriptionCommon {
    algorithm: string;
    name: string;
    passphrase: PassphraseInfo;
}

Hierarchy (view full)

Properties

algorithm: string

The encryption algorithm used with this key.

name: string

A human-readable name for this key.

passphrase: PassphraseInfo

Information for deriving this key from a passphrase.