1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
.\" source:
.\" /var/cvs/projects/debian/cracklib/debian/dpkg.src/cracklib2-dev.FascistCheck.3.in,v
.\"
.\" revision:
.\" @(#) cracklib2-dev.FascistCheck.3.in,v 1.6 1999/03/29 15:30:21 jplejacq Exp
.\"
.\" copyright:
.\" Copyright (C) 1998, 1999 Jean Pierre LeJacq <jplejacq@quoininc.com>
.\"
.\" Distributed under the GNU GENERAL PUBLIC LICENSE.
.\"
.TH FascistCheck 3 "@@date@@" "@@ver@@-@@ver_deb@@" "Debian GNU/Linux manual"
.SH NAME
FascistCheck \- a pro-active password checker library
.SH SYNOPSIS
.B #include <crack.h>
.sp
.B "static char const CRACKLIB_DICTPATH[] = \ .\|.\|.;"
.sp
.B "extern char const *"
.br
.B "FascistCheck(char const passwd[], char const dictpath[]);"
.SH DESCRIPTION
cracklib is a library containing the
.B FascistCheck
C function which may be used in a "passwd" like program. The idea is
simple: try to prevent users from choosing passwords that could be
guessed by "crack" by filtering them out, at source. cracklib is an
offshoot of the the version 5 of the "crack" software and contains a
considerable number of ideas nicked from the new software.
The first formal argument
.B password
is the potential password. The second formal argument
.B dictpath
is the full path name + filename prefix of the cracklib
dictionary database.
.B FascistCheck
returns
the NULL pointer for a good password, or a pointer to a diagnostic
string if it is a weak password.
The database is in a binary format generated by the utilities
.BR crack_mkdict (8)
and
.BR crack_packer (8).
On a Debian system the database is located in the directory defined by
the static constant
.B CRACKLIB_DICTPATH
and is set to @@f_pkgruntime_dict_db@@. None of the subroutines in the
cracklib libraries have this location hard-coded into their
implementations. It is generated daily with the program
@@f_pkgruntime_etc_crondaily@@.
.SH FILES
.TP
.I @@f_pkgruntime_dict_db@@.[hwm|pwd|pwi]
cracklib dictionary database files used by utilities.
.TP
.I @@f_pkgruntime_etc_crondaily@@
cracklib daily cron program to rebuild the cracklib dictionary database.
.TP
.I @@f_pkgruntime_etc_conf@@
cracklib configuration file used by the cracklib daily cron program to
rebuild the cracklib dictionary database.
.TP
.I @@d_pkgruntime_bin_s@@/crack_mkdict
cracklib shell script to create initial list of words for dictionary
database.
.TP
.I @@d_pkgdev_doc_examples@@
Example
.BR cc (1)
source files that show how
.B FascistCheck
is used.
.SH SEE ALSO
.BR crack_testlib (8),
.BR crack_testnum (8),
.BR crack_teststr (8),
.br
.BR crack_mkutil (8),
.BR crack_packer (8),
.BR crack_unpacker (8)
.br
@@d_pkgdev_doc_examples@@
.br
http:/doc/@@pkg@@/index.html
.br
http:/doc/@@pkgdev@@/index.html
.SH AUTHOR
.B @@pkg@@
is written by Alec Muffett <alecm@crypto.dircon.co.uk>. Manual added
by Jean Pierre LeJacq <jplejacq@quoininc.com>.
|