QuickOPC User's Guide and Reference
NewPrivateKeyPassword Property (UACreateCertificateArguments)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Application Namespace > UACreateCertificateArguments Class : NewPrivateKeyPassword Property
The new password needed to access the private key (optional).
Syntax
'Declaration
 
<DefaultValueAttribute("")>
<NotNullAttribute()>
Public Property NewPrivateKeyPassword As String
'Usage
 
Dim instance As UACreateCertificateArguments
Dim value As String
 
instance.NewPrivateKeyPassword = value
 
value = instance.NewPrivateKeyPassword
[DefaultValue("")]
[NotNull()]
public string NewPrivateKeyPassword {get; set;}
[DefaultValue("")]
[NotNull()]
public:
property String^ NewPrivateKeyPassword {
   String^ get();
   void set (    String^ value);
}
Remarks

CAUTION: When this object is serialized, the password is persisted with it, in the plain text.

The NewPrivateKeyPassword only has effect when SetNewPassword is true. In such case, the newly created certificate will be protected with the password given by NewPrivateKeyPassword, and this password will also become the currently configured password in the application. When SetNewPassword is false, the newly created certificate will be protected with the password currently configured in the application, if any.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also