MCPcopy Create free account
hub / github.com/beefytech/Beef / GetHash

Method GetHash

IDEHelper/DbgModule.cpp:995–1011  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

993}
994
995void DbgSrcFile::GetHash(String& outStr)
996{
997 if (mHashKind == DbgHashKind_MD5)
998 {
999 for (int i = 0; i < 16; i++)
1000 {
1001 outStr += StrFormat("%02X", mHash[i]);
1002 }
1003 }
1004 else if (mHashKind == DbgHashKind_SHA256)
1005 {
1006 for (int i = 0; i < 32; i++)
1007 {
1008 outStr += StrFormat("%02X", mHash[i]);
1009 }
1010 }
1011}
1012
1013//////////////////////////////////////////////////////////////////////////
1014

Callers 2

GetStackFrameInfoMethod · 0.45
DisassembleAtMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected