1.. _api.webapp2_extras.security:
2
3Security
4========
5.. module:: webapp2_extras.security
6
7This module provides security related helpers such as secure password hashing
8tools 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