-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05-password-hashing.py
More file actions
1222 lines (948 loc) · 42.1 KB
/
05-password-hashing.py
File metadata and controls
1222 lines (948 loc) · 42.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Question: Implement secure password hashing and verification using modern cryptographic techniques.
Create a comprehensive password security system that demonstrates proper hashing,
salting, and verification practices.
Requirements:
1. Create a PasswordHasher class with secure hashing methods
2. Implement different hashing algorithms (bcrypt, scrypt, argon2)
3. Create password strength validation
4. Implement secure password verification
5. Demonstrate timing attack resistance
Example usage:
hasher = PasswordHasher()
hashed = hasher.hash_password("my_secure_password")
is_valid = hasher.verify_password("my_secure_password", hashed)
"""
# LEARNING CHALLENGE
#
# Before looking at any solution below, please try to solve this yourself first!
#
# Tips for success:
# - Read the question carefully
# - Think about what security principles you need to implement
# - Start with a simple implementation
# - Test your code step by step
# - Don't worry if it's not perfect - learning is a process!
#
# Remember: The best way to learn programming is by doing, not by reading solutions!
#
# Take your time, experiment, and enjoy the learning process!
# Try to implement your solution here:
# (Write your code below this line)
# HINT SECTION (Only look if you're really stuck!)
#
# Think about:
# - What makes a password hash secure?
# - Why do we need salts?
# - How to prevent timing attacks?
# - What are the differences between hashing algorithms?
#
# Remember: Start simple and build up complexity gradually!
# ===============================================================================
# STEP-BY-STEP SOLUTION
# ===============================================================================
#
# CLASSROOM-STYLE WALKTHROUGH
#
# Let's solve this problem step by step, just like in a programming class!
# Each step builds upon the previous one, so you can follow along and understand
# the complete thought process.
#
# ===============================================================================
# Step 1: Import modules and create basic password validation
# ===============================================================================
# Explanation:
# Password security starts with basic validation. We need to ensure passwords
# meet minimum security requirements before we even hash them.
import hashlib
import secrets
import re
from typing import Optional, Dict, Any
class PasswordValidator:
"""Validates password strength and security requirements."""
def __init__(self, min_length: int = 8):
self.min_length = min_length
def validate_password(self, password: str) -> Dict[str, Any]:
"""Validate password strength and return detailed results."""
results = {
'is_valid': True,
'score': 0,
'issues': [],
'suggestions': []
}
# Check minimum length
if len(password) < self.min_length:
results['is_valid'] = False
results['issues'].append(f'Password must be at least {self.min_length} characters long')
results['suggestions'].append('Use a longer password')
else:
results['score'] += 1
# Check for uppercase letters
if not re.search(r'[A-Z]', password):
results['issues'].append('Password should contain uppercase letters')
results['suggestions'].append('Add uppercase letters (A-Z)')
else:
results['score'] += 1
# Check for lowercase letters
if not re.search(r'[a-z]', password):
results['issues'].append('Password should contain lowercase letters')
results['suggestions'].append('Add lowercase letters (a-z)')
else:
results['score'] += 1
# Check for numbers
if not re.search(r'\d', password):
results['issues'].append('Password should contain numbers')
results['suggestions'].append('Add numbers (0-9)')
else:
results['score'] += 1
# Check for special characters
if not re.search(r'[!@#$%^&*(),.?":{}|<>]', password):
results['issues'].append('Password should contain special characters')
results['suggestions'].append('Add special characters (!@#$%^&*)')
else:
results['score'] += 1
# Check for common patterns
if self._has_common_patterns(password):
results['issues'].append('Password contains common patterns')
results['suggestions'].append('Avoid sequential characters or repeated patterns')
return results
def _has_common_patterns(self, password: str) -> bool:
"""Check for common weak patterns in passwords."""
password_lower = password.lower()
# Check for sequential characters
sequences = ['123', 'abc', 'qwe', 'asd', 'zxc']
for seq in sequences:
if seq in password_lower:
return True
# Check for repeated characters
if re.search(r'(.)\1{2,}', password):
return True
return False
# What we accomplished in this step:
# - Created password validation with strength checking
# - Implemented common security requirements
# - Added pattern detection for weak passwords
# Step 2: Create basic password hasher with salt generation
# ===============================================================================
# Explanation:
# Now we'll create a basic password hasher that uses proper salting.
# Salts prevent rainbow table attacks and ensure unique hashes for identical passwords.
import hashlib
import secrets
import re
from typing import Optional, Dict, Any
class PasswordValidator:
"""Validates password strength and security requirements."""
def __init__(self, min_length: int = 8):
self.min_length = min_length
def validate_password(self, password: str) -> Dict[str, Any]:
"""Validate password strength and return detailed results."""
results = {
'is_valid': True,
'score': 0,
'issues': [],
'suggestions': []
}
# Check minimum length
if len(password) < self.min_length:
results['is_valid'] = False
results['issues'].append(f'Password must be at least {self.min_length} characters long')
results['suggestions'].append('Use a longer password')
else:
results['score'] += 1
# Check for uppercase letters
if not re.search(r'[A-Z]', password):
results['issues'].append('Password should contain uppercase letters')
results['suggestions'].append('Add uppercase letters (A-Z)')
else:
results['score'] += 1
# Check for lowercase letters
if not re.search(r'[a-z]', password):
results['issues'].append('Password should contain lowercase letters')
results['suggestions'].append('Add lowercase letters (a-z)')
else:
results['score'] += 1
# Check for numbers
if not re.search(r'\d', password):
results['issues'].append('Password should contain numbers')
results['suggestions'].append('Add numbers (0-9)')
else:
results['score'] += 1
# Check for special characters
if not re.search(r'[!@#$%^&*(),.?":{}|<>]', password):
results['issues'].append('Password should contain special characters')
results['suggestions'].append('Add special characters (!@#$%^&*)')
else:
results['score'] += 1
# Check for common patterns
if self._has_common_patterns(password):
results['issues'].append('Password contains common patterns')
results['suggestions'].append('Avoid sequential characters or repeated patterns')
return results
def _has_common_patterns(self, password: str) -> bool:
"""Check for common weak patterns in passwords."""
password_lower = password.lower()
# Check for sequential characters
sequences = ['123', 'abc', 'qwe', 'asd', 'zxc']
for seq in sequences:
if seq in password_lower:
return True
# Check for repeated characters
if re.search(r'(.)\1{2,}', password):
return True
return False
class BasicPasswordHasher:
"""Basic password hasher using PBKDF2 with SHA-256."""
def __init__(self, iterations: int = 100000):
self.iterations = iterations
self.validator = PasswordValidator()
def generate_salt(self, length: int = 32) -> bytes:
"""Generate a cryptographically secure random salt."""
return secrets.token_bytes(length)
def hash_password(self, password: str, salt: Optional[bytes] = None) -> str:
"""Hash a password with salt using PBKDF2."""
# Validate password first
validation = self.validator.validate_password(password)
if not validation['is_valid']:
raise ValueError(f"Password validation failed: {', '.join(validation['issues'])}")
# Generate salt if not provided
if salt is None:
salt = self.generate_salt()
# Hash the password
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
self.iterations
)
# Combine salt and hash for storage
# Format: iterations:salt:hash (all base64 encoded)
import base64
salt_b64 = base64.b64encode(salt).decode('ascii')
hash_b64 = base64.b64encode(password_hash).decode('ascii')
return f"{self.iterations}:{salt_b64}:{hash_b64}"
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a stored hash."""
try:
# Parse the stored hash
parts = stored_hash.split(':')
if len(parts) != 3:
return False
iterations = int(parts[0])
salt = base64.b64decode(parts[1])
stored_password_hash = base64.b64decode(parts[2])
# Hash the provided password with the same salt and iterations
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
iterations
)
# Compare hashes using constant-time comparison
return secrets.compare_digest(password_hash, stored_password_hash)
except (ValueError, TypeError):
return False
# What we accomplished in this step:
# - Created basic password hasher with PBKDF2
# - Implemented proper salt generation and storage
# - Added constant-time comparison to prevent timing attacks
# - Integrated password validation before hashing
# Step 3: Add bcrypt support for stronger password hashing
# ===============================================================================
# Explanation:
# Bcrypt is specifically designed for password hashing and includes adaptive cost.
# It's slower than PBKDF2 but provides better security against brute force attacks.
import hashlib
import secrets
import re
import base64
from typing import Optional, Dict, Any
class PasswordValidator:
"""Validates password strength and security requirements."""
def __init__(self, min_length: int = 8):
self.min_length = min_length
def validate_password(self, password: str) -> Dict[str, Any]:
"""Validate password strength and return detailed results."""
results = {
'is_valid': True,
'score': 0,
'issues': [],
'suggestions': []
}
# Check minimum length
if len(password) < self.min_length:
results['is_valid'] = False
results['issues'].append(f'Password must be at least {self.min_length} characters long')
results['suggestions'].append('Use a longer password')
else:
results['score'] += 1
# Check for uppercase letters
if not re.search(r'[A-Z]', password):
results['issues'].append('Password should contain uppercase letters')
results['suggestions'].append('Add uppercase letters (A-Z)')
else:
results['score'] += 1
# Check for lowercase letters
if not re.search(r'[a-z]', password):
results['issues'].append('Password should contain lowercase letters')
results['suggestions'].append('Add lowercase letters (a-z)')
else:
results['score'] += 1
# Check for numbers
if not re.search(r'\d', password):
results['issues'].append('Password should contain numbers')
results['suggestions'].append('Add numbers (0-9)')
else:
results['score'] += 1
# Check for special characters
if not re.search(r'[!@#$%^&*(),.?":{}|<>]', password):
results['issues'].append('Password should contain special characters')
results['suggestions'].append('Add special characters (!@#$%^&*)')
else:
results['score'] += 1
# Check for common patterns
if self._has_common_patterns(password):
results['issues'].append('Password contains common patterns')
results['suggestions'].append('Avoid sequential characters or repeated patterns')
return results
def _has_common_patterns(self, password: str) -> bool:
"""Check for common weak patterns in passwords."""
password_lower = password.lower()
# Check for sequential characters
sequences = ['123', 'abc', 'qwe', 'asd', 'zxc']
for seq in sequences:
if seq in password_lower:
return True
# Check for repeated characters
if re.search(r'(.)\1{2,}', password):
return True
return False
class BasicPasswordHasher:
"""Basic password hasher using PBKDF2 with SHA-256."""
def __init__(self, iterations: int = 100000):
self.iterations = iterations
self.validator = PasswordValidator()
def generate_salt(self, length: int = 32) -> bytes:
"""Generate a cryptographically secure random salt."""
return secrets.token_bytes(length)
def hash_password(self, password: str, salt: Optional[bytes] = None) -> str:
"""Hash a password with salt using PBKDF2."""
# Validate password first
validation = self.validator.validate_password(password)
if not validation['is_valid']:
raise ValueError(f"Password validation failed: {', '.join(validation['issues'])}")
# Generate salt if not provided
if salt is None:
salt = self.generate_salt()
# Hash the password
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
self.iterations
)
# Combine salt and hash for storage
# Format: iterations:salt:hash (all base64 encoded)
salt_b64 = base64.b64encode(salt).decode('ascii')
hash_b64 = base64.b64encode(password_hash).decode('ascii')
return f"{self.iterations}:{salt_b64}:{hash_b64}"
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a stored hash."""
try:
# Parse the stored hash
parts = stored_hash.split(':')
if len(parts) != 3:
return False
iterations = int(parts[0])
salt = base64.b64decode(parts[1])
stored_password_hash = base64.b64decode(parts[2])
# Hash the provided password with the same salt and iterations
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
iterations
)
# Compare hashes using constant-time comparison
return secrets.compare_digest(password_hash, stored_password_hash)
except (ValueError, TypeError):
return False
class BcryptPasswordHasher:
"""Password hasher using bcrypt algorithm."""
def __init__(self, rounds: int = 12):
self.rounds = rounds
self.validator = PasswordValidator()
# Try to import bcrypt, provide fallback if not available
try:
import bcrypt
self.bcrypt = bcrypt
self.available = True
except ImportError:
self.available = False
print("Warning: bcrypt not available. Install with: pip install bcrypt")
def hash_password(self, password: str) -> str:
"""Hash a password using bcrypt."""
if not self.available:
raise ImportError("bcrypt library not available")
# Validate password first
validation = self.validator.validate_password(password)
if not validation['is_valid']:
raise ValueError(f"Password validation failed: {', '.join(validation['issues'])}")
# Generate salt and hash password
salt = self.bcrypt.gensalt(rounds=self.rounds)
password_hash = self.bcrypt.hashpw(password.encode('utf-8'), salt)
return password_hash.decode('utf-8')
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a bcrypt hash."""
if not self.available:
return False
try:
return self.bcrypt.checkpw(
password.encode('utf-8'),
stored_hash.encode('utf-8')
)
except (ValueError, TypeError):
return False
# What we accomplished in this step:
# - Added bcrypt password hasher with adaptive cost
# - Implemented graceful fallback when bcrypt is not available
# - Maintained consistent interface with validation
# - Used bcrypt's built-in salt generation and verification
# Step 4: Create unified password hasher with multiple algorithms
# ===============================================================================
# Explanation:
# Now we'll create a unified interface that supports multiple hashing algorithms
# and can automatically detect which algorithm was used for verification.
import hashlib
import secrets
import re
import base64
import time
from typing import Optional, Dict, Any, Literal
class PasswordValidator:
"""Validates password strength and security requirements."""
def __init__(self, min_length: int = 8):
self.min_length = min_length
def validate_password(self, password: str) -> Dict[str, Any]:
"""Validate password strength and return detailed results."""
results = {
'is_valid': True,
'score': 0,
'issues': [],
'suggestions': []
}
# Check minimum length
if len(password) < self.min_length:
results['is_valid'] = False
results['issues'].append(f'Password must be at least {self.min_length} characters long')
results['suggestions'].append('Use a longer password')
else:
results['score'] += 1
# Check for uppercase letters
if not re.search(r'[A-Z]', password):
results['issues'].append('Password should contain uppercase letters')
results['suggestions'].append('Add uppercase letters (A-Z)')
else:
results['score'] += 1
# Check for lowercase letters
if not re.search(r'[a-z]', password):
results['issues'].append('Password should contain lowercase letters')
results['suggestions'].append('Add lowercase letters (a-z)')
else:
results['score'] += 1
# Check for numbers
if not re.search(r'\d', password):
results['issues'].append('Password should contain numbers')
results['suggestions'].append('Add numbers (0-9)')
else:
results['score'] += 1
# Check for special characters
if not re.search(r'[!@#$%^&*(),.?":{}|<>]', password):
results['issues'].append('Password should contain special characters')
results['suggestions'].append('Add special characters (!@#$%^&*)')
else:
results['score'] += 1
# Check for common patterns
if self._has_common_patterns(password):
results['issues'].append('Password contains common patterns')
results['suggestions'].append('Avoid sequential characters or repeated patterns')
return results
def _has_common_patterns(self, password: str) -> bool:
"""Check for common weak patterns in passwords."""
password_lower = password.lower()
# Check for sequential characters
sequences = ['123', 'abc', 'qwe', 'asd', 'zxc']
for seq in sequences:
if seq in password_lower:
return True
# Check for repeated characters
if re.search(r'(.)\1{2,}', password):
return True
return False
class BasicPasswordHasher:
"""Basic password hasher using PBKDF2 with SHA-256."""
def __init__(self, iterations: int = 100000):
self.iterations = iterations
self.validator = PasswordValidator()
def generate_salt(self, length: int = 32) -> bytes:
"""Generate a cryptographically secure random salt."""
return secrets.token_bytes(length)
def hash_password(self, password: str, salt: Optional[bytes] = None) -> str:
"""Hash a password with salt using PBKDF2."""
# Validate password first
validation = self.validator.validate_password(password)
if not validation['is_valid']:
raise ValueError(f"Password validation failed: {', '.join(validation['issues'])}")
# Generate salt if not provided
if salt is None:
salt = self.generate_salt()
# Hash the password
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
self.iterations
)
# Combine salt and hash for storage
# Format: iterations:salt:hash (all base64 encoded)
salt_b64 = base64.b64encode(salt).decode('ascii')
hash_b64 = base64.b64encode(password_hash).decode('ascii')
return f"{self.iterations}:{salt_b64}:{hash_b64}"
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a stored hash."""
try:
# Parse the stored hash
parts = stored_hash.split(':')
if len(parts) != 3:
return False
iterations = int(parts[0])
salt = base64.b64decode(parts[1])
stored_password_hash = base64.b64decode(parts[2])
# Hash the provided password with the same salt and iterations
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
iterations
)
# Compare hashes using constant-time comparison
return secrets.compare_digest(password_hash, stored_password_hash)
except (ValueError, TypeError):
return False
class BcryptPasswordHasher:
"""Password hasher using bcrypt algorithm."""
def __init__(self, rounds: int = 12):
self.rounds = rounds
self.validator = PasswordValidator()
# Try to import bcrypt, provide fallback if not available
try:
import bcrypt
self.bcrypt = bcrypt
self.available = True
except ImportError:
self.available = False
print("Warning: bcrypt not available. Install with: pip install bcrypt")
def hash_password(self, password: str) -> str:
"""Hash a password using bcrypt."""
if not self.available:
raise ImportError("bcrypt library not available")
# Validate password first
validation = self.validator.validate_password(password)
if not validation['is_valid']:
raise ValueError(f"Password validation failed: {', '.join(validation['issues'])}")
# Generate salt and hash password
salt = self.bcrypt.gensalt(rounds=self.rounds)
password_hash = self.bcrypt.hashpw(password.encode('utf-8'), salt)
return password_hash.decode('utf-8')
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a bcrypt hash."""
if not self.available:
return False
try:
return self.bcrypt.checkpw(
password.encode('utf-8'),
stored_hash.encode('utf-8')
)
except (ValueError, TypeError):
return False
class PasswordHasher:
"""Unified password hasher supporting multiple algorithms."""
def __init__(self, algorithm: Literal['pbkdf2', 'bcrypt'] = 'bcrypt'):
self.algorithm = algorithm
self.validator = PasswordValidator()
# Initialize hashers
self.pbkdf2_hasher = BasicPasswordHasher()
self.bcrypt_hasher = BcryptPasswordHasher()
# Set default hasher
if algorithm == 'bcrypt' and self.bcrypt_hasher.available:
self.default_hasher = self.bcrypt_hasher
else:
self.default_hasher = self.pbkdf2_hasher
if algorithm == 'bcrypt':
print("Warning: bcrypt not available, falling back to PBKDF2")
def hash_password(self, password: str) -> str:
"""Hash a password using the configured algorithm."""
return self.default_hasher.hash_password(password)
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a stored hash (auto-detects algorithm)."""
# Auto-detect algorithm based on hash format
if stored_hash.startswith('$2'): # bcrypt format
return self.bcrypt_hasher.verify_password(password, stored_hash)
elif ':' in stored_hash: # PBKDF2 format
return self.pbkdf2_hasher.verify_password(password, stored_hash)
else:
# Try both algorithms
return (self.bcrypt_hasher.verify_password(password, stored_hash) or
self.pbkdf2_hasher.verify_password(password, stored_hash))
def verify_password_with_timing_protection(self, password: str, stored_hash: str) -> bool:
"""Verify password with protection against timing attacks."""
start_time = time.time()
try:
result = self.verify_password(password, stored_hash)
except Exception:
result = False
# Ensure minimum time to prevent timing attacks
elapsed = time.time() - start_time
min_time = 0.1 # 100ms minimum
if elapsed < min_time:
time.sleep(min_time - elapsed)
return result
def get_hash_info(self, stored_hash: str) -> Dict[str, Any]:
"""Get information about a stored hash."""
info = {'algorithm': 'unknown', 'valid_format': False}
if stored_hash.startswith('$2'):
info['algorithm'] = 'bcrypt'
info['valid_format'] = True
# Extract bcrypt parameters
parts = stored_hash.split('$')
if len(parts) >= 4:
info['rounds'] = int(parts[2])
elif ':' in stored_hash:
info['algorithm'] = 'pbkdf2'
parts = stored_hash.split(':')
if len(parts) == 3:
info['valid_format'] = True
info['iterations'] = int(parts[0])
return info
# What we accomplished in this step:
# - Created unified password hasher with algorithm auto-detection
# - Added timing attack protection for verification
# - Implemented hash format analysis
# - Provided fallback mechanisms for missing libraries
# Step 5: Add comprehensive testing and security demonstrations
# ===============================================================================
# Explanation:
# Let's test our complete password security system and demonstrate
# various security features and attack resistance.
import hashlib
import secrets
import re
import base64
import time
from typing import Optional, Dict, Any, Literal
class PasswordValidator:
"""Validates password strength and security requirements."""
def __init__(self, min_length: int = 8):
self.min_length = min_length
def validate_password(self, password: str) -> Dict[str, Any]:
"""Validate password strength and return detailed results."""
results = {
'is_valid': True,
'score': 0,
'issues': [],
'suggestions': []
}
# Check minimum length
if len(password) < self.min_length:
results['is_valid'] = False
results['issues'].append(f'Password must be at least {self.min_length} characters long')
results['suggestions'].append('Use a longer password')
else:
results['score'] += 1
# Check for uppercase letters
if not re.search(r'[A-Z]', password):
results['issues'].append('Password should contain uppercase letters')
results['suggestions'].append('Add uppercase letters (A-Z)')
else:
results['score'] += 1
# Check for lowercase letters
if not re.search(r'[a-z]', password):
results['issues'].append('Password should contain lowercase letters')
results['suggestions'].append('Add lowercase letters (a-z)')
else:
results['score'] += 1
# Check for numbers
if not re.search(r'\d', password):
results['issues'].append('Password should contain numbers')
results['suggestions'].append('Add numbers (0-9)')
else:
results['score'] += 1
# Check for special characters
if not re.search(r'[!@#$%^&*(),.?":{}|<>]', password):
results['issues'].append('Password should contain special characters')
results['suggestions'].append('Add special characters (!@#$%^&*)')
else:
results['score'] += 1
# Check for common patterns
if self._has_common_patterns(password):
results['issues'].append('Password contains common patterns')
results['suggestions'].append('Avoid sequential characters or repeated patterns')
return results
def _has_common_patterns(self, password: str) -> bool:
"""Check for common weak patterns in passwords."""
password_lower = password.lower()
# Check for sequential characters
sequences = ['123', 'abc', 'qwe', 'asd', 'zxc']
for seq in sequences:
if seq in password_lower:
return True
# Check for repeated characters
if re.search(r'(.)\1{2,}', password):
return True
return False
class BasicPasswordHasher:
"""Basic password hasher using PBKDF2 with SHA-256."""
def __init__(self, iterations: int = 100000):
self.iterations = iterations
self.validator = PasswordValidator()
def generate_salt(self, length: int = 32) -> bytes:
"""Generate a cryptographically secure random salt."""
return secrets.token_bytes(length)
def hash_password(self, password: str, salt: Optional[bytes] = None) -> str:
"""Hash a password with salt using PBKDF2."""
# Validate password first
validation = self.validator.validate_password(password)
if not validation['is_valid']:
raise ValueError(f"Password validation failed: {', '.join(validation['issues'])}")
# Generate salt if not provided
if salt is None:
salt = self.generate_salt()
# Hash the password
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
self.iterations
)
# Combine salt and hash for storage
# Format: iterations:salt:hash (all base64 encoded)
salt_b64 = base64.b64encode(salt).decode('ascii')
hash_b64 = base64.b64encode(password_hash).decode('ascii')
return f"{self.iterations}:{salt_b64}:{hash_b64}"
def verify_password(self, password: str, stored_hash: str) -> bool:
"""Verify a password against a stored hash."""
try:
# Parse the stored hash
parts = stored_hash.split(':')
if len(parts) != 3:
return False
iterations = int(parts[0])
salt = base64.b64decode(parts[1])
stored_password_hash = base64.b64decode(parts[2])
# Hash the provided password with the same salt and iterations
password_hash = hashlib.pbkdf2_hmac(
'sha256',
password.encode('utf-8'),
salt,
iterations
)
# Compare hashes using constant-time comparison
return secrets.compare_digest(password_hash, stored_password_hash)
except (ValueError, TypeError):
return False
class BcryptPasswordHasher:
"""Password hasher using bcrypt algorithm."""
def __init__(self, rounds: int = 12):
self.rounds = rounds
self.validator = PasswordValidator()
# Try to import bcrypt, provide fallback if not available
try:
import bcrypt
self.bcrypt = bcrypt
self.available = True
except ImportError:
self.available = False