use strict;
use Test::More tests => 2;
BEGIN {
use_ok('Crypt::Anubis')
};
# Set 1, vector# 5:
BEGIN {
my $key = pack "H32", "04000000000000000000000000000000";
my $cipher = new Crypt::Anubis $key;
my $ciphertext = pack "H32", "7aa0b4e4873fa354a898230cd6b8f81e";
my $plaintext = $cipher->decrypt($ciphertext);
my $answer = unpack "H*", $plaintext;
is("00000000000000000000000000000000", $answer);
};