Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e2f194b5
Commit
e2f194b5
authored
Feb 17, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use \manpage{} markup for referencing a UNIX man page.
Added index entry for DES cipher.
parent
8ecc705b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
Doc/lib/libcrypt.tex
Doc/lib/libcrypt.tex
+5
-5
Doc/libcrypt.tex
Doc/libcrypt.tex
+5
-5
No files found.
Doc/lib/libcrypt.tex
View file @
e2f194b5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
\label
{
module-crypt
}
\label
{
module-crypt
}
\bimodindex
{
crypt
}
\bimodindex
{
crypt
}
This module implements an interface to the
crypt(
\strong
{
3
}
)
routine,
This module implements an interface to the
\manpage
{
crypt
}{
3
}
routine,
which is a one-way hash function based upon a modified DES algorithm;
which is a one-way hash function based upon a modified DES algorithm;
see the
\UNIX
{}
man page for further details. Possible uses include
see the
\UNIX
{}
man page for further details. Possible uses include
allowing Python scripts to accept typed passwords from the user, or
allowing Python scripts to accept typed passwords from the user, or
...
@@ -13,10 +13,10 @@ attempting to crack \UNIX{} passwords with a dictionary.
...
@@ -13,10 +13,10 @@ attempting to crack \UNIX{} passwords with a dictionary.
\begin{funcdesc}
{
crypt
}{
word
\,
salt
}
\begin{funcdesc}
{
crypt
}{
word
\,
salt
}
\var
{
word
}
will usually be a user's password.
\var
{
salt
}
is a
\var
{
word
}
will usually be a user's password.
\var
{
salt
}
is a
2-character string which will be used to select one of 4096 variations
2-character string which will be used to select one of 4096 variations
of DES
. The characters in
\var
{
salt
}
must be either
\code
{
.
}
,
of DES
\indexii
{
cipher
}{
DES
}
. The characters in
\var
{
salt
}
must be
\code
{
/
}
, or an alphanumeric character. Returns the hashed password
either
\code
{
.
}
,
\code
{
/
}
, or an alphanumeric character. Returns the
as a string, which will be composed of characters from the same
hashed password as a string, which will be composed of characters from
alphabet as the salt.
the same
alphabet as the salt.
\end{funcdesc}
\end{funcdesc}
The module and documentation were written by Steve Majewski.
The module and documentation were written by Steve Majewski.
...
...
Doc/libcrypt.tex
View file @
e2f194b5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
\label
{
module-crypt
}
\label
{
module-crypt
}
\bimodindex
{
crypt
}
\bimodindex
{
crypt
}
This module implements an interface to the
crypt(
\strong
{
3
}
)
routine,
This module implements an interface to the
\manpage
{
crypt
}{
3
}
routine,
which is a one-way hash function based upon a modified DES algorithm;
which is a one-way hash function based upon a modified DES algorithm;
see the
\UNIX
{}
man page for further details. Possible uses include
see the
\UNIX
{}
man page for further details. Possible uses include
allowing Python scripts to accept typed passwords from the user, or
allowing Python scripts to accept typed passwords from the user, or
...
@@ -13,10 +13,10 @@ attempting to crack \UNIX{} passwords with a dictionary.
...
@@ -13,10 +13,10 @@ attempting to crack \UNIX{} passwords with a dictionary.
\begin{funcdesc}
{
crypt
}{
word
\,
salt
}
\begin{funcdesc}
{
crypt
}{
word
\,
salt
}
\var
{
word
}
will usually be a user's password.
\var
{
salt
}
is a
\var
{
word
}
will usually be a user's password.
\var
{
salt
}
is a
2-character string which will be used to select one of 4096 variations
2-character string which will be used to select one of 4096 variations
of DES
. The characters in
\var
{
salt
}
must be either
\code
{
.
}
,
of DES
\indexii
{
cipher
}{
DES
}
. The characters in
\var
{
salt
}
must be
\code
{
/
}
, or an alphanumeric character. Returns the hashed password
either
\code
{
.
}
,
\code
{
/
}
, or an alphanumeric character. Returns the
as a string, which will be composed of characters from the same
hashed password as a string, which will be composed of characters from
alphabet as the salt.
the same
alphabet as the salt.
\end{funcdesc}
\end{funcdesc}
The module and documentation were written by Steve Majewski.
The module and documentation were written by Steve Majewski.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment