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