]> gitweb.factorcode.org Git - factor.git/blob - basis/furnace/auth/providers/assoc/assoc-docs.factor
Solution to Project Euler problem 65
[factor.git] / basis / furnace / auth / providers / assoc / assoc-docs.factor
1 USING: help.markup help.syntax io.streams.string ;
2 IN: furnace.auth.providers.assoc
3
4 HELP: <users-in-memory>
5 { $values { "provider" users-in-memory } }
6 { $description "Creates a new authentication provider which stores the usernames and passwords in an associative mapping." } ;
7
8 ARTICLE: "furnace.auth.providers.assoc" "In-memory authentication provider"
9 "The " { $vocab-link "furnace.auth.providers.assoc" } " vocabulary implements an authentication provider which looks up usernames and passwords in an associative mapping."
10 { $subsection users-in-memory }
11 { $subsection <users-in-memory> }
12 "The " { $slot "assoc" } " slot of the " { $link users-in-memory } " tuple maps usernames to checksums of passwords." ;
13
14 ABOUT: "furnace.auth.providers.assoc"