mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 01:31:36 -04:00
be621cd600
Signed-off-by: Hongjin Li <lihongjin1@huawei.com>
16 lines
308 B
C
16 lines
308 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
|
|
|
|
/*
|
|
* verify_cert_chain.c
|
|
*/
|
|
|
|
void code_sign_verify_certchain(const void *raw_pkcs7, size_t pkcs7_len, int *ret);
|
|
|
|
#endif /* _VERIFY_CERT_CHAIN_H */
|