From cc56a4cff665168128b073b7fddbcec07c3bbe91 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 13 Mar 2013 02:46:40 +0000 Subject: [PATCH] crypto.py: Another missing import. Organization: Straylight/Edgeware From: Mark Wooding --- crypto.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto.py b/crypto.py index 749ac2a..8ad2737 100644 --- a/crypto.py +++ b/crypto.py @@ -23,6 +23,8 @@ ### License along with Chopwood; if not, see ### . +from struct import pack, unpack + ###-------------------------------------------------------------------------- ### The core of MD5. -- [mdw]