C:/fscan/HTTPCore/Authentication/base64.h

Go to the documentation of this file.
00001 #ifndef __BASE64_H
00002 #define __BASE64_H
00003 
00004 #include <ctype.h>
00005 #include <stdio.h>
00006 #include <assert.h> //for assert()
00007 
00008 #ifdef __WIN32__RELEASE__
00009 #include <windows.h>
00010 #else
00011  #ifndef DWORD
00012    #define DWORD int
00013  #endif
00014 #endif
00015 
00016 unsigned int Base64EncodeGetLength( unsigned long size );
00017 unsigned int Base64DecodeGetLength( unsigned long size );
00018 int Base64Encode( unsigned char* out, const unsigned char* in, int inlen );
00019 int Base64Decode( char* out, const char* in, unsigned long size );
00020 
00021 
00022 #endif

Generated on Sun Jan 18 00:32:03 2009 for Fast HTTP Vulnerability Scanner by  doxygen 1.5.4