Example #1
0
		protected void OnDetailsCAActionActivated (object sender, EventArgs e)
		{
			logWin = new viewLog (firstSetup.mainDir + "/" + selectedCA + "-ca/certs/1000.pem", true);
			logWin.Title = "CA-Certificate";
		}
Example #2
0
		protected void OnDetailsCertActionActivated (object sender, EventArgs e)
		{
			logWin = new viewLog (selectedCertPath, true);
			logWin.Title = "X.509 Certificate";
		}
Example #3
0
		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";
		}
Example #4
0
		protected void OnViewLogfileActionActivated (object sender, EventArgs e)
		{
			logWin = new viewLog (firstSetup.mainDir + "/log.txt",false);
		}