Mercurial > crates > nonstick
annotate README.md @ 17:53efbcff805d
Add pam-sober
author | Anthony Nowell <anthony@algorithmia.com> |
---|---|
date | Sun, 24 Sep 2017 00:57:13 -0600 |
parents | f64ee7b6cdf1 |
children |
rev | line source |
---|---|
16
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
1 pam-rs |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
2 ======== |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
3 |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
4 Rust interface to the pluggable authentication module framework (PAM). |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
5 |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
6 The goal of this library is to provide a type-safe API that can be used to |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
7 interact with PAM. The library is incomplete - currently it supports a subset |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
8 of functions for use in a pam authentication module. A pam module is a shared |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
9 library that is invoked to authenticate a user, or to perform other functions. |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
10 |
17 | 11 ## 🌐 [pam-http](pam-http) |
12 | |
13 An example of using pam-rs by performing HTTP basic access auth to authenticate users. | |
14 | |
15 ## 🍻 [pam-sober](pam-sober) | |
16 | |
17 If you aren't sober enough for basic math, you can't login! | |
16
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
18 |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
19 ### Credits |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
20 |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
21 The contents of this repo are heavily borrowed from: |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
22 |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
23 - [tozny/rust-pam](https://github.com/tozny/rust-pam) |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
24 - [ndenev/pam_groupmap](https://github.com/ndenev/pam_groupmap) |
f64ee7b6cdf1
Update metadata and README
Anthony Nowell <anthony@algorithmia.com>
parents:
diff
changeset
|
25 - [beatgammit/pam-http](https://github.com/beatgammit/pam-http) |