diff options
Diffstat (limited to 'src/pcrlock/pehash.h')
-rw-r--r-- | src/pcrlock/pehash.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pcrlock/pehash.h b/src/pcrlock/pehash.h new file mode 100644 index 0000000..26f2fb1 --- /dev/null +++ b/src/pcrlock/pehash.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include <sys/types.h> + +#include "openssl-util.h" +#include "uki.h" + +int pe_hash(int fd, const EVP_MD *md, void **ret_hash, size_t *ret_hash_size); + +int uki_hash(int fd, const EVP_MD *md, void *ret_hashes[static _UNIFIED_SECTION_MAX], size_t *ret_hash_size); |