in reply to Re^3: SSH not working with TK
in thread SSH not working with TK

it is wroking for TK
The problem occurs if you are running Crypt::Random version
1.13. The problem is fixed in version 1.25 (and maybe earlier, I don't know).
The following lines:

version 1.13

*import = \&Exporter::import; @EXPORT_OK = qw( makerandom makerandom_itv <br>makerandom_octet );
Should be changed to:

version 1.25
BEGIN { *import = \&Exporter::import; @EXPORT_OK = qw( makerandom makerandom_itv <br>makerandom_octet ); }

20060711 Janitored by Corion: Added formatting, code tags, as per Writeup Formatting Tips