diff options
author | Björn Esser <besser82@fedoraproject.org> | 2017-10-21 22:27:51 +0200 |
---|---|---|
committer | Björn Esser <besser82@fedoraproject.org> | 2017-10-21 23:38:33 +0200 |
commit | 6b317d8cd8208a85d6370889f22d989a7eadee1c (patch) | |
tree | 0be7ff86ab163fa815a090ff1defcc19c667e8c7 /LICENSING | |
parent | 650326b42acf5531431cef0e3ac277b9a73a0c8f (diff) | |
download | libxcrypt-6b317d8cd8208a85d6370889f22d989a7eadee1c.tar.gz libxcrypt-6b317d8cd8208a85d6370889f22d989a7eadee1c.tar.bz2 libxcrypt-6b317d8cd8208a85d6370889f22d989a7eadee1c.zip |
Add support for NTHASH ($3$) from FreeBSD
FreeBSD implemented support for the NT LAN Manager hash algorithm to provide
easier compatibility with NT accounts. The NT-Hash algorithm is known to be
weak, as it uses the deprecated md4 hash algorithm without any salting.
FreeBSD used the $3$ prefix for this. Its use is not recommended, as it is
easily broken.
Diffstat (limited to 'LICENSING')
-rw-r--r-- | LICENSING | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -23,6 +23,9 @@ source tree. For specific licensing terms consult the files themselves. * Public domain, written by Solar Designer et al.: alg-md4.h, alg-md4.c, crypt-bcrypt.c, crypt-gensalt.c, test-crypt-bcrypt.c + * Copyright Michael Bretterklieber et al.; 2-clause BSD: + crypt-nthash.c + * Public domain, written by Zack Weinberg et al.: byteorder.h, randombytes.c, test-byteorder.c gen-crypt-h.awk, gen-map.awk, gen-vers.awk @@ -42,7 +45,8 @@ source tree. For specific licensing terms consult the files themselves. test-alg-des.c, test-alg-md4.c (adaption of test-alg-md5.c), test-alg-md5.c, test-alg-sha256.c, test-alg-sha512.c, test-crypt-des.c, test-crypt-md5.c, test-crypt-sha256.c, test-crypt-sha512.c, - test-des-cases.h, test-des-obsolete.c, test-gensalt.c + test-des-cases.h, test-des-obsolete.c, test-gensalt.c, + test-crypt-nthash.c (adaption of test-crypt-des.c) * The NEWS file formerly contained the following copyright assertions: |