Search found 17 matches

by mtx-electronics
Tue May 07, 2013 6:19 pm
Forum: Problems
Topic: keygen.dll problem with bcb sample
Replies: 1
Views: 8540

keygen.dll problem with bcb sample

The BCB5 sample of the keygen is not working properly because when I try generating a key with KG_GenerateRegistrationKey I get the error shown in the screenshot. Instead, if I use KG_GenerateRegistrationKeyFromProject all is working fine. If I disable debugging options in the compiler then the mess...
by mtx-electronics
Mon Nov 05, 2012 3:12 pm
Forum: Basic
Topic: crypt sections
Replies: 1
Views: 8896

crypt sections

Do crypt sections get decrypted at boot or when the functions are called?
by mtx-electronics
Mon Nov 05, 2012 3:10 pm
Forum: Basic
Topic: EP_RegLoadKeyEx
Replies: 1
Views: 7364

EP_RegLoadKeyEx

I get a message from enigma protector that EP_RegLoadKey is deprecated and to use EP_RegLoadKeyEx. Looking at the INC file I see it has some new size parameters, do I have to first call the function with NULL for name & key to get size and after call again to get the name & key returned? or ...
by mtx-electronics
Tue Oct 23, 2012 5:23 pm
Forum: Basic
Topic: Crypt API
Replies: 2
Views: 10464

Re: Crypt API

Nice idea but my server is running Linux :(
I've found another solution that I'm implementing now using some personalized code that will work in C and PHP.

Also nice of you to implement the crypt api, this can come in handy in the future.
by mtx-electronics
Tue Oct 23, 2012 10:12 am
Forum: Basic
Topic: Debugging EP_ProtectedStringBy*
Replies: 7
Views: 30203

Re: Debugging EP_ProtectedStringBy*

In BCB I'm using this macro #ifdef DEBUG #define PROTECTED_STRING_BY_ID(id, str) str #else #define PROTECTED_STRING_BY_ID(id, str) GetProtectedStringByID(id) #endif String __fastcall TfrmMain::GetProtectedStringByID(int id) { #include "Enigma\vm_begin.inc" int len = EP_ProtectedStringByID(...
by mtx-electronics
Tue Oct 23, 2012 9:24 am
Forum: Basic
Topic: Crypt API
Replies: 2
Views: 10464

Crypt API

I would like to use the EP_CryptEncrypt/Decrypt functions in my application to work with data and then have this same data decoded by some PHP code on a server. I would like to know if these functions are using some standard encryption algo?
by mtx-electronics
Mon Oct 22, 2012 3:27 pm
Forum: Enigma Protector x64
Topic: X64 version... or not??
Replies: 1
Views: 18267

X64 version... or not??

My code is compiled for 32bit OS version and run's perfect under 64bit because of WOW64 emulation... As I understand when I protect my app with 32bit version of Enigma it will not work under 64bit OS, correct?? If this is the case then I would also suppose that x64 version of Enigma will not protect...
by mtx-electronics
Sun Oct 21, 2012 6:10 pm
Forum: Basic
Topic: Anti-Debugger
Replies: 1
Views: 8291

Anti-Debugger

I see that the list of plugins includes IsDebbuggerPresent, Int3, etc... but you also have an option Checkup->Anti debugger... So does Checkup->Anti debugger already include the same checks as the plugins?