Gabor Toth | ab7db21 | 2023-08-18 16:08:12 +0200 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef CRYPTO_CLIENT_H | ||||
8 | #define CRYPTO_CLIENT_H | ||||
9 | |||||
10 | #include <stdint.h> | ||||
11 | |||||
12 | int verify_pkcs7_signature(const uint8_t *signature_cert, uint64_t signature_cert_len, | ||||
13 | const uint8_t *hash, uint64_t hash_len, const uint8_t *public_key_cert, | ||||
14 | uint64_t public_key_cert_len); | ||||
15 | |||||
16 | #endif /* CRYPTO_CLIENT_H */ |