1
0
mirror of https://github.com/faragher/RNS_CS_Dev.git synced 2024-11-28 18:21:03 +01:00
RNS_CS_Dev/Crypto/fernet.cs

7 lines
127 B
C#
Raw Normal View History

2023-05-11 21:27:36 +02:00
namespace RNS.Cryptography
{
public class Fernet
{
public const int FERNET_OVERHEAD = 48; //Bytes
}
}