forked from microsoft/TSS.MSR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventSequenceCompleteResponse.java
79 lines (63 loc) · 2.59 KB
/
EventSequenceCompleteResponse.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package tss.tpm;
import tss.*;
// -----------This is an auto-generated file: do not edit
//>>>
/** This command adds the last part of data, if any, to an Event Sequence and returns the
* result in a digest list. If pcrHandle references a PCR and not TPM_RH_NULL, then the
* returned digest list is processed in the same manner as the digest list input
* parameter to TPM2_PCR_Extend(). That is, if a bank contains a PCR associated with
* pcrHandle, it is extended with the associated digest value from the list.
*/
public class EventSequenceCompleteResponse extends RespStructure
{
/** List of digests computed for the PCR */
public TPMT_HA[] results;
public EventSequenceCompleteResponse() {}
/** TpmMarshaller method */
@Override
public void toTpm(TpmBuffer buf) { buf.writeObjArr(results); }
/** TpmMarshaller method */
@Override
public void initFromTpm(TpmBuffer buf) { results = buf.readObjArr(TPMT_HA.class); }
/** @deprecated Use {@link #toBytes()} instead
* @return Wire (marshaled) representation of this object
*/
public byte[] toTpm () { return toBytes(); }
/** Static marshaling helper
* @param byteBuf Wire representation of the object
* @return New object constructed from its wire representation
*/
public static EventSequenceCompleteResponse fromBytes (byte[] byteBuf)
{
return new TpmBuffer(byteBuf).createObj(EventSequenceCompleteResponse.class);
}
/** @deprecated Use {@link #fromBytes(byte[])} instead
* @param byteBuf Wire representation of the object
* @return New object constructed from its wire representation
*/
public static EventSequenceCompleteResponse fromTpm (byte[] byteBuf) { return fromBytes(byteBuf); }
/** Static marshaling helper
* @param buf Wire representation of the object
* @return New object constructed from its wire representation
*/
public static EventSequenceCompleteResponse fromTpm (TpmBuffer buf)
{
return buf.createObj(EventSequenceCompleteResponse.class);
}
@Override
public String toString()
{
TpmStructurePrinter _p = new TpmStructurePrinter("EventSequenceCompleteResponse");
toStringInternal(_p, 1);
_p.endStruct();
return _p.toString();
}
@Override
public void toStringInternal(TpmStructurePrinter _p, int d)
{
_p.add(d, "TPMT_HA[]", "results", results);
}
@Override
public SessEncInfo sessEncInfo() { return new SessEncInfo(4, 66); }
}
//<<<