Home | History | Annotate | Download | only in webapp2_extras
      1 .. _api.webapp2_extras.security:
      2 
      3 Security
      4 ========
      5 .. module:: webapp2_extras.security
      6 
      7 This module provides security related helpers such as secure password hashing
      8 tools and a random string generator.
      9 
     10 .. autofunction:: generate_random_string
     11 .. autofunction:: generate_password_hash
     12 .. autofunction:: check_password_hash
     13 .. autofunction:: hash_password
     14 .. autofunction:: compare_hashes
     15 
     16 
     17 .. _Werkzeug: http://werkzeug.pocoo.org/
     18