2019-03-22 21:00:07 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2019-03-23 21:15:38 +00:00
|
|
|
#ifndef _INC_LUKS_AF_H
|
|
|
|
#define _INC_LUKS_AF_H
|
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
DECLSPEC void AF_sha1_diffuse16 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha1_diffuse32 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha1_diffuse64 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha256_diffuse16 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha256_diffuse32 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha256_diffuse64 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha512_diffuse16 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha512_diffuse32 (u32 *out);
|
|
|
|
DECLSPEC void AF_sha512_diffuse64 (u32 *out);
|
|
|
|
DECLSPEC void AF_ripemd160_diffuse16 (u32 *out);
|
|
|
|
DECLSPEC void AF_ripemd160_diffuse32 (u32 *out);
|
|
|
|
DECLSPEC void AF_ripemd160_diffuse64 (u32 *out);
|
2019-03-23 21:15:38 +00:00
|
|
|
|
|
|
|
#endif // _INC_LUKS_AF_H
|