Blame man-pages-posix-2013-a/man3p/crypt.3p

Packit 7cfc04
'\" et
Packit 7cfc04
.TH CRYPT "3P" 2013 "IEEE/The Open Group" "POSIX Programmer's Manual"
Packit 7cfc04
.SH PROLOG
Packit 7cfc04
This manual page is part of the POSIX Programmer's Manual.
Packit 7cfc04
The Linux implementation of this interface may differ (consult
Packit 7cfc04
the corresponding Linux manual page for details of Linux behavior),
Packit 7cfc04
or the interface may not be implemented on Linux.
Packit 7cfc04
Packit 7cfc04
.SH NAME
Packit 7cfc04
crypt
Packit 7cfc04
\(em string encoding function
Packit 7cfc04
(\fBCRYPT\fP)
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.LP
Packit 7cfc04
.nf
Packit 7cfc04
#include <unistd.h>
Packit 7cfc04
.P
Packit 7cfc04
char *crypt(const char *\fIkey\fP, const char *\fIsalt\fP);
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
function is a string encoding function. The algorithm is
Packit 7cfc04
implementation-defined.
Packit 7cfc04
.P
Packit 7cfc04
The
Packit 7cfc04
.IR key
Packit 7cfc04
argument points to a string to be encoded. The
Packit 7cfc04
.IR salt
Packit 7cfc04
argument shall be a string of at least two bytes in length not
Packit 7cfc04
including the null character chosen from the set:
Packit 7cfc04
.sp
Packit 7cfc04
.RS 4
Packit 7cfc04
.nf
Packit 7cfc04
\fB
Packit 7cfc04
a b c d e f g h i j k l m n o p q r s t u v w x y z
Packit 7cfc04
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Packit 7cfc04
0 1 2 3 4 5 6 7 8 9 . /
Packit 7cfc04
.fi \fR
Packit 7cfc04
.P
Packit 7cfc04
.RE
Packit 7cfc04
.P
Packit 7cfc04
The first two bytes of this string may be used to perturb the
Packit 7cfc04
encoding algorithm.
Packit 7cfc04
.P
Packit 7cfc04
The return value of
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
points to static data that is overwritten by each call.
Packit 7cfc04
.P
Packit 7cfc04
The
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
function need not be thread-safe.
Packit 7cfc04
.SH "RETURN VALUE"
Packit 7cfc04
Upon successful completion,
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
shall return a pointer to the encoded string. The first two bytes
Packit 7cfc04
of the returned value shall be those of the
Packit 7cfc04
.IR salt
Packit 7cfc04
argument. Otherwise, it shall return a null pointer and set
Packit 7cfc04
.IR errno
Packit 7cfc04
to indicate the error.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
The
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
function shall fail if:
Packit 7cfc04
.TP
Packit 7cfc04
.BR ENOSYS
Packit 7cfc04
The functionality is not supported on this implementation.
Packit 7cfc04
.LP
Packit 7cfc04
.IR "The following sections are informative."
Packit 7cfc04
.SH EXAMPLES
Packit 7cfc04
.SS "Encoding Passwords"
Packit 7cfc04
.P
Packit 7cfc04
The following example finds a user database entry matching a particular
Packit 7cfc04
user name and changes the current password to a new password. The
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
function generates an encoded version of each password. The
Packit 7cfc04
first call to
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
produces an encoded version of the old password; that encoded password
Packit 7cfc04
is then compared to the password stored in the user database. The
Packit 7cfc04
second call to
Packit 7cfc04
\fIcrypt\fR()
Packit 7cfc04
encodes the new password before it is stored.
Packit 7cfc04
.P
Packit 7cfc04
The
Packit 7cfc04
\fIputpwent\fR()
Packit 7cfc04
function, used in the following example, is not part of POSIX.1\(hy2008.
Packit 7cfc04
.sp
Packit 7cfc04
.RS 4
Packit 7cfc04
.nf
Packit 7cfc04
\fB
Packit 7cfc04
#include <unistd.h>
Packit 7cfc04
#include <pwd.h>
Packit 7cfc04
#include <string.h>
Packit 7cfc04
#include <stdio.h>
Packit 7cfc04
\&...
Packit 7cfc04
int valid_change;
Packit 7cfc04
int pfd;  /* Integer for file descriptor returned by open(). */
Packit 7cfc04
FILE *fpfd;  /* File pointer for use in putpwent(). */
Packit 7cfc04
struct passwd *p;
Packit 7cfc04
char user[100];
Packit 7cfc04
char oldpasswd[100];
Packit 7cfc04
char newpasswd[100];
Packit 7cfc04
char savepasswd[100];
Packit 7cfc04
\&...
Packit 7cfc04
valid_change = 0;
Packit 7cfc04
while ((p = getpwent()) != NULL) {
Packit 7cfc04
    /* Change entry if found. */
Packit 7cfc04
    if (strcmp(p->pw_name, user) == 0) {
Packit 7cfc04
        if (strcmp(p->pw_passwd, crypt(oldpasswd, p->pw_passwd)) == 0) {
Packit 7cfc04
            strcpy(savepasswd, crypt(newpasswd, user));
Packit 7cfc04
            p->pw_passwd = savepasswd;
Packit 7cfc04
            valid_change = 1;
Packit 7cfc04
        }
Packit 7cfc04
        else {
Packit 7cfc04
            fprintf(stderr, "Old password is not valid\en");
Packit 7cfc04
        }
Packit 7cfc04
    }
Packit 7cfc04
    /* Put passwd entry into ptmp. */
Packit 7cfc04
    putpwent(p, fpfd);
Packit 7cfc04
}
Packit 7cfc04
.fi \fR
Packit 7cfc04
.P
Packit 7cfc04
.RE
Packit 7cfc04
.SH "APPLICATION USAGE"
Packit 7cfc04
The values returned by this function need not be portable among
Packit 7cfc04
XSI-conformant systems.
Packit 7cfc04
.SH RATIONALE
Packit 7cfc04
None.
Packit 7cfc04
.SH "FUTURE DIRECTIONS"
Packit 7cfc04
None.
Packit 7cfc04
.SH "SEE ALSO"
Packit 7cfc04
.IR "\fIencrypt\fR\^(\|)",
Packit 7cfc04
.IR "\fIsetkey\fR\^(\|)"
Packit 7cfc04
.P
Packit 7cfc04
The Base Definitions volume of POSIX.1\(hy2008,
Packit 7cfc04
.IR "\fB<unistd.h>\fP"
Packit 7cfc04
.SH COPYRIGHT
Packit 7cfc04
Portions of this text are reprinted and reproduced in electronic form
Packit 7cfc04
from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
Packit 7cfc04
-- Portable Operating System Interface (POSIX), The Open Group Base
Packit 7cfc04
Specifications Issue 7, Copyright (C) 2013 by the Institute of
Packit 7cfc04
Electrical and Electronics Engineers, Inc and The Open Group.
Packit 7cfc04
(This is POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
Packit 7cfc04
event of any discrepancy between this version and the original IEEE and
Packit 7cfc04
The Open Group Standard, the original IEEE and The Open Group Standard
Packit 7cfc04
is the referee document. The original Standard can be obtained online at
Packit 7cfc04
http://www.unix.org/online.html .
Packit 7cfc04
Packit 7cfc04
Any typographical or formatting errors that appear
Packit 7cfc04
in this page are most likely
Packit 7cfc04
to have been introduced during the conversion of the source files to
Packit 7cfc04
man page format. To report such errors, see
Packit 7cfc04
https://www.kernel.org/doc/man-pages/reporting_bugs.html .