3b3802923e
Co-authored-by: Maksim Naumenko <maksim.naumenko@espressif.com> Co-authored-by: Harshal Patil <harshal.patil@espressif.com>
13 lines
277 B
C
13 lines
277 B
C
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
|
|
#ifndef SHA512_224_I_H
|
|
#define SHA512_224_I_H
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "sha512_i.h"
|
|
|
|
void sha512_224_init(struct sha512_state *md);
|
|
|
|
#endif /* SHA512_224_I_H */
|