in reply to
Crypto Module
Crypt::CBC
is a convenience wrapper that takes care of the key setup and padding for you. It should be much easier to use than for example the AES module directly.
Perl 6
- links to (nearly) everything that is Perl 6.
Comment on
Re: Crypto Module
Replies are listed 'Best First'.
Re^2: Crypto Module
by
ikegami
(Patriarch)
on Oct 15, 2010 at 07:58 UTC
I agree fully. It handles at least three important jobs:
Padding: Adjusting the length of the message so it can be encrypted, and removing the adjustments when decrypting.
Salting: Using a different key for each message.
Chaining: Using a different key for each block of the message.
[reply]
In Section
Seekers of Perl Wisdom