mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-30 23:02:18 +00:00
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
21 lines
448 B
C
21 lines
448 B
C
#ifndef __CRYPTOHASH_H
|
|
#define __CRYPTOHASH_H
|
|
|
|
#include <uapi/linux/types.h>
|
|
|
|
#define SHA_DIGEST_WORDS 5
|
|
#define SHA_MESSAGE_BYTES (512 /*bits*/ / 8)
|
|
#define SHA_WORKSPACE_WORDS 16
|
|
|
|
void sha_init(__u32 *buf);
|
|
void sha_transform(__u32 *digest, const char *data, __u32 *W);
|
|
|
|
#define MD5_DIGEST_WORDS 4
|
|
#define MD5_MESSAGE_BYTES 64
|
|
|
|
void md5_transform(__u32 *hash, __u32 const *in);
|
|
|
|
__u32 half_md4_transform(__u32 buf[4], __u32 const in[8]);
|
|
|
|
#endif
|