The Passlib documentation has moved to https://passlib.readthedocs.io
passlib.exc
- Exceptions and warnings¶
This module contains all the custom exceptions & warnings that may be raised by Passlib.
Exceptions¶
-
exception
passlib.exc.
MissingBackendError
¶ Error raised if multi-backend handler has no available backends; or if specifically requested backend is not available.
MissingBackendError
derives fromRuntimeError
, since it usually indicates lack of an external library or OS feature. This is primarily raised by handlers which depend on external libraries (which is currently justbcrypt
).
-
exception
passlib.exc.
PasswordSizeError
(max_size, msg=None)¶ Error raised if a password exceeds the maximum size allowed by Passlib (by default, 4096 characters); or if password exceeds a hash-specific size limitation.
Many password hash algorithms take proportionately larger amounts of time and/or memory depending on the size of the password provided. This could present a potential denial of service (DOS) situation if a maliciously large password is provided to an application. Because of this, Passlib enforces a maximum size limit, but one which should be much larger than any legitimate password.
PasswordSizeError
derives fromValueError
.Note
Applications wishing to use a different limit should set the
PASSLIB_MAX_PASSWORD_SIZE
environmental variable before Passlib is loaded. The value can be any large positive integer.-
max_size
¶ indicates the maximum allowed size.
New in version 1.6.
-
-
exception
passlib.exc.
PasswordTruncateError
(cls, msg=None)¶ Error raised if password would be truncated by hash. This derives from
PasswordSizeError
andValueError
.Hashers such as
bcrypt
can be configured to raises this error by settingtruncate_error=True
.-
max_size
¶ indicates the maximum allowed size.
New in version 1.7.
-
-
exception
passlib.exc.
PasslibSecurityError
¶ Error raised if critical security issue is detected (e.g. an attempt is made to use a vulnerable version of a bcrypt backend).
New in version 1.6.3.
-
exception
passlib.exc.
UnknownHashError
(name)¶ Error raised by
lookup_hash
if hash name is not recognized. This exception derives fromValueError
.New in version 1.7.
TOTP Exceptions¶
-
exception
passlib.exc.
TokenError
(msg=None, *args, **kwds)¶ Base error raised by v:mod:passlib.totp when a token can’t be parsed / isn’t valid / etc. Derives from
ValueError
.Usually one of the more specific subclasses below will be raised:
MalformedTokenError
– invalid chars, too few digitsInvalidTokenError
– no match foundUsedTokenError
– match found, but token already used
New in version 1.7.
-
exception
passlib.exc.
MalformedTokenError
(msg=None, *args, **kwds)¶ Error raised by
passlib.totp
when a token isn’t formatted correctly (contains invalid characters, wrong number of digits, etc)
-
exception
passlib.exc.
InvalidTokenError
(msg=None, *args, **kwds)¶ Error raised by
passlib.totp
when a token is formatted correctly, but doesn’t match any tokens within valid range.
-
exception
passlib.exc.
UsedTokenError
(*args, **kwds)¶ Error raised by
passlib.totp
if a token is reused. Derives fromTokenError
.-
expire_time
= None¶ optional value indicating when current counter period will end, and a new token can be generated.
New in version 1.7.
-
Warnings¶
-
exception
passlib.exc.
PasslibWarning
¶ base class for Passlib’s user warnings, derives from the builtin
UserWarning
.New in version 1.6.
Minor Warnings¶
-
exception
passlib.exc.
PasslibConfigWarning
¶ Warning issued when non-fatal issue is found related to the configuration of a
CryptContext
instance.This occurs primarily in one of two cases:
- The CryptContext contains rounds limits which exceed the hard limits imposed by the underlying algorithm.
- An explicit rounds value was provided which exceeds the limits imposed by the CryptContext.
In both of these cases, the code will perform correctly & securely; but the warning is issued as a sign the configuration may need updating.
New in version 1.6.
-
exception
passlib.exc.
PasslibHashWarning
¶ Warning issued when non-fatal issue is found with parameters or hash string passed to a passlib hash class.
This occurs primarily in one of two cases:
- A rounds value or other setting was explicitly provided which exceeded the handler’s limits (and has been clamped by the relaxed flag).
- A malformed hash string was encountered which (while parsable) should be re-encoded.
New in version 1.6.
Critical Warnings¶
-
exception
passlib.exc.
PasslibRuntimeWarning
¶ Warning issued when something unexpected happens during runtime.
The fact that it’s a warning instead of an error means Passlib was able to correct for the issue, but that it’s anomalous enough that the developers would love to hear under what conditions it occurred.
New in version 1.6.
-
exception
passlib.exc.
PasslibSecurityWarning
¶ Special warning issued when Passlib encounters something that might affect security.
New in version 1.6.