treasurechest/treasurechest/keyring/file.cs

18 lines
288 B
C#
Raw Normal View History

2020-05-16 03:48:05 +00:00
using chestcrypto;
namespace keyring{
internal class KeyRingFile
{
private string storageFile = null;
internal KeyRingFile(string filePath){
storageFile = filePath;
}
internal void write(byte[] data){
}
}
}