예제 #1
0
파일: IIs100.cs 프로젝트: pasamsin/SolidCP
        public override String LEinstallCertificate(WebSite website, string email)
        {
            var sslObjectService = new SSLModuleService100(SSLFlags, CCSUncPath, CCSCommonPassword);

            return(sslObjectService.LEInstallCertificate(website, email));
        }
예제 #2
0
파일: IIs100.cs 프로젝트: pasamsin/SolidCP
        public override SSLCertificate installCertificate(SSLCertificate certificate, WebSite website)
        {
            var sslObjectService = new SSLModuleService100(SSLFlags, CCSUncPath, CCSCommonPassword);

            return(sslObjectService.InstallCertificate(certificate, website));
        }
예제 #3
0
파일: IIs100.cs 프로젝트: pasamsin/SolidCP
        public override SSLCertificate ImportCertificate(WebSite website)
        {
            var sslObjectService = new SSLModuleService100(SSLFlags, CCSUncPath, CCSCommonPassword);

            return(sslObjectService.ImportCertificate(website));
        }
예제 #4
0
파일: IIs100.cs 프로젝트: pasamsin/SolidCP
        public override SSLCertificate installPFX(byte[] certificate, string password, WebSite website)
        {
            var sslObjectService = new SSLModuleService100(SSLFlags, CCSUncPath, CCSCommonPassword);

            return(sslObjectService.InstallPfx(certificate, password, website));
        }
예제 #5
0
파일: IIs80.cs 프로젝트: pasamsin/SolidCP
        public override ResultObject DeleteCertificate(SSLCertificate certificate, WebSite website)
        {
            var sslObjectService = new SSLModuleService80(SSLFlags, CCSUncPath, CCSCommonPassword);

            return(sslObjectService.DeleteCertificate(certificate, website));
        }
예제 #6
0
파일: IIs80.cs 프로젝트: pasamsin/SolidCP
        public override bool CheckCertificate(WebSite webSite)
        {
            var sslObjectService = new SSLModuleService80(SSLFlags, CCSUncPath, CCSCommonPassword);

            return(sslObjectService.CheckCertificate(webSite));
        }