07e9914302
- aggiunta gestione chiavi hardware OxySec - spostati Base64 e Crc32 in General.
23 lines
848 B
C++
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) ;
|