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
2023-05-11 14:27:36 -05:00

7 lines
127 B
C#

namespace RNS.Cryptography
{
public class Fernet
{
public const int FERNET_OVERHEAD = 48; //Bytes
}
}