public CertRequestDTO() { Country = "US"; NotBefore = DateTime.UtcNow; NotAfter = NotBefore.AddYears(10); PrivateKey = new PrivateKeyDTO(); }
public CertRequestDTO() { Country = "US"; Name = "<Certificate Name>"; NotBefore = DateTime.Now; NotAfter = NotBefore.AddYears(10); PrivateKey = new PrivateKeyDTO(); }
public CertRequestDTO () { Country = "US"; Name = "<Certificate Name>"; NotBefore = DateTime.Now; NotAfter = NotBefore.AddYears (10); PrivateKey = new PrivateKeyDTO (); }
// Call to load from the XIB/NIB file public PrivateKeyEditorWindowController (PrivateKeyDTO privateKey) : base ("PrivateKeyEditorWindow") { PrivateKeyDTO = privateKey; }