1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# Copyright (c) 2015-2021 by Ron Frederick <ronf@timeheart.net> and others.
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License v2.0 which accompanies this
# distribution and is available at:
#
# http://www.eclipse.org/legal/epl-2.0/
#
# This program may also be made available under the following secondary
# licenses when the conditions for such availability set forth in the
# Eclipse Public License v2.0 are satisfied:
#
# GNU General Public License, Version 2.0, or any later versions of
# that license
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
"""Unit tests for message authentication"""
import os
import unittest
from asyncssh.mac import get_mac_algs, get_mac_params, get_mac
class _TestMAC(unittest.TestCase):
"""Unit tests for mac module"""
def test_mac_algs(self):
"""Unit test MAC algorithms"""
for mac_alg in get_mac_algs():
with self.subTest(mac_alg=mac_alg):
mac_keysize, _, _ = get_mac_params(mac_alg)
mac_key = os.urandom(mac_keysize)
packet = os.urandom(256)
enc_mac = get_mac(mac_alg, mac_key)
dec_mac = get_mac(mac_alg, mac_key)
badpacket = bytearray(packet)
badpacket[-1] ^= 0xff
mac = enc_mac.sign(0, packet)
badmac = bytearray(mac)
badmac[-1] ^= 0xff
self.assertTrue(dec_mac.verify(0, packet, mac))
self.assertFalse(dec_mac.verify(0, bytes(badpacket), mac))
self.assertFalse(dec_mac.verify(0, packet, bytes(badmac)))
def test_umac_wrapper(self):
"""Unit test some unused parts of the UMAC wrapper code"""
try:
# pylint: disable=import-outside-toplevel
from asyncssh.crypto import umac32
except ImportError: # pragma: no cover
self.skipTest('umac not available')
mac_key = os.urandom(16)
mac1 = umac32(mac_key)
mac1.update(b'test')
mac2 = mac1.copy()
mac1.update(b'123')
mac2.update(b'123')
self.assertEqual(mac1.hexdigest(), mac2.hexdigest())
|