mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Patch #579435: Shadow Password Support Module
This commit is contained in:
parent
4d394dfebb
commit
c300175547
11 changed files with 466 additions and 429 deletions
|
@ -193,6 +193,7 @@ and how to embed it in other applications.
|
|||
\input{libunix} % UNIX Specific Services
|
||||
\input{libposix}
|
||||
\input{libpwd}
|
||||
\input{libspwd}
|
||||
\input{libgrp}
|
||||
\input{libcrypt}
|
||||
\input{libdl}
|
||||
|
|
|
@ -50,4 +50,5 @@ Return a list of all available password database entries, in arbitrary order.
|
|||
|
||||
\begin{seealso}
|
||||
\seemodule{grp}{An interface to the group database, similar to this.}
|
||||
\seemodule{spwd}{An interface to the shadow password database, similar to this.}
|
||||
\end{seealso}
|
||||
|
|
46
Doc/lib/libspwd.tex
Normal file
46
Doc/lib/libspwd.tex
Normal file
|
@ -0,0 +1,46 @@
|
|||
\section{\module{spwd} ---
|
||||
The shadow password database}
|
||||
|
||||
\declaremodule{builtin}{spwd}
|
||||
\platform{Unix}
|
||||
\modulesynopsis{The shadow password database (\function{getspnam()} and friends).}
|
||||
|
||||
This module provides access to the \UNIX{} shadow password database.
|
||||
It is available on various Unix versions.
|
||||
|
||||
You must have enough privileges to access the shadow password database
|
||||
(this usually means you have to be root).
|
||||
|
||||
Shadow password database entries are reported as a tuple-like object, whose
|
||||
attributes correspond to the members of the \code{spwd} structure
|
||||
(Attribute field below, see \code{<shadow.h>}):
|
||||
|
||||
\begin{tableiii}{r|l|l}{textrm}{Index}{Attribute}{Meaning}
|
||||
\lineiii{0}{\code{sp_nam}}{Login name}
|
||||
\lineiii{1}{\code{sp_pwd}}{Encrypted password}
|
||||
\lineiii{2}{\code{sp_lstchg}}{Date of last change}
|
||||
\lineiii{3}{\code{sp_min}}{Minimal number of days between changes}
|
||||
\lineiii{4}{\code{sp_max}}{Maximum number of days between changes}
|
||||
\lineiii{5}{\code{sp_warn}}{Number of days before password expires to warn user about it}
|
||||
\lineiii{6}{\code{sp_inact}}{Number of days after password expires until account is blocked}
|
||||
\lineiii{7}{\code{sp_expire}}{Number of days since 1970-01-01 until account is disabled}
|
||||
\lineiii{8}{\code{sp_flag}}{Reserved}
|
||||
\end{tableiii}
|
||||
|
||||
The sp_nam and sp_pwd items are strings, all others are integers.
|
||||
\exception{KeyError} is raised if the entry asked for cannot be found.
|
||||
|
||||
It defines the following items:
|
||||
|
||||
\begin{funcdesc}{getspnam}{name}
|
||||
Return the shadow password database entry for the given user name.
|
||||
\end{funcdesc}
|
||||
|
||||
\begin{funcdesc}{getspall}{}
|
||||
Return a list of all available shadow password database entries, in arbitrary order.
|
||||
\end{funcdesc}
|
||||
|
||||
|
||||
\begin{seealso}
|
||||
\seemodule{pwd}{An interface to the normal password database, similar to this.}
|
||||
\end{seealso}
|
Loading…
Add table
Add a link
Reference in a new issue