Fix reStructuredText sub-lists
This commit is contained in:
parent
26973e7051
commit
09672770e0
1 changed files with 5 additions and 0 deletions
|
@ -11,17 +11,22 @@ Features
|
||||||
This is a work in progress. Some features may not be available.
|
This is a work in progress. Some features may not be available.
|
||||||
|
|
||||||
* Password / passphrase authentication
|
* Password / passphrase authentication
|
||||||
|
|
||||||
- ✓ no character-set limitation
|
- ✓ no character-set limitation
|
||||||
- ✓ reasonable lenth limit ([security vs. DOS](http://arstechnica.com/security/2013/09/long-passwords-are-good-but-too-much-length-can-be-bad-for-security/))
|
- ✓ reasonable lenth limit ([security vs. DOS](http://arstechnica.com/security/2013/09/long-passwords-are-good-but-too-much-length-can-be-bad-for-security/))
|
||||||
- ✓ strong, evolutive and retro-compatible password hashing functions
|
- ✓ strong, evolutive and retro-compatible password hashing functions
|
||||||
- ✓ optional NIST Special Publication 800-63B compatibility
|
- ✓ optional NIST Special Publication 800-63B compatibility
|
||||||
|
|
||||||
* HOTP - HMAC-based One-time Password Algorithm ([OATH](http://www.openauthentication.org/) - [RFC 4226](https://tools.ietf.org/html/rfc4226))
|
* HOTP - HMAC-based One-time Password Algorithm ([OATH](http://www.openauthentication.org/) - [RFC 4226](https://tools.ietf.org/html/rfc4226))
|
||||||
|
|
||||||
- ✗ the key can be passed as bytes, an ASCII string, an hexadicimal string or a base32 string
|
- ✗ the key can be passed as bytes, an ASCII string, an hexadicimal string or a base32 string
|
||||||
- ✗ customizable counter
|
- ✗ customizable counter
|
||||||
- ✗ customizable hash function (sha1, sha256, sha512)
|
- ✗ customizable hash function (sha1, sha256, sha512)
|
||||||
- ✗ customizable output length
|
- ✗ customizable output length
|
||||||
- ✗ customizable output alphabet
|
- ✗ customizable output alphabet
|
||||||
|
|
||||||
* TOTP - Time-based One-time Password Algorithm ([OATH](http://www.openauthentication.org/) - [RFC 6238](https://tools.ietf.org/html/rfc6238))
|
* TOTP - Time-based One-time Password Algorithm ([OATH](http://www.openauthentication.org/) - [RFC 6238](https://tools.ietf.org/html/rfc6238))
|
||||||
|
|
||||||
- ✗ the key can be passed as bytes, an ASCII string, an hexadicimal string or a base32 string
|
- ✗ the key can be passed as bytes, an ASCII string, an hexadicimal string or a base32 string
|
||||||
- ✗ customizable timestamp
|
- ✗ customizable timestamp
|
||||||
- ✗ customizable period
|
- ✗ customizable period
|
||||||
|
|
Reference in a new issue