diff options
Diffstat (limited to 'scripts/icehashpassword.py')
-rw-r--r-- | scripts/icehashpassword.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/icehashpassword.py b/scripts/icehashpassword.py index 9b2827ab461..35a09c12b5a 100644 --- a/scripts/icehashpassword.py +++ b/scripts/icehashpassword.py @@ -11,7 +11,7 @@ import sys, getopt, passlib.hash, getpass usePBKDF2 = any(sys.platform == p for p in ["win32", "darwin"]) -useCryptExt = any(sys.platform.startswith(p) for p in ["linux", "freebsd"]) +useCryptExt = any(sys.platform.startswith(p) for p in ["linux", "freebsd", "gnukfreebsd"]) if not usePBKDF2 and not useCryptExt: |