Exemplo n.º 1
0
 static ObfsFactory()
 {
     _registeredObfs = new Dictionary <string, Type>();
     foreach (string method in Plain.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(Plain));
     }
     foreach (string method in HttpSimpleObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(HttpSimpleObfs));
     }
     foreach (string method in VerifySimpleObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(VerifySimpleObfs));
     }
     foreach (string method in VerifyDeflateObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(VerifyDeflateObfs));
     }
     foreach (string method in VerifySHA1Obfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(VerifySHA1Obfs));
     }
     foreach (string method in AuthSimple.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(AuthSimple));
     }
 }
Exemplo n.º 2
0
        static ObfsFactory()
        {
            _registeredObfs = new Dictionary <string, Type>();
            foreach (string method in Plain.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(Plain));
            }
            foreach (string method in HttpSimpleObfs.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(HttpSimpleObfs));
            }
            foreach (string method in TlsTicketAuthObfs.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(TlsTicketAuthObfs));
            }
            foreach (string method in VerifyDeflateObfs.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(VerifyDeflateObfs));
            }
#if DEBUG
            foreach (string method in AuthSHA1.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthSHA1));
            }
            foreach (string method in AuthSHA1V2.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthSHA1V2));
            }
#endif
            foreach (string method in AuthSHA1V4.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthSHA1V4));
            }
            foreach (string method in AuthAES128SHA1.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthAES128SHA1));
            }
            foreach (string method in AuthChain_a.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthChain_a));
            }
            foreach (string method in AuthChain_b.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthChain_b));
            }
            foreach (string method in AuthChain_c.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthChain_c));
            }
            foreach (string method in AuthChain_d.SupportedObfs())
            {
                _registeredObfs.Add(method, typeof(AuthChain_d));
            }
        }
Exemplo n.º 3
0
 static ObfsFactory()
 {
     _registeredObfs = new Dictionary <string, Type>();
     foreach (string method in Plain.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(Plain));
     }
     foreach (string method in HttpSimpleObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(HttpSimpleObfs));
     }
     foreach (string method in TlsTicketAuthObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(TlsTicketAuthObfs));
     }
     foreach (string method in VerifySimpleObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(VerifySimpleObfs));
     }
     foreach (string method in VerifyDeflateObfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(VerifyDeflateObfs));
     }
     foreach (string method in VerifySHA1Obfs.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(VerifySHA1Obfs));
     }
     foreach (string method in AuthSHA1.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(AuthSHA1));
     }
     foreach (string method in AuthSHA1V2.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(AuthSHA1V2));
     }
     foreach (string method in AuthSHA1V4.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(AuthSHA1V4));
     }
     foreach (string method in AuthAES128.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(AuthAES128));
     }
     foreach (string method in AuthAES128SHA1.SupportedObfs())
     {
         _registeredObfs.Add(method, typeof(AuthAES128SHA1));
     }
 }