in reply to How to do encryption ?
Also, please look at the documentation for the module as well. It will explain how to do it.#!/usr/bin/perl -w use strict; use Crypt::Blowfish_PP; my $key="abcdefghijklmnopqrstuvwxyz"; my $data="This is what I want to encrypt"; my $bf = Crypt::Blowfish_PP->new($key); my $encrypted_data = $bf->encrypt($data); my $decrypted_data = $bf->decrypt($encrypted_data);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How to do encryption ?
by THRAK (Monk) on Mar 23, 2001 at 20:29 UTC | |
by TStanley (Canon) on Mar 23, 2001 at 21:26 UTC | |
by THRAK (Monk) on Mar 23, 2001 at 21:54 UTC | |
by THRAK (Monk) on Mar 23, 2001 at 22:47 UTC | |
by THRAK (Monk) on Mar 29, 2001 at 18:10 UTC |