Get-TpmEndorsementKeyInfo

Get-TpmEndorsementKeyInfo

Gets information about the endorsement key and certificates of the TPM.

Sintaxis

Parameter Set: Default
Get-TpmEndorsementKeyInfo [[-HashAlgorithm] <String> ] [ <CommonParameters>]

Descripción detallada

The Get-TpmEndorsementKeyInfo cmdlet gets information about the endorsement public key and certificates of the Trusted Platform Module (TPM).

Parámetros

-HashAlgorithm<String>

Specifies the hash algorithm used for the public key. Los valores aceptables para este parámetro son los siguientes: Sha256.

Alias

ninguno

¿Requerido?

false

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByValue)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • String

    This accepts the name of the algorithm, as a string, used to hash the public key. Sha256 is the only supported algorithm.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • EndorsementKeyObject

    This cmdlet generates an EndorsementKeyObject that contains the following members:

    -- IsPresent. A Boolean that represents whether the endorsement public key is known to the operating system.
    -- PublicKey. An AsnEncodedData object that contains the asn.1 encoded public portion of the endorsement key.
    -- PublicKeyHash. The hash, as a String, of the public key if the cmdlet used a hash algorithm.
    -- ManufacturerCertificates. A X509Certificate2Collection object that contains the manufacturer endorsement key certificates. This object can contain the manufacturer and platform certificates.
    -- AdditionalCertificates. A X509Certificate2Collection object that contains a collection of additional endorsement key certificates that are registered to the operating system, such as any enterprise certificates.

Ejemplos

Example 1: Get endorsement key information

This command gets information about the endorsement key of the TPM. The command uses the Sha256 algorithm to hash the public key.

PS C:\> Get-TpmEndorsementKeyInfo -Hash "Sha256"