Softpedia
 


LINUX CATEGORIES:



GLOBAL PAGES >>
NEWS ARCHIVE >>
SOFTPEDIA REVIEWS >>
MEET THE EDITORS >>
WEEK'S BEST
  • Linux Kernel 3.9.3 / 3....
  • LibreOffice 3.6.6 / 4.0.3
  • MPlayer 1.1.1
  • systemd 204
  • Arch Linux 2013.05.01
  • Blender 2.67a
  • KDE Software Compilatio...
  • CrunchBang Linux Stable...
  • Elementary OS 0.1 / 0.2...
  • SystemRescueCd 3.6.0
  • Home > Linux > Programming > Perl Modules

    Crypt::Skipjack 1.0.2

    Download button

    No screenshots available
    Downloads: 361  View global page NEW!  Tell us about an update
    User Rating:
    Rated by:
    NOT RATED
    0 user(s)
    Developer:

    License / Price:

    Last Updated:

    Category:
    Julius C. Duque | More programs
    Perl Artistic License / FREE
    August 30th, 2008, 13:58 GMT
    ROOT / Programming / Perl Modules

     Read user reviews (0)  Refer to a friend  Subscribe

    Crypt::Skipjack description

    Crypt::CBC-compliant block cipher.

    Crypt::Skipjack is a Perl module with a Crypt::CBC compliant block cipher.

    ABSTRACT

    Skipjack is an 80-bit key, 64-bit block cipher designed by the NSA.

    SYNOPSIS

        use Crypt::Skipjack;

        $cipher = new Crypt::Skipjack $key;
        $ciphertext = $cipher->encrypt($plaintext);
        $plaintext  = $cipher->decrypt($ciphertext);


    Skipjack is the secret key encryption algorithm designed by the National Security Agency, and is used in the Clipper chip and Fortezza PC card. It was implemented in tamper-resistant hardware and its structure had been classified since its introduction in 1993. Skipjack was unclassified on June 24, 1998.

    Skipjack is an 80-bit key, 64-bit block cipher.

    This module supports the Crypt::CBC interface, with the following functions.
    Functions

    blocksize

        Returns the size (in bytes) of the block (8, in this case).
    keysize

        Returns the size (in bytes) of the key (10, in this case).
    encrypt($data)

        Encrypts 8 bytes of $data and returns the corresponding ciphertext.
    decrypt($data)

        Decrypts 8 bytes of $data and returns the corresponding plaintext.

    EXAMPLE 1

        #!/usr/local/bin/perl

        use diagnostics;
        use strict;
        use warnings;
        use Crypt::Skipjack;

        # key must be 10 bytes long
        my $key = "0123456789";

        my $cipher = new Crypt::Skipjack $key;

        print "blocksize = ", $cipher->blocksize, " bytes
    ";
        print "keysize = ", $cipher->keysize, " bytes
    ";

        # block must be 8 bytes long
        my $plaintext1 = "abcdef01";

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

        print "Decryption OK
    " if ($plaintext1 eq $plaintext2);


    EXAMPLE 2

        #!/usr/local/bin/perl

        use diagnostics;
        use strict;
        use warnings;
        use Crypt::CBC;  # CBC automatically loads Skipjack for us

        # when using Crypt::CBC, key may be of ANY length
        my $key = "0123456789abcdef";

        # IV must be exactly 8 bytes long
        my $IV = pack "H16", 0;

        my $cipher = Crypt::CBC->new({'key' => $key,
                                      'cipher' => 'Skipjack',
                                      'iv' => $IV,
                                      'regenerate_key' => 1,
                                      'padding' => 'standard',
                                      'prepend_iv' => 0
                                    });

        # when using Crypt::CBC, plaintext may be of ANY length
        my $plaintext1 = "This is a test";

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

        print "Decryption OK
    " if ($plaintext1 eq $plaintext2);

    Requirements:

    · Perl

      


    TAGS:

    Crypt::CBC cipher | block cipher | Perl module | Crypt::CBC | block | cipher

    Go to top

    WindowsGamesDriversMacLinuxScriptsMobileHandheldNews

    SUBMIT PROGRAM   |   ADVERTISE   |   GET HELP   |   SEND US FEEDBACK   |   RSS FEEDS   |   UPDATE YOUR SOFTWARE   |   ROMANIAN FORUM