sub decrypt_string { my $crypt_string=shift; my ( $prepend, $key ) = &_secret_vals(); $key = pack( "H32", $key ); my $cipher=new Crypt::CBC( $key, 'IDEA' ); my $clear_string=$cipher->decrypt_hex( $crypt_string ); return $clear_string; }