| 71 | } |
| 72 | |
| 73 | static void check_file(const char* filepath) |
| 74 | { |
| 75 | char buf[33]; |
| 76 | if (acl::md5::md5_file(filepath, NULL, 0, buf, sizeof(buf)) == -1) { |
| 77 | printf("md5 check %s error\r\n", filepath); |
| 78 | } else { |
| 79 | printf("md5 ok, file=%s, result=%s\r\n", filepath, buf); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | static void check_string(const acl::string& key, const acl::string& plain) |
| 84 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…