Class DataManager
Definition
- Namespace:
- Tizen.Security.SecureRepository
- Assembly:
- Tizen.Security.SecureRepository.dll
Provides methods for storing and retrieving data.
public class DataManager : Manager
- Inheritance
Methods
View SourceGet(string, string)
Gets data from the secure repository.
Declaration
public static byte[] Get(string alias, string password)
Parameters
| Type | Name | Description |
|---|---|---|
| string | alias | Name of a certificate to retrieve. |
| string | password | Password used in decrypting a data value. If password of policy is provided in SaveData(), the same password should be provided. |
Returns
| Type | Description |
|---|---|
| byte[] | Data specified by alias. |
GetAliases()
Gets all aliases of data accessible by the client.
Declaration
public static IEnumerable<string> GetAliases()
Returns
| Type | Description |
|---|---|
| IEnumerable<><string> | All aliases of data accessible by the client. |
Save(string, byte[], Policy)
Stores data inside the secure repository based on the provided policy.
Declaration
public static void Save(string alias, byte[] data, Policy policy)
Parameters
| Type | Name | Description |
|---|---|---|
| string | alias | Name of data to be stored. |
| byte[] | data | Binary value to be stored. |
| Policy | policy | Data stoting policy. |