NAME

Crypt::Bear::AES_CBC::Dec - AES-CBC decoder class in BearSSL

VERSION

version 0.002

SYNOPSIS

my $decoder = Crypt::Bear::AES_CBC::Dec->new($key);
my $plaintext = $d->run($iv, $cipher);

DESCRIPTION

This class represents an AES-CBC decoder. It's a subclass of Crypt::Bear::CBC::Dec and inherits its run and blocksize methods.

METHODS

new($key)

This initializes a new AES_CBC decoder with $key. $key much be appropriately sized for AES (16, 24, or 32 bytes).

AUTHOR

Leon Timmermans <fawaka@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2024 by Leon Timmermans.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.