/// <summary> /// Creates the AMI behavior /// </summary> public AmiBehavior() { this.certTool = new CertTool { CertificationAuthorityName = this.configuration?.CaConfiguration.Name, ServerName = this.configuration?.CaConfiguration.ServerName }; }
/// <summary> /// Creates a new certificate resource handler /// </summary> public CertificateResourceHandler() { this.m_certTool = new CertTool { CertificationAuthorityName = this.configuration?.CaConfiguration.Name, ServerName = this.configuration?.CaConfiguration.ServerName }; }
/// <summary> /// Creates a new CSR request handler /// </summary> public CertificateSigningRequestHandler() { this.m_certTool = new CertTool { CertificationAuthorityName = this.configuration?.CaConfiguration.Name, ServerName = this.configuration?.CaConfiguration.ServerName }; }