So I'm trying to use the TripleDES algorithm in C#.
However, I keep getting an error saying that its not the specified key size.
What does that mean and how can I fix it?
Its occurring on the line:
tripledes.Key = pdb.GetBytes(112);
pdb is an Rfc2898DeriveBytes.
So yeah, how do I fix this error?