Posted on 2006-08-03 12:18:18-07
by rahedin response to 2569
Re: input must be 8 bytes long at DES.pm line 58.
Possible culprit could be encoding.
Your input has to have characters 8 byte long. If it's in e.g. utf8, change it this way:
from_to ($input,'utf8','iso-8859-1') where from_to must be imported from Encode module.
Radek