Click or drag to resize
TpmIdentifier Constructor (String, String)
Creates a new TpmIdentifier object, initialized with a specific name and TPM public key value.

Namespace: com.softwarekey.Client.Licensing
Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.25.4.0
Syntax
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