# HG changeset patch # User Jesse Hallett # Date 1425602023 28800 # Node ID e69e2966ae0d7dda3b78f649f265df32a08a03f3 # Parent b195a14058bb85325a448e2fa4a2d53fb78650a6 Replaces generated README diff -r b195a14058bb -r e69e2966ae0d README.markdown --- a/README.markdown Thu Mar 05 16:25:10 2015 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -rust-pam -======== - -Rust interface to the pluggable authentication module framework (PAM). - -The goal of this library is to provide a type-safe API that can be used to -interact with PAM. The library is incomplete - currently it supports a subset -of functions for use in a pam authentication module. A pam module is a shared -library that is invoked to authenticate a user, or to perform other functions. - -For more information, see the package documentation. To build the -documentation: - - $ cargo doc - -Then open - - target/doc/pam/index.html diff -r b195a14058bb -r e69e2966ae0d README.md --- a/README.md Thu Mar 05 16:25:10 2015 -0800 +++ b/README.md Thu Mar 05 16:33:43 2015 -0800 @@ -1,2 +1,18 @@ -# rust-pam -A PAM binding in the Rust programming language. +rust-pam +======== + +Rust interface to the pluggable authentication module framework (PAM). + +The goal of this library is to provide a type-safe API that can be used to +interact with PAM. The library is incomplete - currently it supports a subset +of functions for use in a pam authentication module. A pam module is a shared +library that is invoked to authenticate a user, or to perform other functions. + +For more information, see the package documentation. To build the +documentation: + + $ cargo doc + +Then open + + target/doc/pam/index.html diff -r b195a14058bb -r e69e2966ae0d src/lib.rs --- a/src/lib.rs Thu Mar 05 16:25:10 2015 -0800 +++ b/src/lib.rs Thu Mar 05 16:33:43 2015 -0800 @@ -19,9 +19,9 @@ //! `pam_sm_authenticate()`, which will use functions in this library to //! interrogate the program that requested authentication for more information, //! and to render a result. For a working example that uses this library, see -//! [tozny-pam][]. +//! [toznyauth-pam][]. //! -//! [tozny-pam]: https://github.com/tozny/tozny-pam +//! [toznyauth-pam]: https://github.com/tozny/toznyauth-pam //! //! Note that constants that are normally read from pam header files are //! hard-coded in the `constants` module. The values there are taken from