Crypt API
-
mtx-electronics
- Posts: 17
- Joined: Wed Oct 10, 2012 8:09 am
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?
Re: Crypt API
EP_CryptEncrypt/Decrypt functions are using standard IDEA cipher. But there are some moments that I do not wish to share.
I have some another solution that you may use in your case. You may develop a very simple dll, that will export two functions - encrypt and decrypt. Inside these functions, call Enigma API. Then protect this dll so Enigma API will work. And then use this protected dll as an addon for php.
In this case, you will be able to use functions from this dll in php.
I have some another solution that you may use in your case. You may develop a very simple dll, that will export two functions - encrypt and decrypt. Inside these functions, call Enigma API. Then protect this dll so Enigma API will work. And then use this protected dll as an addon for php.
In this case, you will be able to use functions from this dll in php.
-
mtx-electronics
- Posts: 17
- Joined: Wed Oct 10, 2012 8:09 am
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.
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.
