I am trying to implement DES encryption in asp.net application from the given link:
as per given code its working fine but if i add one more character in bytes variable its throwing exception
static byte[] bytes = ASCIIEncoding.ASCII.GetBytes("ZeroCool"); //Working fine
static byte[] bytes = ASCIIEncoding.ASCII.GetBytes("ZeroCoola"); //throwing exception

Anybody have idea how to resolve this one?
Is there any limit of 8 character in DES encryption?
Thanks