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