| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | passlib.totp: doc fixes, TokenError() no longer requires explicit message, | Eli Collins | 2016-11-19 | 1 | -1/+1 |
| * | totp: doc fixes, description of alternate caching strategy, serialization step | Eli Collins | 2016-11-10 | 2 | -18/+122 |
| * | totp: TOTP.normalize_token() turned into hybrid method, made public; | Eli Collins | 2016-11-10 | 1 | -7/+9 |
| * | totp: added cache_seconds to TotpMatch repr, fixed py3 bug in UTs | Eli Collins | 2016-11-10 | 1 | -1/+1 |
| * | pwd: updated docs, made default word/charsets public, minor optimizations | Eli Collins | 2016-11-10 | 1 | -12/+43 |
| * | docs: updated some docstrings, internal notes | Eli Collins | 2016-11-09 | 3 | -2/+9 |
| * | docs: updated theme, 'upcoming changes' styling | Eli Collins | 2016-11-09 | 1 | -7/+7 |
| * | totp: corrections to tutorial | Eli Collins | 2016-11-09 | 1 | -0/+3 |
| * | totp: huge overhaul of the documentation, tutorial should be finished (?) | Eli Collins | 2016-11-09 | 2 | -169/+387 |
| * | totp: consolidated key parsing code, clarified AppWallet behavior, | Eli Collins | 2016-11-09 | 1 | -1/+1 |
| * | totp: lots of documentation updates, added example walkthrough using new system | Eli Collins | 2016-11-08 | 2 | -107/+243 |
| * | totp: renamed TOTP.verify() to TOTP.match(); added new TOTP.verify() in it's ... | Eli Collins | 2016-11-08 | 2 | -13/+30 |
| * | totp: OTPContext no longer frontend, reduced down to merely holding | Eli Collins | 2016-11-08 | 2 | -27/+9 |
| * | totp: added TOTP.using() for constructing TOTP factories with custom configur... | Eli Collins | 2016-11-08 | 2 | -0/+5 |
| * | totp: added TOTP.from_source() frontend which detects serialization format, | Eli Collins | 2016-11-08 | 2 | -15/+18 |
| * | totp: in place of stateful TOTP methods, expanded the TotpMatch() object | Eli Collins | 2016-11-07 | 1 | -24/+36 |
| * | totp: stripped out the 'stateful' methods (TOTP.advance, TOTP.consume, and TO... | Eli Collins | 2016-11-07 | 2 | -87/+5 |
| * | totp: no functional code changes, just combined the BaseOTP and TOTP classes, | Eli Collins | 2016-11-07 | 2 | -80/+45 |
| * | totp: stripped out BaseOTP subtype resolution | Eli Collins | 2016-11-07 | 2 | -16/+16 |
| * | totp: stripping out HOTP support -- not generally used/useful in the real world | Eli Collins | 2016-11-07 | 2 | -70/+9 |
| * | docs: marked MCF as "deprecated" in favor of PHC format, notes scrypt & argon... | Eli Collins | 2016-10-04 | 3 | -9/+19 |
| * | totp: documented the global from_uri() / from_json() helpers, as well as to_d... | Eli Collins | 2016-10-03 | 2 | -0/+25 |
| * | docs: added ref to PHC-SF format spec | Eli Collins | 2016-10-03 | 1 | -0/+6 |
| * | docs: updated styling, tweaked faq wording | Eli Collins | 2016-10-03 | 2 | -7/+8 |
| * | totp: added a bunch of tutorial content, relocated nested API documentation | Eli Collins | 2016-10-03 | 2 | -46/+558 |
| * | docs: missed a few files from previous commit | Eli Collins | 2016-07-29 | 4 | -0/+157 |
| * | docs: large reorganization of documentation | Eli Collins | 2016-07-29 | 14 | -245/+272 |
| * | ran full tests to verify we work under pyston 0.5.1 | Eli Collins | 2016-07-15 | 1 | -0/+1 |
| * | docs: updated theme (requires latest cloud_sptheme) | Eli Collins | 2016-07-15 | 2 | -5/+17 |
| * | docs: corrected / updated various bits of text, especially TOTP docs | Eli Collins | 2016-07-15 | 3 | -7/+12 |
| * | passlib.totp: large refactoring of API, added support for migration applicati... | Eli Collins | 2016-07-12 | 1 | -0/+6 |
| * | docs: noted issue with sha256_crypt | Eli Collins | 2016-06-30 | 1 | -0/+19 |
| * | docs: cleaned up language & links | Eli Collins | 2016-06-30 | 3 | -4/+8 |
| * | CryptContext: added "harden_verify" support | Eli Collins | 2016-06-29 | 2 | -2/+40 |
| * | passlib.hash: Improved handling of hashes which truncate passwords | Eli Collins | 2016-06-29 | 3 | -4/+30 |
| * | Enhanced disabled hash management | Eli Collins | 2016-06-26 | 2 | -0/+21 |
| * | docs: build fixes | Eli Collins | 2016-06-23 | 3 | -3/+6 |
| * | utils: pinned down unicode/bytes handling for ab64/b64s helpers | Eli Collins | 2016-06-22 | 1 | -2/+4 |
| * | docs: various updates | Eli Collins | 2016-06-20 | 9 | -42/+118 |
| * | docs: misc cleanups & todos | Eli Collins | 2016-06-20 | 1 | -1/+1 |
| * | scrypt: hash format changed | Eli Collins | 2016-06-20 | 3 | -24/+16 |
| * | argon2: now requiring argon2pure >= 1.2.2, dropped workarounds for older vers... | Eli Collins | 2016-06-20 | 1 | -1/+1 |
| * | pbkdf2: removed support for M2Crypto backend -- was only useful for sha1 | Eli Collins | 2016-06-20 | 1 | -6/+1 |
| * | pbkdf2_hmac: now supports hashlib.pbkdf2_hmac() and fastpbkdf2 as backends. | Eli Collins | 2016-06-20 | 2 | -0/+15 |
| * | passlib.hash.argon2: support for Argon2 hash format | Eli Collins | 2016-06-17 | 3 | -0/+138 |
| * | docs: replaced a bunch of :meth:`encrypt` references | Eli Collins | 2016-06-17 | 4 | -6/+6 |
| * | renamed PasswordHandler.replace() back to PasswordHandler.using() | Eli Collins | 2016-06-15 | 10 | -15/+15 |
| * | docs / bcrypt: updated doc to recommend bcrypt cffi backend | Eli Collins | 2016-06-15 | 1 | -4/+3 |
| * | PasswordHash.hash() api shift: deprecating passing settings kwds into hash() -- | Eli Collins | 2016-06-15 | 11 | -37/+38 |
| * | renamed handler.using() method to handler.replace(), | Eli Collins | 2016-06-13 | 1 | -4/+26 |