Also the hmac stuff
[mirror/userdir-ldap.git] / userdir_ldap.py
index 6cfe65a..1bc9dbb 100644 (file)
@@ -19,6 +19,8 @@
 # Some routines and configuration that are used by the ldap progams
 import termios, re, imp, ldap, sys, crypt, rfc822, pwd, os;
 import userdir_gpg
+import hmac
+import sha as sha1_module
 
 try:
    File = open("/etc/userdir-ldap/userdir-ldap.conf");
@@ -42,7 +44,7 @@ Ech_ErrorLog = ConfModule.ech_errorlog;
 Ech_MainLog = ConfModule.ech_mainlog;
 
 File = open(PassDir+"/key-hmac-"+pwd.getpwuid(os.getuid())[0],"r");
-HmacKey = F.readline().strip()
+HmacKey = File.readline().strip()
 File.close();
 
 # For backwards compatibility, we default to the old behaviour