|
safekey sentinel emulator info(s)
safekey sentinel emulator does support full query support ( ie. std+enh algos )
for superpro dongle, it use file with extension *.ssp
by default emulator looks for this files in system32/drivers folder
it's format is something like this...
struct ssp_t {
unsigned long sign;
unsigned long id;
unsigned char acco[64];
unsigned short data[64];
unsigned short maxquerybytes;
unsigned short lookuptable[56][896]; // cell 0x8 - 0x3f
};
where,
sign = dword value checked for valid *.ssp file
id = n/a
acco = access code ( 0-3 )
data = dongle data
maxquerybytes = 56 ( max. query size )
lookuptable = kinda obfuscation data needed to calculate correct response(s)
|