| 504 | } |
| 505 | |
| 506 | bool IsFileCKeyEKeyName(const char * szFileName, LPBYTE PtrKeyBuffer) |
| 507 | { |
| 508 | size_t nLength = strlen(szFileName); |
| 509 | |
| 510 | if(nLength == MD5_STRING_SIZE) |
| 511 | { |
| 512 | if(BinaryFromString(szFileName, MD5_STRING_SIZE, PtrKeyBuffer) == ERROR_SUCCESS) |
| 513 | { |
| 514 | return true; |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | return false; |
| 519 | } |
| 520 | |
| 521 | bool CascCheckWildCard(const char * szString, const char * szWildCard) |
| 522 | { |
no test coverage detected