Uses of Interface
iaik.tc.tss.api.tspi.TcIPcrComposite

Packages that use TcIPcrComposite
iaik.tc.tss.api.tspi   
iaik.tc.tss.impl.java.tsp   
iaik.tc.tss.impl.java.tsp.internal.offline   
 

Uses of TcIPcrComposite in iaik.tc.tss.api.tspi
 

Methods in iaik.tc.tss.api.tspi that return TcIPcrComposite
 TcIPcrComposite TcIContext.createPcrCompositeObject(long initFlags)
          This method returns a new PCR object.
 

Methods in iaik.tc.tss.api.tspi with parameters of type TcIPcrComposite
 void TcIRsaKey.createKey(TcIRsaKey wrappingKey, TcIPcrComposite pcrComposite)
          This method creates a key pair within the TPM and wraps it with the key addressed by wrappingKey.
If the internal key structure is a 1.1 TPM key, the provided PcrComposite must be a TcTssConstants.TSS_PCRS_STRUCT_INFO.
 void TcITpm.pcrReset(TcIPcrComposite pcrComposite)
          This methods resets a PCR register.
 TcTssValidation TcITpm.quote(TcIRsaKey identKey, TcIPcrComposite pcrComposite, TcTssValidation validation)
          This method quotes a TCG system.
 java.lang.Object[] TcITpm.quote2(TcIRsaKey identKey, boolean addVersion, TcIPcrComposite pcrComposite, TcTssValidation validation)
          This method quotes a TCG system using TPM_Quote2 which provides the requestor a more complete view of the current platform configuration than TPM_Quote.
 void TcIEncData.seal(TcIRsaKey encKey, TcBlobData data, TcIPcrComposite pcrComposite)
          This method encrypts a data blob in a manner that can only be decrypted by unseal on the same system.
 void TcIRsaKey.wrapKey(TcIRsaKey wrappingKey, TcIPcrComposite pcrComposite)
          This method wraps a key (created externally) with the key addressed by wrappingKey.
 

Uses of TcIPcrComposite in iaik.tc.tss.impl.java.tsp
 

Classes in iaik.tc.tss.impl.java.tsp that implement TcIPcrComposite
 class TcPcrCompositeBase
           
 class TcPcrCompositeInfo
           
 class TcPcrCompositeInfoLong
           
 class TcPcrCompositeInfoShort
           
 

Methods in iaik.tc.tss.impl.java.tsp that return TcIPcrComposite
 TcIPcrComposite TcContext.createPcrCompositeObject(long initFlags)
           
 

Methods in iaik.tc.tss.impl.java.tsp with parameters of type TcIPcrComposite
 void TcRsaKey.createKey(TcIRsaKey wrappingKey, TcIPcrComposite pcrComposite)
           
 void TcTpm.pcrReset(TcIPcrComposite pcrComposite)
           
 TcTssValidation TcTpm.quote(TcIRsaKey identKey, TcIPcrComposite pcrComposite, TcTssValidation validation)
           
 java.lang.Object[] TcTpm.quote2(TcIRsaKey identKey, boolean addVersion, TcIPcrComposite pcrComposite, TcTssValidation validation)
           
 void TcEncData.seal(TcIRsaKey encKey, TcBlobData data, TcIPcrComposite pcrComposite)
           
 void TcRsaKey.wrapKey(TcIRsaKey wrappingKey, TcIPcrComposite pcrComposite)
           
 

Uses of TcIPcrComposite in iaik.tc.tss.impl.java.tsp.internal.offline
 

Classes in iaik.tc.tss.impl.java.tsp.internal.offline that implement TcIPcrComposite
 class WrapTcPcrCompositeInfoShort
          A wrapping around TcPcrCompositeInfoShort.
With this wrapping it is easy to calculate composite hashes without the need of a present TPM.
This wrapping also allows to get access to the internal TcTpmPcrInfoShort struct via WrapTcPcrCompositeInfoShort.getPcrInfoShort() method.