Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
KSG_MD5_String.cpp
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Category:
Game Server Simulator
Development Platform:
C/C++
- //////////////////////////////////////////////////////////////////////////////////////
- //
- // FileName : KSG_MD5_String.cpp
- // Version : 1.0
- // Creater : Freeway Chen
- // Date : 2003-7-29 17:53:17
- // Comment : Conver String to MD5 String
- //
- //////////////////////////////////////////////////////////////////////////////////////
- #include "KWin32.h"
- #include "md5.h"
- #include "KSG_MD5_String.h"
- #include <string.h>
- int KSG_StringToMD5String(char szDestMD5String[64], const char cszSrcString[])
- {
- int nResult = false;
- md5_state_t md5_state;
- unsigned char MD5Value[16];
- int nSrcStringLen = 0;
- if (!szDestMD5String)
- goto Exit0;
- szDestMD5String[0] = '';
- if (!cszSrcString)
- goto Exit0;
- nSrcStringLen = strlen(cszSrcString);
- if (!nSrcStringLen)
- goto Exit0;
- md5_init(&md5_state);
- md5_append(&md5_state, (unsigned char *)cszSrcString, nSrcStringLen);
- md5_finish(&md5_state, MD5Value);
- sprintf(
- szDestMD5String,
- "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
- MD5Value[ 0], MD5Value[ 1], MD5Value[ 2], MD5Value[ 3],
- MD5Value[ 4], MD5Value[ 5], MD5Value[ 6], MD5Value[ 7],
- MD5Value[ 8], MD5Value[ 9], MD5Value[10], MD5Value[11],
- MD5Value[12], MD5Value[13], MD5Value[14], MD5Value[15]
- );
- nResult = true;
- Exit0:
- return nResult;
- }