Revert "lists: Add list literal doc example."
[factor.git] / basis / checksums / sha / sha-docs.factor
blobee2b1b9a88df06ca592bd549c55517b93a1e6b0d
1 USING: help.markup help.syntax ;
2 IN: checksums.sha
4 HELP: sha-224
5 { $class-description "SHA-224 checksum algorithm." } ;
7 HELP: sha-256
8 { $class-description "SHA-256 checksum algorithm." } ;
10 ARTICLE: "checksums.sha" "SHA-2 checksum"
11 "The SHA family of checksum algorithms are one-way hashes useful for checksumming data. SHA-1 is considered insecure, while SHA-2 is generally considered to be pretty strong." $nl
12 "SHA-2 checksums:"
13 { $subsections
14     sha-224
15     sha-256
17 "SHA-1 checksum:"
18 { $subsections sha1 } ;
20 ABOUT: "checksums.sha"