treasurechest/treasurechest/chestcrypto/identity/ephemeralkey.cs

20 lines
421 B
C#
Raw Normal View History

2020-05-16 03:48:05 +00:00
namespace chestcrypto{
namespace identity{
internal class EphemeralKey{
private int epochTime;
private int secondsToExpire;
private byte[] key = new byte[32];
private bool isPrivate;
private Identity identity;
public EphemeralKey(Identity identity, byte[] key, int secondsToExpire){
2020-05-16 03:48:05 +00:00
}
}
}
}