Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 2f2bf29

Browse files
committed
comments
1 parent 377017f commit 2f2bf29

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Titanium.Web.Proxy/Network/Certificate/WinCertificateMaker.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ internal class WinCertificateMaker : ICertificateMaker
5252
internal WinCertificateMaker(ExceptionHandler exceptionFunc)
5353
{
5454
this.exceptionFunc = exceptionFunc;
55+
5556
typeX500DN = Type.GetTypeFromProgID("X509Enrollment.CX500DistinguishedName", true);
5657
typeX509PrivateKey = Type.GetTypeFromProgID("X509Enrollment.CX509PrivateKey", true);
5758
typeOID = Type.GetTypeFromProgID("X509Enrollment.CObjectId", true);

Titanium.Web.Proxy/Network/CertificateManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public enum CertificateEngine
2525
BouncyCastle = 0,
2626

2727
/// <summary>
28-
/// Uses Windows Certification Generation API.
28+
/// Uses Windows Certification Generation API and only valid in Windows OS.
29+
/// Observed to be faster than BouncyCastle.
2930
/// Bug #468 Reported.
3031
/// </summary>
3132
DefaultWindows = 1

0 commit comments

Comments
 (0)