blob: 59f62904714015ea77824d9cab8650d34efe1677 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
-----------------
** CREDITS.txt **
-----------------
All those who contributed somehow to the development, directly
or indirectly, will be credited here.
* Allan Saddi <allan@saddi.com>
- implemented the basic SHA512 algorithm and released it under
a BSD licence.
* Tamas TEVESZ <ice@extreme.hu>
- Gave a lot of good feedback regarding the SHA512 password
hashing algorithm and gave inspiration to implement a much
better algorithm and also what became the the password hash
cache.
* Ulrich Drepper <drepper@redhat.com>
- Released a document into the Public Domain with code
examples for a proper SHA512 password hashing algorithm,
which inspired me to adopt most of this implementation into
which became the current SHA512 password hashing algorithm.
Most of the core password algorithm is based on this document,
but combined with the already basic implementation of SHA512
hashing. See common/passwd.c for more details.
* Larry Highsmith
- Noticed a possible integer overflow issue in eDBopen_session_seed()
which led to the fix in commit 80b41e27b7361633bee17c64bbb95490dc94ab9f
|