| TpmIdentifier Constructor (String, String) |
Creates a new
TpmIdentifier object, initialized with a specific name and TPM public key value.
Namespace: com.softwarekey.Client.LicensingAssembly: PLUSManaged (in PLUSManaged.dll) Version: 5.25.4.0
Syntaxpublic TpmIdentifier(
string name,
string value
)
Public Sub New (
name As String,
value As String
)
public:
TpmIdentifier(
String^ name,
String^ value
)
Parameters
- name
- Type: SystemString
The name of the TpmIdentifier object. This is used for identification purposes
when multiple TPM identifiers might be present (though typically there's only one TPM per system).
- value
- Type: SystemString
The TPM public key value, typically a hex-encoded string representation of the
TPM's endorsement key modulus (for RSA keys) or public point (for ECC keys).
Remarks
This constructor allows full control over both the identifier name and value,
useful when deserializing or reconstructing identifiers from stored data.
See Also