| 1671 | // Functions calculating and verifying the MD5 signature |
| 1672 | |
| 1673 | bool IsValidMD5(LPBYTE pbMd5) |
| 1674 | { |
| 1675 | LPDWORD Md5 = (LPDWORD)pbMd5; |
| 1676 | |
| 1677 | return (Md5[0] | Md5[1] | Md5[2] | Md5[3]) ? true : false; |
| 1678 | } |
| 1679 | |
| 1680 | bool IsValidSignature(LPBYTE pbSignature) |
| 1681 | { |
no outgoing calls
no test coverage detected