MCPcopy Create free account
hub / github.com/Scobalula/Greyhound / IsFileCKeyEKeyName

Function IsFileCKeyEKeyName

src/External/CascLib/src/common/Common.cpp:506–519  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

504}
505
506bool 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
521bool CascCheckWildCard(const char * szString, const char * szWildCard)
522{

Callers 1

CascOpenFileFunction · 0.85

Calls 1

BinaryFromStringFunction · 0.85

Tested by

no test coverage detected