protected void OnDetailsCAActionActivated (object sender, EventArgs e) { logWin = new viewLog (firstSetup.mainDir + "/" + selectedCA + "-ca/certs/1000.pem", true); logWin.Title = "CA-Certificate"; }
protected void OnDetailsCertActionActivated (object sender, EventArgs e) { logWin = new viewLog (selectedCertPath, true); logWin.Title = "X.509 Certificate"; }
protected void OnDetailsReqActionActivated (object sender, EventArgs e) { string s; caHandling.startBash ("openssl req -in " + importedReqPath + " -text", "readreq"); s = caHandling.getInfo; logWin = new viewLog (s); logWin.Title = "Request"; }
protected void OnViewLogfileActionActivated (object sender, EventArgs e) { logWin = new viewLog (firstSetup.mainDir + "/log.txt",false); }