I was wondering those differences, since I have a program that asks me for a byte[].
public static string DecryptTextFromFile(String FileName, byte[] Key, byte[]
IV){}
and I have already tried:
char[] key= { '9', 'D', '2', 'A', 'E'};
doesn't give an error but I need byte[]
and this:
byte[] key= { '9', 'D', '2', 'A', 'E'};
// but this one says that I am using char characters, how do I put them in byte[]
format?.