md5_main.cpp 394 B

1234567891011121314151617
  1. //
  2. // Created by 阳坤 on 2022/3/1.
  3. //
  4. extern "C"{
  5. #include "src/utils/md5.h"
  6. }
  7. static void print_file_md5(const char *filepath) {
  8. char md5_str[64] = {0};
  9. int len = get_file_md5(filepath, md5_str);
  10. if (len > 0)
  11. printf("md5:%s len=%d\n", md5_str, len);
  12. }
  13. int main(){
  14. print_file_md5("/Users/devyk/Data/Project/sample/github_code/OpenCVSample/README.md");
  15. return 1;
  16. }