diff options
Diffstat (limited to 'src/cryptsetup/cryptsetup-tokens/luks2-tpm2.h')
-rw-r--r-- | src/cryptsetup/cryptsetup-tokens/luks2-tpm2.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cryptsetup/cryptsetup-tokens/luks2-tpm2.h b/src/cryptsetup/cryptsetup-tokens/luks2-tpm2.h new file mode 100644 index 0000000000..d36623baf9 --- /dev/null +++ b/src/cryptsetup/cryptsetup-tokens/luks2-tpm2.h @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ + +#pragma once + +struct crypt_device; + +int acquire_luks2_key( + uint32_t pcr_mask, + const char *device, + const void *key_data, + size_t key_data_size, + const void *policy_hash, + size_t policy_hash_size, + void **ret_decrypted_key, + size_t *ret_decrypted_key_size); + +int parse_luks2_tpm2_data( + const char *json, + uint32_t search_pcr_mask, + uint32_t *ret_pcr_mask, + char **ret_base64_blob, + char **ret_hex_policy_hash); |