Thanks David and Ken,

I modified my test case to attempt to unbind previously bound data from a
reloaded bind key after the PCR Register it was bound to was extended and
ran it on a machine with a real tpm. It worked as you stated, returning a
wrong pcr value error on the Unbind call.

So it looks like the Tpm emulator we are using doesn't implement this
behaviour for whatever reason (configuaration or otherwise).

The emulator trace when I run the test is attached

Many thanks for your time and insights. saved me some time chasing my tail.

Best Regards

Simon

On 18 January 2015 at 20:08, Ken Goldman <[email protected]> wrote:

> For keys in general that require PCR authorization, the authorization is
> not checked when the key is loaded.  It is checked when the key is used.
>
> (When a key is loaded, the authorization of the parent is checked, since
> the parent is used at that time to decrypt the child.  However, the SRK
> parent does not typically require PCR authorization).
>
> If you forward to me the entire TPM emulator trace and what you think
> the sequence should be, I'll take a look at it.
>
> On 1/15/2015 11:22 AM, Simon Gould wrote:
> > Hi all,
> >
> > I am new to TPM development with trousers and have been writing some
> > test cases for an internal project so I can lean the library and be
> > confident we are getting the expected behaviour.
> >
> > One of the things we want to do is to Create a bind key locked to some
> > PCR states. But in my development environment I can't seem to get the
> > expected behaviour. The development environment is linux running a TPM
> > emulator and trousers.
> >
> > What I was expecting was for the loading of the key to fail after I had
> > extended the PCR it was locked to. But it succeeds in loading and using
> > the key. I am probably doing something obviously wrong, but I can't see
> it.
> >
> > The test case goes as follows :
> >
> >     SETUP:
> >
> >     Create Context
> >
> >
> >     TEST:
> >
> >     Create TPM object from context.
> >
> >     Create SRK object and load it
> >
> >     Create PCRComposite object.
> >
> >     Create Key object
> >
> >     Read PCR 0
> >
> >     Set PCR 0 in PCRComposite object to Read value
> >
> >     //This is where I thought the Key is locked to the PCR index 0
> >     Create Key from key object as child of SRK and locked to PCRComposite
> >
>  ThrowOnError(Tspi_Key_CreateKey(keyHandle,SRKHandle,pcrCompositeHandle
> >     ))
> >
> >     Load key using SRK
> >
> >     Register the key in system storage with UUID
> >
> >     Use Key to bind and unbind some text data
> >
> >     Unload the key
> >
> >     Clear the key object
> >
> >     Clear the PCRComposite object
> >
> >     Clear the SRK object
> >
> >     Clear the TPM object
> >
> >     Clear the Context
> >
> >     Create new context
> >
> >     Create TPM object from context
> >
> >     Load the SRK
> >
> >     use the TPM object to extend PCR 0 twice
> >     //it was my understanding that this would invalidate the key we had
> >     locked to the previous value of PCR index 0
> >
> >     Load the key object using LoadbyUuid
> >     //expect it to fail but it passes
> >
> >
> >     Load key using SRK
> >     //this also passes
> >
> >     Use Key to unbing previously bound data
> >     //this also works.
> >
> >
> >
> >     TEARDOWN:
> >
> >     Free all context memory
> >
> >     Close context
> >
> >
> >
> > If someone can point me at some sample code that locks a bind key to the
> > A PCR index value or has some insight into where I am going wrong I
> > would be very grateful.
>
> >
>
>
>
>
> ------------------------------------------------------------------------------
> New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
> GigeNET is offering a free month of service with a new server in Ashburn.
> Choose from 2 high performing configs, both with 100TB of bandwidth.
> Higher redundancy.Lower latency.Increased capacity.Completely compliant.
> http://p.sf.net/sfu/gigenet
> _______________________________________________
> TrouSerS-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/trousers-users
>
tpmd.c:390: Info: starting TPM Emulator daemon (1.2.0.7-475)
tpmd.c:93: Info: parsing options
tpmd.c:100: Debug: debug mode enabled
tpmd.c:145: Debug: startup mode = 'clear'
tpmd.c:198: Info: installing signal handlers
tpmd.c:295: Info: staring main loop
tpmd.c:265: Info: initializing socket /var/run/tpm/tpmd_socket:0
tpmd.c:300: Debug: initializing TPM emulator
tpm_emulator_extern.c:101: Info: _tpm_extern_init()
tpm_emulator_extern.c:104: Debug: openening random device /dev/urandom
tpm_cmd_handler.c:4113: Debug: tpm_emulator_init(1, 0x00000000)
tpm_startup.c:29: Info: TPM_Init()
tpm_testing.c:243: Info: TPM_SelfTestFull()
tpm_testing.c:39: Debug: tpm_test_prng()
tpm_testing.c:69: Debug: Monobit: 10083
tpm_testing.c:70: Debug: Poker:   24.2
tpm_testing.c:71: Debug: run_1:   2496, 2503
tpm_testing.c:72: Debug: run_2:   1247, 1185
tpm_testing.c:73: Debug: run_3:   631, 654
tpm_testing.c:74: Debug: run_4:   282, 311
tpm_testing.c:75: Debug: run_5:   152, 135
tpm_testing.c:76: Debug: run_6+:  162, 182
tpm_testing.c:77: Debug: run_34:  0
tpm_testing.c:111: Debug: tpm_test_sha1()
tpm_testing.c:157: Debug: tpm_test_hmac()
tpm_testing.c:184: Debug: tpm_test_rsa_EK()
tpm_testing.c:186: Debug: tpm_rsa_generate_key()
tpm_testing.c:191: Debug: testing endorsement key
tpm_testing.c:197: Debug: tpm_rsa_sign(RSA_SSA_PKCS1_SHA1)
tpm_testing.c:200: Debug: tpm_rsa_verify(RSA_SSA_PKCS1_SHA1)
tpm_testing.c:203: Debug: tpm_rsa_sign(RSA_SSA_PKCS1_DER)
tpm_testing.c:206: Debug: tpm_rsa_verify(RSA_SSA_PKCS1_DER)
tpm_testing.c:210: Debug: tpm_rsa_encrypt(RSA_ES_PKCSV15)
tpm_testing.c:214: Debug: tpm_rsa_decrypt(RSA_ES_PKCSV15)
tpm_testing.c:218: Debug: verify plain text
tpm_testing.c:221: Debug: tpm_rsa_encrypt(RSA_ES_OAEP_SHA1)
tpm_testing.c:225: Debug: tpm_rsa_decrypt(RSA_ES_OAEP_SHA1)
tpm_testing.c:229: Debug: verify plain text
tpm_testing.c:261: Info: Self-Test succeeded
tpm_startup.c:43: Info: TPM_Startup(1)
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 01000000, resourceType = 00000001
tpmd.c:310: Debug: waiting for connections...
tpmd.c:310: Debug: waiting for connections...
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:778: Debug: [TPM_CAP_VERSION_VAL]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 29 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:701: Debug: [TPM_CAP_ORD]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:701: Debug: [TPM_CAP_ORD]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:74: Debug: [TPM_CAP_PROP_PCR]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:78: Debug: [TPM_CAP_PROP_DIR]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:86: Debug: [TPM_CAP_PROP_KEYS]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:82: Debug: [TPM_CAP_PROP_MANUFACTURER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:114: Debug: [TPM_CAP_PROP_MAX_AUTHSESS]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:725: Debug: [TPM_CAP_KEY_HANDLE]
tpm_capability.c:319: Debug: [TPM_RT_KEY]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 16 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3543: Debug: [TPM_ORD_ForceClear]
tpm_owner.c:263: Info: TPM_ForceClear()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 30 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3786: Debug: [TPM_ORD_ReadPubek]
tpm_credentials.c:130: Info: TPM_ReadPubek()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 314 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3846: Debug: [TPM_ORD_OIAP]
tpm_authorization.c:156: Info: TPM_OIAP()
tpm_authorization.c:164: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 34 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 624 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3533: Debug: [TPM_ORD_TakeOwnership]
tpm_owner.c:112: Info: TPM_TakeOwnership()
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:534: Debug: [TPM_ST_OIAP]
tpm_owner.c:152: Debug: srk->authDataUsage = 01
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 354 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 34 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3811: Debug: [TPM_ORD_Extend]
tpm_integrity.c:39: Info: TPM_Extend()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 30 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:74: Debug: [TPM_CAP_PROP_PCR]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 14 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3816: Debug: [TPM_ORD_PCRRead]
tpm_integrity.c:58: Info: TPM_PCRRead()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 30 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 36 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3851: Debug: [TPM_ORD_OSAP]
tpm_authorization.c:175: Info: TPM_OSAP()
tpm_authorization.c:180: Debug: entityType = 0001, entityValue = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_handles.c:57: Debug: SRK valid? 1
tpm_authorization.c:238: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 54 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 190 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3626: Debug: [TPM_ORD_CreateWrapKey]
tpm_storage.c:636: Info: TPM_CreateWrapKey()
tpm_handles.c:57: Debug: SRK valid? 1
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:539: Debug: [TPM_ST_OSAP]
tpm_integrity.c:139: Info: tpm_compute_pcr_digest()
tpm_integrity.c:151: Debug: comp.valueSize = 20
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 654 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3846: Debug: [TPM_ORD_OIAP]
tpm_authorization.c:156: Info: TPM_OIAP()
tpm_authorization.c:164: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 34 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 662 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3636: Debug: [TPM_ORD_LoadKey2]
tpm_storage.c:844: Info: TPM_LoadKey2()
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:751: Debug: authDataUsage = 01
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:534: Debug: [TPM_ST_OIAP]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 55 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 01000000, resourceType = 00000001
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 14 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3816: Debug: [TPM_ORD_PCRRead]
tpm_integrity.c:58: Info: TPM_PCRRead()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 30 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:725: Debug: [TPM_CAP_KEY_HANDLE]
tpm_capability.c:319: Debug: [TPM_RT_KEY]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 16 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 617 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3631: Debug: [TPM_ORD_LoadKey]
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:755: Debug: TPM_LoadKey(): parent key requires authorization.
tpm_cmd_handler.c:4077: Info: TPM command failed: (0x01) Authentication failed.
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3846: Debug: [TPM_ORD_OIAP]
tpm_authorization.c:156: Info: TPM_OIAP()
tpm_authorization.c:164: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 34 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 662 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3631: Debug: [TPM_ORD_LoadKey]
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:751: Debug: authDataUsage = 01
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:534: Debug: [TPM_ST_OIAP]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 55 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 01000000, resourceType = 00000001
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:74: Debug: [TPM_CAP_PROP_PCR]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 18 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 14 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3816: Debug: [TPM_ORD_PCRRead]
tpm_integrity.c:58: Info: TPM_PCRRead()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 30 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 36 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3851: Debug: [TPM_ORD_OSAP]
tpm_authorization.c:175: Info: TPM_OSAP()
tpm_authorization.c:180: Debug: entityType = 0001, entityValue = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_handles.c:57: Debug: SRK valid? 1
tpm_authorization.c:238: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 54 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 190 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3626: Debug: [TPM_ORD_CreateWrapKey]
tpm_storage.c:636: Info: TPM_CreateWrapKey()
tpm_handles.c:57: Debug: SRK valid? 1
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:539: Debug: [TPM_ST_OSAP]
tpm_integrity.c:139: Info: tpm_compute_pcr_digest()
tpm_integrity.c:151: Debug: comp.valueSize = 20
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 654 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3846: Debug: [TPM_ORD_OIAP]
tpm_authorization.c:156: Info: TPM_OIAP()
tpm_authorization.c:164: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 34 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 662 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3636: Debug: [TPM_ORD_LoadKey2]
tpm_storage.c:844: Info: TPM_LoadKey2()
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:751: Debug: authDataUsage = 01
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:534: Debug: [TPM_ST_OIAP]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 55 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:725: Debug: [TPM_CAP_KEY_HANDLE]
tpm_capability.c:319: Debug: [TPM_RT_KEY]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 20 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 274 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3621: Debug: [TPM_ORD_UnBind]
tpm_storage.c:581: Info: TPM_UnBind()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 28 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 01000000, resourceType = 00000001
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 01000000, resourceType = 00000001
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 34 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3811: Debug: [TPM_ORD_Extend]
tpm_integrity.c:39: Info: TPM_Extend()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 30 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 34 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3811: Debug: [TPM_ORD_Extend]
tpm_integrity.c:39: Info: TPM_Extend()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 30 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:725: Debug: [TPM_CAP_KEY_HANDLE]
tpm_capability.c:319: Debug: [TPM_RT_KEY]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 16 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 617 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3631: Debug: [TPM_ORD_LoadKey]
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:755: Debug: TPM_LoadKey(): parent key requires authorization.
tpm_cmd_handler.c:4077: Info: TPM command failed: (0x01) Authentication failed.
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3846: Debug: [TPM_ORD_OIAP]
tpm_authorization.c:156: Info: TPM_OIAP()
tpm_authorization.c:164: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 34 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 662 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3631: Debug: [TPM_ORD_LoadKey]
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:751: Debug: authDataUsage = 01
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:534: Debug: [TPM_ST_OIAP]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 55 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 10 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3846: Debug: [TPM_ORD_OIAP]
tpm_authorization.c:156: Info: TPM_OIAP()
tpm_authorization.c:164: Debug: handle = 02000000
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 34 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 42 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:734: Debug: [TPM_CAP_CHECK_LOADED]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 662 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3443: Debug: [TPM_TAG_RQU_AUTH1_COMMAND]
tpm_cmd_handler.c:3636: Debug: [TPM_ORD_LoadKey2]
tpm_storage.c:844: Info: TPM_LoadKey2()
tpm_storage.c:744: Info: TPM_LoadKey()
tpm_storage.c:746: Debug: parentHandle = 40000000
tpm_handles.c:57: Debug: SRK valid? 1
tpm_storage.c:751: Debug: authDataUsage = 01
tpm_authorization.c:526: Info: tpm_verify_auth()
tpm_authorization.c:527: Debug: handle = 02000000
tpm_authorization.c:534: Debug: [TPM_ST_OIAP]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpmd.c:358: Debug: sending 55 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 02000000, resourceType = 00000002
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:725: Debug: [TPM_CAP_KEY_HANDLE]
tpm_capability.c:319: Debug: [TPM_RT_KEY]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 24 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 274 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3621: Debug: [TPM_ORD_UnBind]
tpm_storage.c:581: Info: TPM_UnBind()
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 28 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 22 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3566: Debug: [TPM_ORD_GetCapability]
tpm_capability.c:697: Info: TPM_GetCapability()
tpm_capability.c:717: Debug: [TPM_CAP_PROPERTY]
tpm_capability.c:130: Debug: [TPM_CAP_PROP_OWNER]
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 15 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:352: Debug: received 18 bytes
tpm_cmd_handler.c:4143: Debug: tpm_handle_command()
tpm_cmd_handler.c:3450: Debug: [TPM_TAG_RQU_COMMAND]
tpm_cmd_handler.c:3941: Debug: [TPM_ORD_FlushSpecific]
tpm_eviction.c:51: Info: TPM_FlushSpecific()
tpm_eviction.c:52: Debug: handle = 01000001, resourceType = 00000001
tpm_cmd_handler.c:4084: Info: TPM command succeeded
tpmd.c:358: Debug: sending 10 bytes
tpmd.c:331: Debug: waiting for commands...
tpmd.c:192: Info: signal received: 15
tpmd.c:338: Error: select(fh) failed: Interrupted system call
tpm_cmd_handler.c:4126: Debug: tpm_emulator_shutdown()
tpm_startup.c:106: Info: TPM_SaveState()
tpm_data.c:206: Debug: size of permanent data: 7822
tpm_data.c:219: Debug: warning: buffer was too large, 8 bytes left
tpm_emulator_extern.c:115: Info: _tpm_extern_release()
tpmd.c:380: Info: main loop stopped
tpmd.c:400: Info: stopping TPM Emulator daemon
------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
TrouSerS-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/trousers-users

Reply via email to