HomeSort by: relevance | last modified time | path
    Searched refs:ulPcrValueLength (Results 1 - 11 of 11) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/tspi/
tspi_pcr_comp.c 25 UINT32 ulPcrValueLength, /* in */
28 if (ulPcrValueLength == 0 || rgbPcrValue == NULL)
31 if (ulPcrValueLength != TCPA_SHA1_160_HASH_LEN)
34 return obj_pcrs_set_value(hPcrComposite, ulPcrIndex, ulPcrValueLength, rgbPcrValue);
tspi_pcr_extend.c 87 pPcrEvent->ulPcrValueLength = TPM_SHA1_160_HASH_LEN;
spi_utils.c 404 return (sizeof(TSS_PCR_EVENT) + e->ulEventLength + e->ulPcrValueLength);
  /src/crypto/external/cpl/trousers/dist/src/tcs/rpc/tcstp/
rpc_evlog.c 233 LoadBlob_UINT32(offset, event->ulPcrValueLength, blob);
234 if (event->ulPcrValueLength > 0)
235 LoadBlob(offset, event->ulPcrValueLength, blob, event->rgbPcrValue);
247 UINT32 ulPcrValueLength, ulEventLength;
253 UnloadBlob_UINT32(offset, &ulPcrValueLength, blob);
254 (*offset) += ulPcrValueLength;
266 UnloadBlob_UINT32(offset, &event->ulPcrValueLength, blob);
267 if (event->ulPcrValueLength > 0) {
268 event->rgbPcrValue = malloc(event->ulPcrValueLength);
270 LogError("malloc of %u bytes failed.", event->ulPcrValueLength);
    [all...]
  /src/crypto/external/cpl/trousers/dist/src/tcs/
tcs_evlog_imaem.c 116 cur->event.ulPcrValueLength = 20;
117 cur->event.rgbPcrValue = malloc(cur->event.ulPcrValueLength);
126 cur->event.ulPcrValueLength);
257 event->ulPcrValueLength = 20;
258 event->rgbPcrValue = malloc(event->ulPcrValueLength);
268 event->ulPcrValueLength);
tcs_evlog_biosem.c 107 cur->event.ulPcrValueLength = 20;
235 e->ulPcrValueLength = 20;
tcs_evlog.c 196 return (sizeof(TSS_PCR_EVENT) + e->ulEventLength + e->ulPcrValueLength);
  /src/crypto/external/cpl/trousers/dist/src/include/tss/
tss_structs.h 27 UINT32 ulPcrValueLength;
29 [size_is(ulPcrValueLength)]
TSP.idl 94 [in] UINT32 ulPcrValueLength,
95 [in, size_is(ulPcrValueLength)] BYTE* pbPcrValue);
tspi.h 735 UINT32 ulPcrValueLength, // in
  /src/crypto/external/cpl/trousers/dist/src/trspi/
trousers.c 794 Trspi_LoadBlob_UINT32(offset, event->ulPcrValueLength, blob);
795 if (event->ulPcrValueLength > 0)
796 Trspi_LoadBlob(offset, event->ulPcrValueLength, blob, event->rgbPcrValue);
808 UINT32 ulPcrValueLength, ulEventLength;
814 Trspi_UnloadBlob_UINT32(offset, &ulPcrValueLength, blob);
815 (*offset) += ulPcrValueLength;
827 Trspi_UnloadBlob_UINT32(offset, &event->ulPcrValueLength, blob);
828 if (event->ulPcrValueLength > 0) {
829 event->rgbPcrValue = malloc(event->ulPcrValueLength);
831 LogError("malloc of %u bytes failed.", event->ulPcrValueLength);
    [all...]

Completed in 30 milliseconds