| 620 | } |
| 621 | |
| 622 | CString WizMd5FileStringNoSpaceJava(const CString& strFileName) |
| 623 | { |
| 624 | QFile file(strFileName); |
| 625 | |
| 626 | if (!file.open(QIODevice::ReadOnly)) { |
| 627 | return CString(); |
| 628 | } |
| 629 | |
| 630 | CString ret = WizMd5StringNoSpaceJava(file.readAll()); |
| 631 | |
| 632 | file.close(); |
| 633 | |
| 634 | return ret; |
| 635 | } |
| 636 | |
| 637 | BOOL WizMd5File(const CString& strFileName, BYTE* pResult) |
| 638 | { |
nothing calls this directly
no test coverage detected