mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-26 07:59:52 +03:00
docs: Fix a few typos
There are small typos in: - thirdparty/fcrypt/fcrypt.py - thirdparty/pydes/pyDes.py Fixes: - Should read `decryption` rather than `decrytpion`. - Should read `adhered` rather than `aheared`. Signed-off-by: Tim Gates <tim.gates@iress.com>
This commit is contained in:
parent
c722f8e3bd
commit
96e1c731bc
2
thirdparty/fcrypt/fcrypt.py
vendored
2
thirdparty/fcrypt/fcrypt.py
vendored
|
@ -68,7 +68,7 @@ __all__ = ['crypt']
|
||||||
# ----- BEGIN fcrypt.c LICENSE -----
|
# ----- BEGIN fcrypt.c LICENSE -----
|
||||||
#
|
#
|
||||||
# This library is free for commercial and non-commercial use as long as
|
# This library is free for commercial and non-commercial use as long as
|
||||||
# the following conditions are aheared to. The following conditions
|
# the following conditions are adhered to. The following conditions
|
||||||
# apply to all code found in this distribution, be it the RC4, RSA,
|
# apply to all code found in this distribution, be it the RC4, RSA,
|
||||||
# lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
# lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||||
# included with this distribution is covered by the same copyright terms
|
# included with this distribution is covered by the same copyright terms
|
||||||
|
|
4
thirdparty/pydes/pyDes.py
vendored
4
thirdparty/pydes/pyDes.py
vendored
|
@ -245,7 +245,7 @@ class _baseDes(object):
|
||||||
# DES #
|
# DES #
|
||||||
#############################################################################
|
#############################################################################
|
||||||
class des(_baseDes):
|
class des(_baseDes):
|
||||||
"""DES encryption/decrytpion class
|
"""DES encryption/decryption class
|
||||||
|
|
||||||
Supports ECB (Electronic Code Book) and CBC (Cypher Block Chaining) modes.
|
Supports ECB (Electronic Code Book) and CBC (Cypher Block Chaining) modes.
|
||||||
|
|
||||||
|
@ -685,7 +685,7 @@ class des(_baseDes):
|
||||||
# Triple DES #
|
# Triple DES #
|
||||||
#############################################################################
|
#############################################################################
|
||||||
class triple_des(_baseDes):
|
class triple_des(_baseDes):
|
||||||
"""Triple DES encryption/decrytpion class
|
"""Triple DES encryption/decryption class
|
||||||
|
|
||||||
This algorithm uses the DES-EDE3 (when a 24 byte key is supplied) or
|
This algorithm uses the DES-EDE3 (when a 24 byte key is supplied) or
|
||||||
the DES-EDE2 (when a 16 byte key is supplied) encryption methods.
|
the DES-EDE2 (when a 16 byte key is supplied) encryption methods.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user