I am using TripleDESCryptoServiceProvider to encrypt a series of bytes in C#. The key which is passed to me is in like this FFC7B905AD6ACB57D662115FD65FA338
which i believe is a hex. How can i get this value into TripleDESCryptoServiceProvider.Key
property which accepts a byte array or how do i copy this value to a byte array so that i can pass to key property.
Thanks in advance,
John