Symbol: tpm_buf_append
drivers/char/tpm/tpm-buf.c
125
EXPORT_SYMBOL_GPL(tpm_buf_append);
drivers/char/tpm/tpm-buf.c
129
tpm_buf_append(buf, &value, 1);
drivers/char/tpm/tpm-buf.c
137
tpm_buf_append(buf, (u8 *)&value2, 2);
drivers/char/tpm/tpm-buf.c
145
tpm_buf_append(buf, (u8 *)&value2, 4);
drivers/char/tpm/tpm-sysfs.c
50
tpm_buf_append(&tpm_buf, anti_replay, sizeof(anti_replay));
drivers/char/tpm/tpm1-cmd.c
474
tpm_buf_append(&buf, hash, TPM_DIGEST_SIZE);
drivers/char/tpm/tpm2-cmd.c
151
tpm_buf_append(&buf, (const unsigned char *)pcr_select,
drivers/char/tpm/tpm2-cmd.c
220
tpm_buf_append(&buf, (const unsigned char *)&digests[i].digest,
drivers/char/tpm/tpm2-sessions.c
1015
tpm_buf_append(&buf, auth->our_nonce, sizeof(auth->our_nonce));
drivers/char/tpm/tpm2-sessions.c
1334
tpm_buf_append(&buf, template.data, template.length);
drivers/char/tpm/tpm2-sessions.c
335
tpm_buf_append(buf, passphrase, passphrase_len);
drivers/char/tpm/tpm2-sessions.c
417
tpm_buf_append(buf, nonce, SHA256_DIGEST_SIZE);
drivers/char/tpm/tpm2-sessions.c
421
tpm_buf_append(buf, nonce, SHA256_DIGEST_SIZE);
drivers/char/tpm/tpm2-sessions.c
509
tpm_buf_append(buf, encoded_key, EC_PT_SZ);
drivers/char/tpm/tpm2-sessions.c
512
tpm_buf_append(buf, encoded_key, EC_PT_SZ);
drivers/char/tpm/tpm2-space.c
85
tpm_buf_append(&tbuf, &buf[*offset], body_size);
include/linux/tpm.h
424
void tpm_buf_append(struct tpm_buf *buf, const u8 *new_data, u16 new_length);
security/keys/trusted-keys/trusted_tpm1.c
375
tpm_buf_append(tb, ononce, TPM_NONCE_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
500
tpm_buf_append(tb, td->encauth, SHA1_DIGEST_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
502
tpm_buf_append(tb, pcrinfo, pcrinfosize);
security/keys/trusted-keys/trusted_tpm1.c
504
tpm_buf_append(tb, data, datalen);
security/keys/trusted-keys/trusted_tpm1.c
506
tpm_buf_append(tb, td->nonceodd, TPM_NONCE_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
508
tpm_buf_append(tb, td->pubauth, SHA1_DIGEST_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
591
tpm_buf_append(tb, blob, bloblen);
security/keys/trusted-keys/trusted_tpm1.c
593
tpm_buf_append(tb, nonceodd, TPM_NONCE_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
595
tpm_buf_append(tb, authdata1, SHA1_DIGEST_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
597
tpm_buf_append(tb, nonceodd, TPM_NONCE_SIZE);
security/keys/trusted-keys/trusted_tpm1.c
599
tpm_buf_append(tb, authdata2, SHA1_DIGEST_SIZE);
security/keys/trusted-keys/trusted_tpm2.c
214
tpm_buf_append(buf, nonce, nonce_len);
security/keys/trusted-keys/trusted_tpm2.c
220
tpm_buf_append(buf, hmac, hmac_len);
security/keys/trusted-keys/trusted_tpm2.c
282
tpm_buf_append(&sized, options->blobauth, options->blobauth_len);
security/keys/trusted-keys/trusted_tpm2.c
285
tpm_buf_append(&sized, payload->key, payload->key_len);
security/keys/trusted-keys/trusted_tpm2.c
286
tpm_buf_append(&buf, sized.data, sized.length);
security/keys/trusted-keys/trusted_tpm2.c
302
tpm_buf_append(&sized, options->policydigest, options->policydigest_len);
security/keys/trusted-keys/trusted_tpm2.c
308
tpm_buf_append(&buf, sized.data, sized.length);
security/keys/trusted-keys/trusted_tpm2.c
443
tpm_buf_append(&buf, blob, blob_len);