C++ MD5 해시 라이브러리


C++ MD5 해시 라이브러리

이나영2 by Raymond.Kang 물론 , 이사진의 요점은 이나영 여신님이십니다. 네트워크 프로그래밍 관련 과제 하다가, MD5 해쉬가 필요할것 같아서 찾아봤는데... http://bbangwon.tistory.com/16 우웃 감사합니다 ㅠㅠ 예제... #ifdef HAVE_CONFIG_H #include #endif #include "md5.h" #include #include #include using namespace std; string md5(const string strMd5) { md5_state_t state; md5_byte_t digest[16]; char hex_output[16*2 + 1]; int di; md5_init(&state); md5_append(&state, (co..


원문링크 : C++ MD5 해시 라이브러리