Subject: | CCM does not work with ciphers other than rijndael |
specifying an alternate cipher with the '-cipher' option is broken,
the issue is with this line in sub new
$args{'-cipher'} |= 'Crypt::Rijndael';
this should be:
$args{'-cipher'} ||= 'Crypt::Rijndael';
willem