Removes all of the stored entries.
Checks if key entry exists by name.
Name of the entry to check.
true
if key entry exists, or false
otherwise.Retrieves a collection of all stored entries.
Retrieves key entry by name.
Name of the key entry to retrieve.
Promise resolved with stored entry
or null
if entry with the given name does not exist.
Removes key entry by name.
Name of the key entry to remove.
true
if key entry was removed, or false
otherwise.Saves key entry represented by params
.
New key entry parameters.
Promise resolved with stored entry, or rejected with PrivateKeyExistsError error in case entry with the same name already exists.
Updates the value or metadata (or both) of the key entry identified
by params.name
.
Paremeters identifying the entry to update and new value or metadata (or both).
Interface to be implemented by object capable of persisting private keys data and metadata.