src/eric7/Utilities/crypto/py3PBKDF2.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
5 5
6 """ 6 """
7 Module implementing PBKDF2 functions. 7 Module implementing PBKDF2 functions.
8 """ 8 """
9 9
10 import base64
10 import hashlib 11 import hashlib
11 import hmac 12 import hmac
12 import os 13 import os
13 import base64
14 14
15 Hashes = { 15 Hashes = {
16 "sha1": hashlib.sha1, 16 "sha1": hashlib.sha1,
17 "sha224": hashlib.sha224, 17 "sha224": hashlib.sha224,
18 "sha256": hashlib.sha256, 18 "sha256": hashlib.sha256,

eric ide

mercurial