use strict;
use Test::More tests => 2;
BEGIN {
use_ok('Crypt::Anubis')
};
# Set 3, vector# 2:
BEGIN {
my $key = pack "H32", "02020202020202020202020202020202";
my $cipher = new Crypt::Anubis $key;
my $plaintext = pack "H32", "02020202020202020202020202020202";
my $ciphertext = $cipher->encrypt($plaintext);
my $answer = unpack "H*", $ciphertext;
is("3fd4a2b593cd9214bb26196db4678587", $answer);
};