ISecureStorage Interface

Definition

The SecureStorage API helps securely store simple key/value pairs.

public interface class ISecureStorage
public interface ISecureStorage
type ISecureStorage = interface
Public Interface ISecureStorage

Methods

GetAsync(String)

Gets and decrypts the value for a given key.

Remove(String)

Removes a key and its associated value if it exists.

RemoveAll()

Removes all of the stored encrypted key/value pairs.

SetAsync(String, String)

Sets and encrypts a value for a given key.

Applies to