GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
RC6(3) User Contributed Perl Documentation RC6(3)

Crypt::RC6 - Crypt::CBC compliant RC6 block cipher encryption module

    use Crypt::RC6;
    
    my $cipher = new Crypt::RC6 $key;

    my $ciphertext = $cipher->encrypt($plaintext);
    my $plaintext = $cipher->decrypt($ciphertext);

From THE RC6 BLOCK CIPHER, by Rivest, Robshaw, Sidney, and Yin...

"RC6 is an evolutionary improvement of RC5, designed to meet the requirements of the Advanced Encryption Standard (AES). Like RC5, RC6 makes essential use of data-dependent rotations. New features of RC6 include the use of four working registers instead of two, and the inclusion of integer multiplication as an additional primitive operation. The use of multiplication greatly increases the diffusion achieved per round, allowing for greater security, fewer rounds, and increased throughput."

This implementation requires the use of a 16-, 24-, or 32-byte key and 16-byte blocks for encryption/decryption. Twenty rounds are performed.

http://www.rsa.com/rsalabs/rc6/

John Hughes (jhughes@frostburg.edu)

I am indebted to Marc Lehmann, the author of the "Crypt::Twofish2" module, as I used his code as a guide.

2022-04-07 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.