mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
11 lines
261 B
C#
11 lines
261 B
C#
namespace Bit.App.Migration.Abstractions
|
|
{
|
|
public interface IOldSecureStorageService
|
|
{
|
|
bool Contains(string key);
|
|
void Delete(string key);
|
|
byte[] Retrieve(string key);
|
|
void Store(string key, byte[] dataBytes);
|
|
}
|
|
}
|