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

Namespace: com.softwarekey.Client.Licensing
Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.25.4.0
Syntax
public TpmIdentifier(
	string value
)

Parameters

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

The value parameter should contain the TPM public key data extracted from the hardware. This is typically a 256-byte (2048-bit) RSA modulus for TPM 1.2 and TPM 2.0 RSA keys, represented as a hexadecimal string.

The actual value stored will be a SHA-512 hash of this public key for security and privacy reasons, computed by the base SystemIdentifier class.

See Also