libs-ec/Operators.plist
Richard Frith-Macdonald 5b1d1b89c5 document password hashing
2022-11-04 12:25:09 +00:00

32 lines
1.1 KiB
Text

{
/* This file configures the names/passwords of the people allowed to use
* the Console program to control the system.
* On systems where security is not an issue, the Password my be an empty
* string (allows any login attempt) or may be identical to the username
* (the user must enter their username as their password).
* The format for a hashed password is that created by the mkpasswd
* program and the crypt() function. The SHA512 hash (starts '$6$')
* is preferred.
* Just add a definition for yourself as below:
*/
richard = {
Password = hashedPasswordOrUsernameOrEmptyString;
};
/* If the entry with no name exists, it will be used to allow login for
* any username which doesn't exist in this file.
* The format for a hashed password is that created by the mkpasswd
* program and the crypt() function. The SHA512 hash (starts '$6$')
* is preferred.
*/
"" = {
Password = hashedPasswordOrEmptyString;
};
/* If Password is omitted or is empty, then any password is accepted
* to allow the user to log in.
*/
guest = {
Password = "";
};
}