mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
11 lines
159 B
C#
11 lines
159 B
C#
// ReSharper disable InconsistentNaming
|
|
|
|
namespace mRemoteNG.Security
|
|
{
|
|
public enum BlockCipherModes
|
|
{
|
|
GCM,
|
|
CCM,
|
|
EAX
|
|
}
|
|
} |