mirror of
https://github.com/bitwarden/mobile
synced 2026-01-03 09:03:35 +00:00
11 lines
248 B
C#
11 lines
248 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ISecureStorageService
|
|
{
|
|
void Store(string key, byte[] dataBytes);
|
|
byte[] Retrieve(string key);
|
|
void Delete(string key);
|
|
bool Contains(string key);
|
|
}
|
|
}
|