blob: 4b59bbe322a6d3a2339d80f6ad198d7b48601623 [file] [log] [blame]
Gabor Tothab7db212023-08-18 16:08:12 +02001/*
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
12int 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 */