Interface ICertificateProvider6
Extension interface for certificate provider implementation, adding method to return certificate keypair (used on macOS only) To override default certificate handling in macOS, your class should implement this interface.
Inherited Members
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public interface ICertificateProvider6 : ICertificateProvider5, ICertificateProvider4, ICertificateProvider3, ICertificateProvider2, ICertificateProvider
Properties
EEKeyPair
The EE Certificate Public/Private key that will be reused for all EE certificates if the
Reuse
Declaration
AsymmetricCipherKeyPair EEKeyPair { get; }
Property Value
Org.
|
ReuseRootKeyAsServerKey
Controls whether we use the same Public/Private keypair for the root AND all Server Certificates (improves perf)
Declaration
bool ReuseRootKeyAsServerKey { get; }
Property Value
System.
|
ReuseServerKey
Controls whether we use the same Public/Private keypair for all Server Certificates (improves perf)
Declaration
bool ReuseServerKey { get; }
Property Value
System.
|