AuthorEncryptionKey Constructor (String, String, Boolean) |
Creates a new
AuthorEncryptionKey object, initialized with the specified envelope and envelope key data.
Namespace: com.softwarekey.Client.UtilsAssembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax public AuthorEncryptionKey(
string envelopeKey,
string envelope,
bool useMachineKeyStore
)
Public Sub New (
envelopeKey As String,
envelope As String,
useMachineKeyStore As Boolean
)
public:
AuthorEncryptionKey(
String^ envelopeKey,
String^ envelope,
bool useMachineKeyStore
)
Parameters
- envelopeKey
- Type: SystemString
The Envelope Key received from SOLO Server. - envelope
- Type: SystemString
The Envelope received from SOLO Server. - useMachineKeyStore
- Type: SystemBoolean
Default is true; set to false to use the User Key Store instead. The User Key Store is typically best suited for desktop applications, while the machine key store is best suited for services and web applications.
See Also