diff options
Diffstat (limited to 'include/keys/trusted_tpm.h')
| -rw-r--r-- | include/keys/trusted_tpm.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/keys/trusted_tpm.h b/include/keys/trusted_tpm.h new file mode 100644 index 000000000000..0fadc6a4f166 --- /dev/null +++ b/include/keys/trusted_tpm.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef __TRUSTED_TPM_H +#define __TRUSTED_TPM_H + +#include <keys/trusted-type.h> +#include <linux/tpm_command.h> + +extern struct trusted_key_ops trusted_key_tpm_ops; + +int tpm2_seal_trusted(struct tpm_chip *chip, + struct trusted_key_payload *payload, + struct trusted_key_options *options); +int tpm2_unseal_trusted(struct tpm_chip *chip, + struct trusted_key_payload *payload, + struct trusted_key_options *options); + +#endif |
