The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use diagnostics;
use strict;
use warnings;
use Test::More tests => 2;
BEGIN {
    use_ok('Crypt::Square')
};

BEGIN {
    my $key;
    my $cipher;
    my $plaintext;
    my $ciphertext;
    my $answer;

    $key = pack "H32", "80000000000000000000000000000000";
    $cipher = new Crypt::Square $key;
    $ciphertext = pack "H32", "05f8aafdefb4f5f9c751e5b36c8a37d8";
    $plaintext = $cipher->decrypt($ciphertext);
    $answer = unpack "H*", $plaintext;
    is("00000000000000000000000000000000", $answer);
}