• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H03-May-2022-4230

CHANGESH A D03-May-2022830 3420

COPYINGH A D03-May-202217.6 KiB341281

Makefile.PLH A D03-May-2022464 1510

RC6.pmH A D03-May-20221.3 KiB586

RC6.xsH A D03-May-20222.4 KiB12189

READMEH A D03-May-20221.2 KiB4025

_rc6.cH A D03-May-20222.9 KiB13694

platform.hH A D03-May-2022945 4322

test.plH A D03-May-20221.4 KiB4230

typemapH A D03-May-202220 21

README

1NAME
2
3    Crypt::RC6 - Crypt::CBC compliant RC6 block cipher encryption module
4
5SYNOPSIS
6
7    use Crypt::RC6;
8
9    my $cipher = new Crypt::RC6 $key;
10
11    my $ciphertext = $cipher->encrypt($plaintext);
12    my $plaintext = $cipher->decrypt($ciphertext);
13
14DESCRIPTION
15
16    From THE RC6 BLOCK CIPHER, by Rivest, Robshaw, Sidney, and Yin...
17
18    "RC6 is an evolutionary improvement of RC5, designed to meet the
19    requirements of the Advanced Encryption Standard (AES). Like RC5,
20    RC6 makes essential use of data-dependent rotations. New features
21    of RC6 include the use of four working registers instead of two,
22    and the inclusion of integer multiplication as an additional primitive
23    operation. The use of multiplication greatly increases the diffusion
24    achieved per round, allowing for greater security, fewer rounds, and
25    increased throughput."
26
27    This implementation requires the use of a 16-, 24-, or 32-byte key
28    and 16-byte blocks for encryption/decryption. Twenty rounds are performed.
29
30SEE ALSO
31
32    http://www.rsa.com/rsalabs/rc6/
33
34AUTHOR
35
36    John Hughes (jhughes@frostburg.edu)
37
38    I am indebted to Marc Lehmann, the author of the Crypt::Twofish2
39    module, as I used his code as a guide.
40