Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (3)
Test email sending
no vote
Use ckmail to send mail, ckmail library please go to the official website to download, the code is VC / MFC project, has realized the mail sending, with source code.
dolpstar
2020-01-19
0
1
Hpsocket UDP simple test code
no vote
Hpsocket UDP simple test code implements a simple communication example between UDP server and UDP client
dolpstar
2018-05-29
0
1
MD5 encryption C + + cross platform
no vote
MD5 encryption, C + + cross platform, Linux and windows can use static void md5init (md5init)_ CTX *context){  context->count[0] = 0;  context->count[1] = 0;  context->state[0] = 0x67452301;  context->state[1] = 0xEFCDAB89;  context->state[2] = 0x98BADCFE;  context->state[3] = 0x10325476;}static void MD5Update(MD5_ CTX *context, unsigned char *input, unsigned int inputlen){  unsigned int i = 0;  unsigned int index = 0;  unsigned int partlen = 0;  index = (context->count[0] >> 3) & 0x3F;  partlen = 64 - index;  context->count[0] += inputlen << 3;  if(context->count[0] < (inputlen << 3))    context->count[1]++;  context->count[1] += inputlen >> 29;  if(inputlen >= partlen)  {  &n
dolpstar
2018-01-18
0
1
No more~