1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-03 09:03:35 +00:00
Files
mobile/src/App/Abstractions/Services/ISecureStorageService.cs
Kyle Spearrin bc3d9c4465 initial commit
2016-05-02 02:52:09 -04:00

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);
}
}