From: Mark Wooding Date: Fri, 9 Nov 2018 15:34:46 +0000 (+0000) Subject: algorithms.py: Support the new blockcipher-based MAC modes. X-Git-Tag: 1.3.0~3^2~1 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/c00df2de0692981b25f2194e5ad58539407d6ac1 algorithms.py: Support the new blockcipher-based MAC modes. --- diff --git a/algorithms.py b/algorithms.py index 0fa434a..7f31e60 100644 --- a/algorithms.py +++ b/algorithms.py @@ -25,6 +25,7 @@ serpent noekeon '''.split() pmodes = ''' ecb cbc cfb ofb counter +cmac pmac1 '''.split() streamciphers = ''' rc4 seal diff --git a/setup.py b/setup.py index cedacdd..b5e3fcd 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import distutils.core as DC import mdwsetup as MS -MS.pkg_config('catacomb', '2.3.0.1+4') +MS.pkg_config('catacomb', '2.4.2+23') MS.pkg_config('mLib', '2.0.4') cat = DC.Extension('catacomb._base',