Search Results

1
vote

Using openssl encryption with Java

I'm not an OpenSSL expert, but I'd guess the C++ code is using DES in CBC mode thus needing an IV (that's what the initKey probably is, and that's why you think you need two keys). If I'm right, yo …
1
vote

What is the best way to encrypt a clob?

Slightly off-topic: What's the point of the encryption/obfuscation in the first place? An attacker having access to your database will be able to obtain the plaintext -- finding the above stored pr …
0
votes

.NET’s SslStream is always negotiating to the least secure cipher I have. How can I change this?

In Java you can order the various algorithms/ciphers according to your needs and preferences. May be there is a similar API in .NET... …
4
votes

3DES with .cer public key?

It's not a good idea to use keys generated for asymmetric cryptography for symmetric cryptography. There's nothing preventing you from coming up with a way of using a public key as an encryption ke …
0
votes

URL Encryption in Java

It depends on your threat model. For example, if you want to protect the parameters sent by your Java app to your server from an attacker who has access to the communication channel, you should con …
3
votes

Encrypting Salary value in ASP .NET 2.0 and SQL Server 2005

Developers of the webapp could still access the salary figures -- it's all a matter of trust. To counter that, you could switch to the model where the encryption/decryption happens on the client-si …
5
votes

How to save encrypted data in cookie (using php)?

I suggest you not only encrypt but also sign the data. If you don't sign the data, you won't be able to tell reliably whether the user modified the data. Also, to avoid replay you may want to add s …
2
votes

Knowing the plaintext, how to discover the encryption scheme used?

Assuming it's not something as simple as a substitution cipher (try frequency analysis) or a poorly applied XOR (e.g., reusing the key; try XORing two ciphertexts with known plaintexts and then see …