|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/lib/modules/2.6.18-419.el5/source/include/linux/ |
Upload File : |
#ifndef __CRYPTOHASH_H #define __CRYPTOHASH_H #define SHA_DIGEST_WORDS 5 #define SHA_WORKSPACE_WORDS 80 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