http://qs321.pair.com?node_id=166950


in reply to Blowfish minimum keysize

If you check Blowfish.xs (line 35) you will see:

if (key_len < 8 || key_len > 56) croak("Invalid length key");

You will also have to change this.

I have not tested this. Good luck.

alex pleiner <alex@zeitform.de>
zeitform Internet Dienste

Replies are listed 'Best First'.
Blowfish minimum keysize
by clerestorey (Novice) on May 17, 2002 at 01:47 UTC

    Absolutely right, Alex - changed these lines, perl Makefile.PL etc., and it works like a charm. Thank you very much.

    James