mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 09:41:18 -04:00
ce31db2c6c
Change-Id: I06948b7bf8741449dfa1af1964d9170329d90b4b Signed-off-by: lihehe <lihehao@huawei.com>
20 lines
415 B
C
20 lines
415 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
|
*/
|
|
|
|
#ifndef _CODE_SIGN_EXT_H
|
|
#define _CODE_SIGN_EXT_H
|
|
|
|
/*
|
|
* code_sign_ext.c
|
|
*/
|
|
void code_sign_check_descriptor(const struct inode *inode,
|
|
const void *desc, int *ret);
|
|
|
|
void code_sign_before_measurement(void *_desc, int *ret);
|
|
|
|
void code_sign_after_measurement(void *_desc, int version);
|
|
|
|
#endif /* _CODE_SIGN_H */
|