mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 09:41:18 -04:00
5ce3950137
Signed-off-by: 团辉 <shituanhui@huawei.com>
19 lines
394 B
C
19 lines
394 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
|
*/
|
|
|
|
#ifndef _VERIFY_CERT_CHAIN_H
|
|
#define _VERIFY_CERT_CHAIN_H
|
|
|
|
#include <linux/xpm_types.h>
|
|
#include "fsverity_private.h"
|
|
|
|
/*
|
|
* verify_cert_chain.c
|
|
*/
|
|
void code_sign_verify_certchain(const void *raw_pkcs7, size_t pkcs7_len,
|
|
struct fsverity_info *vi, int *ret);
|
|
|
|
#endif /* _VERIFY_CERT_CHAIN_H */
|