Home | History | Annotate | Download | only in libkeymaster

Lines Matching full:data

3  * @brief  Contains TCI command definitions and data structures
25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
56 * @param len Length of the data to process.
57 * @param data Data to be processed
61 uint32_t len; /**< Length of data to process */
75 * Generate key data
76 * Response data contains generated RSA key pair data is
85 uint32_t keydata; /**< Key data buffer passed by TLC */
86 uint32_t keydatalen; /**< Length of key data buffer */
87 uint32_t solen; /**< Secure object length (of key data) (provided by the trustlet) */
92 * RSA sign data structure
95 uint32_t keydata; /**< Key data buffer */
96 uint32_t keydatalen; /**< Length of key data buffer */
97 uint32_t plaindata; /**< Plaintext data buffer */
98 uint32_t plaindatalen; /**< Length of plaintext data buffer */
99 uint32_t signaturedata; /**< Signature data buffer */
100 uint32_t signaturedatalen; /**< Length of signature data buffer */
106 * RSA signature verify data structure
109 uint32_t keydata; /**< Key data buffer */
110 uint32_t keydatalen; /**< Length of key data buffer */
111 uint32_t plaindata; /**< Plaintext data buffer */
112 uint32_t plaindatalen; /**< Length of plaintext data buffer */
113 uint32_t signaturedata; /**< Signature data buffer */
114 uint32_t signaturedatalen; /**< Length of signature data buffer */
121 * Generate HMAC key data
122 * Response data contains generated HMAC key data that is
128 uint32_t keydata; /**< Key data buffer passed by TLC */
129 uint32_t keydatalen; /**< Length of key data buffer */
130 uint32_t solen; /**< Secure object length (of key data) (provided by the trustlet) */
135 * HMAC sign data structure
138 uint32_t keydata; /**< Key data buffer */
139 uint32_t keydatalen; /**< Length of key data buffer */
140 uint32_t plaindata; /**< Plaintext data buffer */
141 uint32_t plaindatalen; /**< Length of plaintext data buffer */
142 uint32_t signaturedata; /**< Signature data buffer */
143 uint32_t signaturedatalen; /**< Length of signature data buffer */
149 * HMAC signature verify data structure
152 uint32_t keydata; /**< Key data buffer */
153 uint32_t keydatalen; /**< Length of key data buffer */
154 uint32_t plaindata; /**< Plaintext data buffer */
155 uint32_t plaindatalen; /**< Length of plaintext data buffer */
156 uint32_t signaturedata; /**< Signature data buffer */
157 uint32_t signaturedatalen; /**< Length of signature data buffer */
199 * Key import data structure
202 uint32_t keydata; /**< Key data buffer */
203 uint32_t keydatalen; /**< Length of key data buffer */
205 uint32_t sodatalen; /**< Length of wrapped data buffer */
210 * Get public key data structure
214 uint32_t keydata; /**< Key data buffer */
215 uint32_t keydatalen; /**< Length of key data buffer */
224 * TCI message data.