Skip to content

Commit

Permalink
Merge branch 'beta' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
justcoding121 committed Jul 13, 2017
2 parents ca5dfbc + dd688aa commit 14bdb65
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public ProxyTestController()

//optionally set the Certificate Engine
//Under Mono only BouncyCastle will be supported
//proxyServer.CertificateEngine = Network.CertificateEngine.BouncyCastle;
//proxyServer.CertificateEngine = Network.CertificateEngine.DefaultWindows;

//optionally set the Root Certificate
//proxyServer.RootCertificate = new X509Certificate2("myCert.pfx", string.Empty, X509KeyStorageFlags.Exportable);
Expand Down
2 changes: 1 addition & 1 deletion Titanium.Web.Proxy/Network/CertificateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ internal X509Certificate2 RootCertificate
internal CertificateManager(Action<Exception> exceptionFunc)
{
this.exceptionFunc = exceptionFunc;
Engine = CertificateEngine.DefaultWindows;
Engine = CertificateEngine.BouncyCastle;

certificateCache = new ConcurrentDictionary<string, CachedCertificate>();
}
Expand Down
5 changes: 0 additions & 5 deletions Titanium.Web.Proxy/ProxyServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ public partial class ProxyServer : IDisposable
internal const string UriSchemeHttps = "https";
#endif

/// <summary>
/// Enable the experimental ALPN adder streams
/// </summary>
internal static bool AlpnEnabled = false;

/// <summary>
/// Is the proxy currently running
/// </summary>
Expand Down
4 changes: 2 additions & 2 deletions Titanium.Web.Proxy/Titanium.Web.Proxy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
<AssemblyOriginatorKeyFile>StrongNameKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942">
<HintPath>..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll</HintPath>
<Reference Include="BouncyCastle.Crypto">
<HintPath>..\packages\Portable.BouncyCastle.1.8.1.2\lib\net4\BouncyCastle.Crypto.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="StreamExtended, Version=1.0.1.0, Culture=neutral, PublicKeyToken=bbfa0f1d54f50043, processorArchitecture=MSIL">
Expand Down
14 changes: 4 additions & 10 deletions Titanium.Web.Proxy/Titanium.Web.Proxy.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<metadata>
<id>Titanium.Web.Proxy</id>
<version>$version$</version>
<title>Titanium web proxy</title>
<authors>Titanium</authors>
<owners>Titanium</owners>
<title>Titanium Web Proxy</title>
<authors>Titanium Web Proxy GitHub Contributors</authors>
<owners>justcoding121</owners>
<licenseUrl>https://github.com/justcoding121/Titanium-Web-Proxy/blob/develop/LICENSE</licenseUrl>
<projectUrl>https://github.com/justcoding121/Titanium-Web-Proxy</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -14,14 +14,8 @@
<copyright>Copyright &#x00A9; Titanium. All rights reserved.</copyright>
<tags></tags>
<dependencies>
<group targetFramework="net45">
<dependency id="StreamExtended" version="1.0.18" />
<dependency id="BouncyCastle" version="1.8.1" />
</group>
<group targetFramework="netstandard1.6">
<dependency id="StreamExtended" version="1.0.18" />
<dependency id="Portable.BouncyCastle" version="1.8.1.2" />
</group>
<dependency id="Portable.BouncyCastle" version="1.8.1.2" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion Titanium.Web.Proxy/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="BouncyCastle" version="1.8.1" targetFramework="net45" />
<package id="Portable.BouncyCastle" version="1.8.1.2" targetFramework="net45" />
<package id="StreamExtended" version="1.0.18" targetFramework="net45" />
</packages>

0 comments on commit 14bdb65

Please sign in to comment.