V4/man/man3/crypt.3

Compare this file to the similar file:
Show the results in this format:

.th CRYPT III 4/30/73
.sh NAME
crypt \*- password encoding
.sh SYNOPSIS
.ft B
mov	$key,r0
.br
jsr	pc,crypt
.s3
char *crypt(key)
.br
char *key;
.ft R
.sh DESCRIPTION
On entry, r0 should point to a string of
characters terminated by an ASCII NULL.  The routine
performs an operation on the key which is difficult to invert
(i.e. encrypts it) and leaves the resulting eight bytes
of ASCII alphanumerics in a global cell called ``word''.
.s3
From C, the
.it key
argument is a string
and the value returned is a pointer to the eight-character
encrypted password.
.s3
Login uses this result as a password.
.sh "SEE ALSO"
passwd(I), passwd(V), login(I)
.sh BUGS