Files
EgtLock/Obfuscate.h
Dario Sassi 07e9914302 EgtLock 1.6g8 :
- aggiunta gestione chiavi hardware OxySec
- spostati Base64 e Crc32 in General.
2015-07-29 07:03:48 +00:00

23 lines
848 B
C++

//----------------------------------------------------------------------------
// EgalTech 2014-2014
//----------------------------------------------------------------------------
// File : Obfuscate.h Data : 08.09.14 Versione : 1.5i2
// Contenuto : Dichiarazione funzioni per Mix e Scramble.
//
//
//
// Modifiche : 08.09.14 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <string>
//-----------------------------------------------------------------------------
bool MixLockId( std::string& sMachineId) ;
bool ScrambleLockId( std::string& sMachineId) ;
bool ScrambleData( std::string& sData, const std::string& sMask, const int nStep) ;
bool UnScrambleData( std::string& sData, const std::string& sMask, const int nStep) ;