3b3802923e
Co-authored-by: Maksim Naumenko <maksim.naumenko@espressif.com> Co-authored-by: Harshal Patil <harshal.patil@espressif.com>
25 lines
470 B
C
25 lines
470 B
C
/*
|
|
* SHA-384 internal definitions
|
|
* Copyright (c) 2015, Pali Rohár <pali.rohar@gmail.com>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef SHA384_I_H
|
|
#define SHA384_I_H
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "sha512_i.h"
|
|
|
|
/**
|
|
* @brief Size of SHA384 hash in bytes
|
|
*/
|
|
#define SHA384_HASH_SIZE 48
|
|
|
|
#define sha384_state sha512_state
|
|
|
|
void sha384_init(struct sha384_state *md);
|
|
|
|
#endif /* SHA384_I_H */
|