Posted on Thu Aug 3 15:18:18 2006
by rahedin response to 2569(See the whole thread of 6)
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