* updated docs to reflect whirlpool
--HG-- extra : convert_revision : svn%3Aeebe1cee-a9af-4fe4-bd26-ad572b19c5ab/trunk%4058
This commit is contained in:
parent
690be9684e
commit
1734b3afdc
3 changed files with 33 additions and 17 deletions
|
@ -2,7 +2,7 @@ Version 1.0
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
2006-09-22:
|
2006-09-22:
|
||||||
* added new auth method: wpool, hash-based authentification
|
* added new auth method: wpool, hash-based authentification
|
||||||
using the whirlpool hash algorithm
|
using the whirlpool hash algorithm, updated docs
|
||||||
* minor tweaks to buildsystem and standalones
|
* minor tweaks to buildsystem and standalones
|
||||||
* cosmetic issues on some files (fprintf, etc)
|
* cosmetic issues on some files (fprintf, etc)
|
||||||
|
|
||||||
|
|
24
README.txt
24
README.txt
|
@ -1,7 +1,7 @@
|
||||||
ALOCK(1)
|
ALOCK(1)
|
||||||
========
|
========
|
||||||
Mathias Gumz <akira@fluxbox.org>
|
Mathias Gumz <akira@fluxbox.org>
|
||||||
v1.0, 19 September 2006
|
v1.0, 22 September 2006
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
|
@ -35,23 +35,24 @@ OPTIONS
|
||||||
On systems using 'shadow' alock needs the suid-flag set.
|
On systems using 'shadow' alock needs the suid-flag set.
|
||||||
- pam - Tries to authentificate against the users system-password
|
- pam - Tries to authentificate against the users system-password
|
||||||
using the 'pam-login'-module.
|
using the 'pam-login'-module.
|
||||||
- md5 - alock creates a md5-hash from the entered unlockpassword and compares it with the hash provided
|
- md5 - alock creates a md5-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use content of <filename> as reference
|
* file=<filename> - use content of <filename> as reference
|
||||||
|
- sha1 - alock creates a sha1-hash from the entered passphrase and compares it with the hash provided
|
||||||
- sha1 - alock creates a sha1-hash from the entered unlockpassword and compares it with the hash provided
|
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
- sha256 - alock creates a sha256-hash from the entered unlockpassword and compares it with the hash provided
|
- sha256 - alock creates a sha256-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
- sha384 - alock creates a sha384-hash from the entered unlockpassword and compares it with the hash provided
|
- sha384 - alock creates a sha384-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
- sha512 - alock creates a sha512-hash from the entered unlockpassword and compares it with the hash provided
|
- sha512 - alock creates a sha512-hash from the entered passphrase and compares it with the hash provided
|
||||||
|
* hash=<hash> - use <hash> as reference
|
||||||
|
* file=<filename> - use <filename> as reference
|
||||||
|
- wpool - alock creates a whirlpool-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-bg type:options ::
|
-bg type:options ::
|
||||||
|
@ -97,9 +98,16 @@ Written by Mathias Gumz <akira at fluxbox dot org>
|
||||||
RESOURCES
|
RESOURCES
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
'alock' - Webpages ::
|
||||||
- link:http://darkshed.net[Home]
|
- link:http://darkshed.net[Home]
|
||||||
- link:http://code.google.com/p/alock/issues/list[Issue Tracker]
|
- link:http://code.google.com/p/alock/issues/list[Issue Tracker]
|
||||||
|
|
||||||
|
Algorithms ::
|
||||||
|
- link:http://en.wikipedia.org/wiki/WHIRLPOOL[whirlpool hash]
|
||||||
|
- link:http://en.wikipedia.org/wiki/SHA_hash_functions[sha based hashfunctions]
|
||||||
|
- link:http://en.wikipedia.org/wiki/Md5[md5]
|
||||||
|
|
||||||
|
|
||||||
Other Lockers ::
|
Other Lockers ::
|
||||||
- link:http://www.tux.org/~bagleyd/xlockmore.html[xlockmore]
|
- link:http://www.tux.org/~bagleyd/xlockmore.html[xlockmore]
|
||||||
- link:http://www.jwz.org/xscreensaver/[xscreensaver]
|
- link:http://www.jwz.org/xscreensaver/[xscreensaver]
|
||||||
|
|
24
alock.txt
24
alock.txt
|
@ -1,7 +1,7 @@
|
||||||
ALOCK(1)
|
ALOCK(1)
|
||||||
========
|
========
|
||||||
Mathias Gumz <akira@fluxbox.org>
|
Mathias Gumz <akira@fluxbox.org>
|
||||||
v1.0, 19 September 2006
|
v1.0, 22 September 2006
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
|
@ -35,23 +35,24 @@ OPTIONS
|
||||||
On systems using 'shadow' alock needs the suid-flag set.
|
On systems using 'shadow' alock needs the suid-flag set.
|
||||||
- pam - Tries to authentificate against the users system-password
|
- pam - Tries to authentificate against the users system-password
|
||||||
using the 'pam-login'-module.
|
using the 'pam-login'-module.
|
||||||
- md5 - alock creates a md5-hash from the entered unlockpassword and compares it with the hash provided
|
- md5 - alock creates a md5-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use content of <filename> as reference
|
* file=<filename> - use content of <filename> as reference
|
||||||
|
- sha1 - alock creates a sha1-hash from the entered passphrase and compares it with the hash provided
|
||||||
- sha1 - alock creates a sha1-hash from the entered unlockpassword and compares it with the hash provided
|
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
- sha256 - alock creates a sha256-hash from the entered unlockpassword and compares it with the hash provided
|
- sha256 - alock creates a sha256-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
- sha384 - alock creates a sha384-hash from the entered unlockpassword and compares it with the hash provided
|
- sha384 - alock creates a sha384-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
- sha512 - alock creates a sha512-hash from the entered unlockpassword and compares it with the hash provided
|
- sha512 - alock creates a sha512-hash from the entered passphrase and compares it with the hash provided
|
||||||
|
* hash=<hash> - use <hash> as reference
|
||||||
|
* file=<filename> - use <filename> as reference
|
||||||
|
- wpool - alock creates a whirlpool-hash from the entered passphrase and compares it with the hash provided
|
||||||
* hash=<hash> - use <hash> as reference
|
* hash=<hash> - use <hash> as reference
|
||||||
* file=<filename> - use <filename> as reference
|
* file=<filename> - use <filename> as reference
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-bg type:options ::
|
-bg type:options ::
|
||||||
|
@ -97,9 +98,16 @@ Written by Mathias Gumz <akira at fluxbox dot org>
|
||||||
RESOURCES
|
RESOURCES
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
'alock' - Webpages ::
|
||||||
- link:http://darkshed.net[Home]
|
- link:http://darkshed.net[Home]
|
||||||
- link:http://code.google.com/p/alock/issues/list[Issue Tracker]
|
- link:http://code.google.com/p/alock/issues/list[Issue Tracker]
|
||||||
|
|
||||||
|
Algorithms ::
|
||||||
|
- link:http://en.wikipedia.org/wiki/WHIRLPOOL[whirlpool hash]
|
||||||
|
- link:http://en.wikipedia.org/wiki/SHA_hash_functions[sha based hashfunctions]
|
||||||
|
- link:http://en.wikipedia.org/wiki/Md5[md5]
|
||||||
|
|
||||||
|
|
||||||
Other Lockers ::
|
Other Lockers ::
|
||||||
- link:http://www.tux.org/~bagleyd/xlockmore.html[xlockmore]
|
- link:http://www.tux.org/~bagleyd/xlockmore.html[xlockmore]
|
||||||
- link:http://www.jwz.org/xscreensaver/[xscreensaver]
|
- link:http://www.jwz.org/xscreensaver/[xscreensaver]
|
||||||
|
|
Reference in a new issue