Browse Source

Merge pull request #2801 from studentmain/deprecate-stream

deprecate all stream cipher
tags/4.1.9.3
Student Main GitHub 5 years ago
parent
commit
a3d40ca5c6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      shadowsocks-csharp/View/ConfigForm.cs

+ 8
- 8
shadowsocks-csharp/View/ConfigForm.cs View File

@@ -31,14 +31,6 @@ namespace Shadowsocks.View
"salsa20",
"chacha20",
"bf-cfb",
};
private static string[] inuseMethod = new string[]
{
"aes-256-gcm",
"aes-192-gcm",
"aes-128-gcm",
"chacha20-ietf-poly1305",
"xchacha20-ietf-poly1305",
"chacha20-ietf",
"aes-256-cfb",
"aes-192-cfb",
@@ -50,6 +42,14 @@ namespace Shadowsocks.View
"camellia-192-cfb",
"camellia-128-cfb",
};
private static string[] inuseMethod = new string[]
{
"aes-256-gcm",
"aes-192-gcm",
"aes-128-gcm",
"chacha20-ietf-poly1305",
"xchacha20-ietf-poly1305",
};
public static EncryptionMethod[] AllMethods
{
get


Loading…
Cancel
Save