blob: 4c55f375c8407663034eb7d8be332e337904262c [file] [log] [blame]
Juan Castillo6f971622014-10-21 11:30:42 +01001/*
Qixiang Xu29722472017-11-09 13:51:58 +08002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Juan Castillo6f971622014-10-21 11:30:42 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castillo6f971622014-10-21 11:30:42 +01005 */
6
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +00007#ifndef SHA_H
8#define SHA_H
Juan Castillo6f971622014-10-21 11:30:42 +01009
Qixiang Xu29722472017-11-09 13:51:58 +080010int sha_file(int md_alg, const char *filename, unsigned char *md);
Juan Castillo6f971622014-10-21 11:30:42 +010011
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +000012#endif /* SHA_H */