Out of curiosity, what is the strength of the log on and credit card encryption used to encipher the details? Not that I am going to generate random prime numbers to try and crack it or anything
Announcement
Collapse
No announcement yet.
Strength of Log On security
Collapse
X
-
We are using several different methods to provide secure handling of sensitive data.
The account passwords are not stored online. Therefore they do not need very strong encryption. We are using a mixture of message digest algorithms to secure the login.
The order details are a bit more sensitive and stored on the server for a while therefore we are using a symmetric algorithm to encrypt the data. The key length is 128 bit here.
The credit card details when captured on the server are handled more carefully by encrypting with an asymmetric algorithm before it goes under the symmetric encryption of the order data. The key length depends on the server configuration. When the old java applet is used or ActEncrypt1024 perl module is installed on the server then 1024 bit is the used key length. Our shared SSL service is also using 1024 bit. Otherwise we are using 128 bit due to performance reasons (it would take ages for a pure perl code to do the 1024 bit encryption).
I hope it helps.
Comment
Comment