[PATCH 2/2] tests: add digestmod for Python 3.8

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The digestmod argument also exists in earlier Python versions,
version 3.8 does not set a default argument anymore.

Signed-off-by: Markus Theil <markus.theil@xxxxxxxxxxxxx>
---
 tests/hwsim/test_ieee8021x.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/hwsim/test_ieee8021x.py b/tests/hwsim/test_ieee8021x.py
index b75984798..bc1c3c939 100644
--- a/tests/hwsim/test_ieee8021x.py
+++ b/tests/hwsim/test_ieee8021x.py
@@ -244,7 +244,7 @@ def test_ieee8021x_held(dev, apdev):
 def send_eapol_key(dev, bssid, signkey, frame_start, frame_end):
     zero_sign = "00000000000000000000000000000000"
     frame = frame_start + zero_sign + frame_end
-    hmac_obj = hmac.new(binascii.unhexlify(signkey))
+    hmac_obj = hmac.new(binascii.unhexlify(signkey), digestmod='MD5')
     hmac_obj.update(binascii.unhexlify(frame))
     sign = hmac_obj.digest()
     frame = frame_start + binascii.hexlify(sign).decode() + frame_end
--
2.24.1


_______________________________________________
Hostap mailing list
Hostap@xxxxxxxxxxxxxxxxxxx
http://lists.infradead.org/mailman/listinfo/hostap



[Index of Archives]     [Linux Wireless]     [Linux Kernel]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Device Mapper]

  Powered by Linux