Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 183 → Rev 184

/relevation/ext/cryptopy-1.2.5.patched/crypto/keyedHash/pbkdf2_test.py
3,7 → 3,7
 
Unit tests for crypto.keyedHash.pbkdf2
 
Copyright © (c) 2002 by Paul A. Lambert
Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
 
/relevation/ext/cryptopy-1.2.5.patched/crypto/keyedHash/pbkdf2.py
6,7 → 6,7
 
This function is used for IEEE 802.11/WPA passphrase to key hashing
 
Copyright © (c) 2002 by Paul A. Lambert
Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.keyedHash.hmacHash import HMAC_SHA1
/relevation/ext/cryptopy-1.2.5.patched/crypto/keyedHash/__init__.py
2,6 → 2,6
 
The keyedHash package.
 
Copyright © (c) 2002 by Paul A. Lambert
Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
/relevation/ext/cryptopy-1.2.5.patched/crypto/keyedHash/michael_test.py
3,7 → 3,7
 
Tests of the Michael Message Integrity Check Algorithm
 
Copyright © (c) 2002 by Paul A. Lambert
Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.keyedHash.michael import Michael
/relevation/ext/cryptopy-1.2.5.patched/crypto/keyedHash/michael.py
5,7 → 5,7
 
Michael is a 64-bit MIC, with a design strength of 20 bits.
 
Copyright © (c) 2002 by Paul A. Lambert
Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from struct import pack, unpack