LPCTSTR CSystemSlotList::GetHash() { COcsCrypto myHash; CSystemSlot myObject; POSITION pos; BOOL bContinue; CString csToHash; if (GetCount() == 0) return NULL; if (!myHash.HashInit()) return NULL; pos = GetHeadPosition(); bContinue = (pos != NULL); if (bContinue) // There is one record => get the first myObject = GetNext( pos); while (bContinue) { csToHash.Format( _T( "%s%s%s%s%s"), myObject.GetName(), myObject.GetDescription(), myObject.GetSlotDesignation(), myObject.GetUsage(), myObject.GetStatus()); myHash.HashUpdate( csToHash); bContinue = (pos != NULL); if (bContinue) myObject = GetNext( pos); } return myHash.HashFinal(); }
LPCTSTR CMemorySlotList::GetHash() { COcsCrypto myHash; CMemorySlot myObject; POSITION pos; BOOL bContinue; static CString csToHash; if (GetCount() == 0) return NULL; if (!myHash.HashInit()) return NULL; pos = GetHeadPosition(); bContinue = (pos != NULL); if (bContinue) // There is one record => get the first myObject = GetNext( pos); while (bContinue) { csToHash.Format( _T( "%s%s%s%s%s%s%u%s"), myObject.GetCaption(), myObject.GetDescription(), myObject.GetCapacity(), myObject.GetUsage(), myObject.GetType(), myObject.GetSpeed(), myObject.GetSlotNumber(), myObject.GetSN()); myHash.HashUpdate( csToHash); bContinue = (pos != NULL); if (bContinue) myObject = GetNext( pos); } return myHash.HashFinal(); }
LPCTSTR CModemList::GetHash() { COcsCrypto myHash; CModem myObject; POSITION pos; BOOL bContinue; CString csToHash; if (!myHash.HashInit()) return NULL; pos = GetHeadPosition(); bContinue = (pos != NULL); if (bContinue) // There is one record => get the first myObject = GetNext( pos); while (bContinue) { csToHash.Format( _T( "%s%s%s%s"), myObject.GetName(), myObject.GetModel(), myObject.GetDescription(), myObject.GetType()); myHash.HashUpdate( LPCTSTR( csToHash), csToHash.GetLength()); bContinue = (pos != NULL); if (bContinue) myObject = GetNext( pos); } return myHash.HashFinal(); }
LPCTSTR CNetworkAdapterList::GetHash() { COcsCrypto myHash; CNetworkAdapter myObject; POSITION pos; BOOL bContinue; CString csToHash; if (GetCount() == 0) return NULL; if (!myHash.HashInit()) return NULL; pos = GetHeadPosition(); bContinue = (pos != NULL); if (bContinue) // There is one record => get the first myObject = GetNext( pos); while (bContinue) { csToHash.Format( _T( "%s%s%s%s%s%s%s%s%s"), myObject.GetDescription(), myObject.GetType(), myObject.GetTypeMIB(), myObject.GetMACAddress(), myObject.GetOperationalStatus(), myObject.GetIPAddress(), myObject.GetIPNetMask(), myObject.GetGateway(), myObject.GetDhcpServer()); myHash.HashUpdate( csToHash); bContinue = (pos != NULL); if (bContinue) myObject = GetNext( pos); } return myHash.HashFinal(); }
LPCTSTR CInputDeviceList::GetHash() { COcsCrypto myHash; CInputDevice myObject; POSITION pos; BOOL bContinue; CString csToHash; if (GetCount() == 0) return NULL; if (!myHash.HashInit()) return NULL; pos = GetHeadPosition(); bContinue = (pos != NULL); if (bContinue) // There is one record => get the first myObject = GetNext( pos); while (bContinue) { csToHash.Format( _T( "%s%s%s%s%s%s"), myObject.GetType(), myObject.GetManufacturer(), myObject.GetCaption(), myObject.GetDescription(), myObject.GetPointingInterface(), myObject.GetPointingType()); myHash.HashUpdate( csToHash); bContinue = (pos != NULL); if (bContinue) myObject = GetNext( pos); } return myHash.HashFinal(); }
LPCTSTR CVideoAdapterList::GetHash() { COcsCrypto myHash; CVideoAdapter myObject; POSITION pos; BOOL bContinue; CString csToHash; if (!myHash.HashInit()) return NULL; pos = GetHeadPosition(); bContinue = (pos != NULL); if (bContinue) // There is one record => get the first myObject = GetNext( pos); while (bContinue) { csToHash.Format( _T( "%s%s%s%s"), myObject.GetName(), myObject.GetChipset(), myObject.GetMemory(), myObject.GetScreenResolution()); myHash.HashUpdate( LPCTSTR( csToHash), csToHash.GetLength()); bContinue = (pos != NULL); if (bContinue) myObject = GetNext( pos); } return myHash.HashFinal(); }