- 08 Mar, 2018 4 commits
-
-
justcoding121 authored
-
justcoding121 authored
-
justcoding121 authored
-
justcoding121 authored
-
- 07 Mar, 2018 3 commits
-
-
justcoding121 authored
-
justcoding121 authored
-
justcoding121 authored
-
- 06 Mar, 2018 3 commits
-
-
justcoding121 authored
-
justcoding121 authored
order properties by internal, private, public then by bool, int, string, object, event, action, func
-
justcoding121 authored
-
- 01 Mar, 2018 6 commits
- 28 Feb, 2018 2 commits
- 24 Feb, 2018 3 commits
-
-
honfika authored
Fix & Add property TrustRootCertificateAsAdministrator
-
mohammadlachgar authored
-
mohammadlachgar authored
Update Fork1
-
- 23 Feb, 2018 11 commits
-
-
Honfika authored
-
honfika authored
**Add password to rootCert.pfx. and more...
-
honfika authored
merge develop to beta before merging PR #371
-
mohammadlachgar authored
-
mohammadlachgar authored
-
mohammadlachgar authored
-
mohammadlachgar authored
Like : *overwritePFXfile *passwordpfx *namePFXfile *saveFakeCertificates
-
mohammadlachgar authored
Changed the naming conventions Changed some properties to "Auto-Implemented Properties" Add some properties
-
mohammadlachgar authored
-
mohammadlachgar authored
-
mohammadlachgar authored
-
- 22 Feb, 2018 5 commits
-
-
mohammadlachgar authored
Now you can Change path rootCert.pfx ,name and password
-
mohammadlachgar authored
//Methode 1 //------------ proxyServer = new ProxyServer(); //proxyServer.Password_rootCert = "PfxPassword"; proxyServer.TrustRootCertificate = true; ..... ..... proxyServer.Start(); //The provided root certificate will be stored in proxy dll directory //===================== //Methode 2 //---------- proxyServer = new ProxyServer(); proxyServer.TrustRootCertificate = true; //Will not (load or create) certificate Before call function CreateTrustedRootCertificate proxyServer.CertificateManager.SetInfo_LoadRootCertificate(@"C:\NameFolder\rootCert.pfx", "PfxPassword"); ..... ..... proxyServer.Start(); //The provided root certificate will be stored in "C:\NameFolder\rootCert.pfx" //===================== //Methode 3 //------------ proxyServer = new ProxyServer(); proxyServer.TrustRootCertificate = true; //note : load now "C:\NameFolder\rootCert.pfx" (if existed) proxyServer.CertificateManager.LoadRootCertificate(@"C:\NameFolder\rootCert.pfx", "PfxPassword"); ..... ..... proxyServer.Start(); //if doesn't exist file, or password is incorect and (overwriteRootCert=true) ====> create new pfx file //The provided root certificate will be stored in "C:\NameFolder\rootCert.pfx"
-
mohammadlachgar authored
change if (ProxyEndPoints.Any(x => (x as ExplicitProxyEndPoint).GenericCertificate == null)) to if (ProxyEndPoints.OfType<ExplicitProxyEndPoint>().Any(x => x.GenericCertificate == null)) and add throw new Exception(ex.Message);
-
mohammadlachgar authored
change @"^" + "CN".ToLower() + @"\s*=\s*" to ^CN\s*=\s*
-
mohammadlachgar authored
**Save all fake certificates in folder "crts"(will be save in proxy dll directory) for can load the certificate and not make new certificate every time . **Manually load a RootCertificate
-
- 11 Feb, 2018 1 commit
-
-
Honfika authored
-
- 10 Feb, 2018 2 commits