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
|
'\"
'\" Generated from file 'md5crypt.man' by tcllib/doctools with format 'nroff'
'\" Copyright (c) 1996-2003, Andreas Kupries <andreas_kupries@users.sourceforge.net>
'\"
.so man.macros
.TH "md5crypt" n 2.1.3 "Trf transformer commands"
.BS
.SH NAME
md5crypt \- Password hashing based on "md5"
.SH SYNOPSIS
package require \fBTcl ?8.2?\fR
.sp
package require \fBTrf ?2.1.3?\fR
.sp
\fBmd5crypt\fR \fIpassword\fR \fIsalt\fR
.sp
.BE
.SH DESCRIPTION
The command \fBmd5crypt\fR is for the encryption of passwords and uses
\fImd5\fR as hash algorithm. An alternative command for the same
function, but based on the older \fBcrypt(3)\fR hash function is
\fBcrypt\fR.
.PP
.TP
\fBmd5crypt\fR \fIpassword\fR \fIsalt\fR
Encrypts the \fIpassword\fR using the specified \fIsalt\fR and returns
the generated hash value as the result of the command.
.PP
.SH "SEE ALSO"
crypt, trf-intro
.SH KEYWORDS
authentication, crypt, hash, hashing, mac, md5, message digest, password
.SH COPYRIGHT
.nf
Copyright (c) 1996-2003, Andreas Kupries <andreas_kupries@users.sourceforge.net>
.fi
|