Defined in RFC 2898 or rsa labs. Quoting: Another approach to password-based cryptography is to construct key derivation techniques that are relatively expensive, thereby increasing the cost of exhaustive search. One way to do this is to include an iteration count in the key derivation ...
5
votes
2answers
376 views
.NET: Difference between PasswordDeriveBytes and Rfc2898DeriveBytes
I'm trying to understand some C#-code, I have been handed, which deals with cryptography, and specifically uses PasswordDeriveBytes from System.Security.Cryptography.
In the .NET docs , it says that ...
3
votes
1answer
120 views
Security implications of storing the password hash along an encrypted AES key
I am using the PKCS#5 standard to generate a key using a random and unique salt and the user`s password in input. Consider this key as the "encryption" key.
The "encryption" key is used to encrypt a ...
2
votes
2answers
98 views
PKCS5Padding in C#
I need to encrypt a string using DESede pkcs5 padding. However C# only provides PKCS7 padding. So how can I achieve this ?
Thanks in advance
2
votes
2answers
108 views
Importance of the key size in the Rfc2898DeriveBytes (PBKDF2) implementation
This is the code I use to "hash" (or derive key as called in the PBKDF2 implementation of the PKCS standard) passwords strings with the Rfc2898DeriveBytes class provided in .NET:
int saltSize = 256;
...
2
votes
2answers
295 views
How store salt in distributed environment
I dont know how to use the "salt concept" in my scenario.
Suppose I have a client desktop application that encrypts data for specific users and send it to a remote server. The client application ...
1
vote
1answer
287 views
Deriving a secret from a master key using JCE/JCA
Can some point me in the right direction?
I'd like to use JCE/JCA to derive a new key from a master secret key, How can I achieve this?
Regards.
1
vote
1answer
724 views
What would be “openssl enc -a -e -salt -des3 -pass pass:abc123” equivalent in .NET?
My .Net application need to communicate with Linux based system which is using following command line to encrypt their messages:
openssl enc -a -e -salt -des3 -pass pass:abc123
How would be ...
1
vote
2answers
672 views
How do I encrypt a string in vb.net using RijndaelManaged, and using PKCS5 padding?
I use the following code to initialize encryption...
Dim symmetricKey As New System.Security.Cryptography.RijndaelManaged()
With symmetricKey
.Key = Encoding.ASCII.GetBytes(Key)
.IV = ...
0
votes
1answer
90 views
PKCS #5 padding with m2crypto
Is there any way to use PKCS #5 padding with AES CBC in m2crypto? Can't seem to find one too easily. Is there any python library that can do this?
Or do I need to do it manually? If so, are there any ...
0
votes
0answers
80 views
PBE Parameters for Compatibility with Java's OpenSSL.encrypt() Function
I am attempting to write C code using the openssl libraries to decrypt data that has been encrypted by the Java function OpenSSL.encrypt(). I know the password, but I have not been able to figure out ...
0
votes
0answers
252 views
JAVA DES/CBC/PKCS5Padding how encryption translated into iPhone?
source:
public static String encrypt(String src, String key) {
try {
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
DESKeySpec dks = new DESKeySpec(key.substring(0, ...
0
votes
1answer
63 views
PKCS#5 Salt privacy?
In the official documentation of the PKCS5 V2.0 standard, we can read "The salt can be viewed as an index into a large set of keys derived from the password, and need not be kept secret."
The part ...
0
votes
1answer
86 views
I am searching for an example in C for using pkcs#5
AFAIK, PKCS#5 is used for hashing passwords. I could not find an example to explain how to use openssl to make a client for hashing the passwords.