-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path09-secure-communication.py
More file actions
2270 lines (1759 loc) · 80.3 KB
/
09-secure-communication.py
File metadata and controls
2270 lines (1759 loc) · 80.3 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 communication practices for network applications.
Create a comprehensive secure communication system that demonstrates:
- TLS/SSL encryption for secure connections
- Certificate validation and pinning
- Secure API authentication methods
- Message encryption and digital signatures
- Secure WebSocket connections
Requirements:
1. Create a secure HTTP client with certificate validation
2. Implement JWT token authentication
3. Create message encryption/decryption utilities
4. Implement secure WebSocket communication
5. Demonstrate API key management and rotation
Example usage:
client = SecureHTTPClient()
response = client.secure_get("https://api.example.com/data")
auth = JWTAuthenticator("secret_key")
token = auth.generate_token({"user_id": 123})
"""
# 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 measures are needed
# - 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 are the main security threats in network communication?
# - How can you verify the identity of the server?
# - What encryption methods should you use?
# - How do you manage authentication tokens securely?
#
# 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 required modules and create basic secure HTTP client
# ===============================================================================
# Explanation:
# Secure communication starts with proper imports and a basic HTTP client
# that enforces SSL/TLS encryption and certificate validation.
import ssl
import socket
import requests
import urllib3
from urllib3.util import connection
import certifi
import hashlib
import hmac
import base64
import json
import time
from typing import Dict, Optional, Any, Union
from datetime import datetime, timedelta
import warnings
# Disable insecure request warnings for demonstration
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
class SecureHTTPClient:
"""Secure HTTP client with certificate validation and security headers."""
def __init__(self, verify_ssl: bool = True, cert_pinning: Optional[Dict[str, str]] = None):
self.verify_ssl = verify_ssl
self.cert_pinning = cert_pinning or {}
self.session = requests.Session()
# Configure secure defaults
self.session.verify = verify_ssl
if verify_ssl:
self.session.verify = certifi.where()
# Set security headers
self.session.headers.update({
'User-Agent': 'SecureClient/1.0',
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-Content-Type-Options': 'nosniff',
'X-Frame-Options': 'DENY',
'X-XSS-Protection': '1; mode=block'
})
def _validate_certificate_pinning(self, hostname: str, cert_der: bytes) -> bool:
"""Validate certificate pinning if configured."""
if hostname not in self.cert_pinning:
return True
# Calculate SHA256 fingerprint
cert_hash = hashlib.sha256(cert_der).hexdigest()
expected_hash = self.cert_pinning[hostname]
return cert_hash == expected_hash
# What we accomplished in this step:
# - Created basic secure HTTP client with SSL verification
# - Added security headers for protection
# - Implemented certificate pinning foundation
# Step 2: Add secure HTTP methods with timeout and error handling
# ===============================================================================
# Explanation:
# Now we'll add the actual HTTP methods with proper timeout handling,
# error handling, and security validations.
import ssl
import socket
import requests
import urllib3
from urllib3.util import connection
import certifi
import hashlib
import hmac
import base64
import json
import time
from typing import Dict, Optional, Any, Union
from datetime import datetime, timedelta
import warnings
# Disable insecure request warnings for demonstration
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
class SecureHTTPClient:
"""Secure HTTP client with certificate validation and security headers."""
def __init__(self, verify_ssl: bool = True, cert_pinning: Optional[Dict[str, str]] = None):
self.verify_ssl = verify_ssl
self.cert_pinning = cert_pinning or {}
self.session = requests.Session()
# Configure secure defaults
self.session.verify = verify_ssl
if verify_ssl:
self.session.verify = certifi.where()
# Set security headers
self.session.headers.update({
'User-Agent': 'SecureClient/1.0',
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-Content-Type-Options': 'nosniff',
'X-Frame-Options': 'DENY',
'X-XSS-Protection': '1; mode=block'
})
def _validate_certificate_pinning(self, hostname: str, cert_der: bytes) -> bool:
"""Validate certificate pinning if configured."""
if hostname not in self.cert_pinning:
return True
# Calculate SHA256 fingerprint
cert_hash = hashlib.sha256(cert_der).hexdigest()
expected_hash = self.cert_pinning[hostname]
return cert_hash == expected_hash
def _make_secure_request(self, method: str, url: str, **kwargs) -> requests.Response:
"""Make a secure HTTP request with proper error handling."""
# Set secure timeouts
kwargs.setdefault('timeout', (10, 30)) # (connect, read)
# Ensure HTTPS for sensitive operations
if not url.startswith('https://') and self.verify_ssl:
raise ValueError("HTTPS required for secure communication")
try:
response = self.session.request(method, url, **kwargs)
# Validate response headers for security
self._validate_response_security(response)
# Check for successful status codes
response.raise_for_status()
return response
except requests.exceptions.SSLError as e:
raise ConnectionError(f"SSL verification failed: {e}")
except requests.exceptions.Timeout as e:
raise TimeoutError(f"Request timed out: {e}")
except requests.exceptions.ConnectionError as e:
raise ConnectionError(f"Connection failed: {e}")
def _validate_response_security(self, response: requests.Response) -> None:
"""Validate response headers for security."""
# Check for security headers
security_headers = [
'strict-transport-security',
'x-content-type-options',
'x-frame-options'
]
missing_headers = []
for header in security_headers:
if header not in response.headers:
missing_headers.append(header)
if missing_headers:
warnings.warn(f"Missing security headers: {missing_headers}")
def secure_get(self, url: str, params: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure GET request."""
return self._make_secure_request('GET', url, params=params, **kwargs)
def secure_post(self, url: str, data: Optional[Dict] = None, json_data: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure POST request."""
if json_data:
kwargs['json'] = json_data
elif data:
kwargs['data'] = data
return self._make_secure_request('POST', url, **kwargs)
def secure_put(self, url: str, data: Optional[Dict] = None, json_data: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure PUT request."""
if json_data:
kwargs['json'] = json_data
elif data:
kwargs['data'] = data
return self._make_secure_request('PUT', url, **kwargs)
def secure_delete(self, url: str, **kwargs) -> requests.Response:
"""Make a secure DELETE request."""
return self._make_secure_request('DELETE', url, **kwargs)
# What we accomplished in this step:
# - Added secure HTTP methods (GET, POST, PUT, DELETE)
# - Implemented proper timeout handling
# - Added security header validation
# - Enhanced error handling for network issues
# Step 3: Implement JWT token authentication
# ===============================================================================
# Explanation:
# JWT (JSON Web Tokens) provide a secure way to transmit information between parties.
# We'll implement token generation, validation, and refresh mechanisms.
import ssl
import socket
import requests
import urllib3
from urllib3.util import connection
import certifi
import hashlib
import hmac
import base64
import json
import time
from typing import Dict, Optional, Any, Union
from datetime import datetime, timedelta
import warnings
# Disable insecure request warnings for demonstration
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
class SecureHTTPClient:
"""Secure HTTP client with certificate validation and security headers."""
def __init__(self, verify_ssl: bool = True, cert_pinning: Optional[Dict[str, str]] = None):
self.verify_ssl = verify_ssl
self.cert_pinning = cert_pinning or {}
self.session = requests.Session()
# Configure secure defaults
self.session.verify = verify_ssl
if verify_ssl:
self.session.verify = certifi.where()
# Set security headers
self.session.headers.update({
'User-Agent': 'SecureClient/1.0',
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-Content-Type-Options': 'nosniff',
'X-Frame-Options': 'DENY',
'X-XSS-Protection': '1; mode=block'
})
def _validate_certificate_pinning(self, hostname: str, cert_der: bytes) -> bool:
"""Validate certificate pinning if configured."""
if hostname not in self.cert_pinning:
return True
# Calculate SHA256 fingerprint
cert_hash = hashlib.sha256(cert_der).hexdigest()
expected_hash = self.cert_pinning[hostname]
return cert_hash == expected_hash
def _make_secure_request(self, method: str, url: str, **kwargs) -> requests.Response:
"""Make a secure HTTP request with proper error handling."""
# Set secure timeouts
kwargs.setdefault('timeout', (10, 30)) # (connect, read)
# Ensure HTTPS for sensitive operations
if not url.startswith('https://') and self.verify_ssl:
raise ValueError("HTTPS required for secure communication")
try:
response = self.session.request(method, url, **kwargs)
# Validate response headers for security
self._validate_response_security(response)
# Check for successful status codes
response.raise_for_status()
return response
except requests.exceptions.SSLError as e:
raise ConnectionError(f"SSL verification failed: {e}")
except requests.exceptions.Timeout as e:
raise TimeoutError(f"Request timed out: {e}")
except requests.exceptions.ConnectionError as e:
raise ConnectionError(f"Connection failed: {e}")
def _validate_response_security(self, response: requests.Response) -> None:
"""Validate response headers for security."""
# Check for security headers
security_headers = [
'strict-transport-security',
'x-content-type-options',
'x-frame-options'
]
missing_headers = []
for header in security_headers:
if header not in response.headers:
missing_headers.append(header)
if missing_headers:
warnings.warn(f"Missing security headers: {missing_headers}")
def secure_get(self, url: str, params: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure GET request."""
return self._make_secure_request('GET', url, params=params, **kwargs)
def secure_post(self, url: str, data: Optional[Dict] = None, json_data: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure POST request."""
if json_data:
kwargs['json'] = json_data
elif data:
kwargs['data'] = data
return self._make_secure_request('POST', url, **kwargs)
def secure_put(self, url: str, data: Optional[Dict] = None, json_data: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure PUT request."""
if json_data:
kwargs['json'] = json_data
elif data:
kwargs['data'] = data
return self._make_secure_request('PUT', url, **kwargs)
def secure_delete(self, url: str, **kwargs) -> requests.Response:
"""Make a secure DELETE request."""
return self._make_secure_request('DELETE', url, **kwargs)
class JWTAuthenticator:
"""JWT token authenticator with secure token management."""
def __init__(self, secret_key: str, algorithm: str = 'HS256'):
self.secret_key = secret_key.encode('utf-8')
self.algorithm = algorithm
# Validate secret key strength
if len(secret_key) < 32:
warnings.warn("Secret key should be at least 32 characters for security")
def _base64url_encode(self, data: bytes) -> str:
"""Base64URL encode data."""
return base64.urlsafe_b64encode(data).decode('utf-8').rstrip('=')
def _base64url_decode(self, data: str) -> bytes:
"""Base64URL decode data."""
# Add padding if necessary
padding = 4 - len(data) % 4
if padding != 4:
data += '=' * padding
return base64.urlsafe_b64decode(data)
def _create_signature(self, header_payload: str) -> str:
"""Create HMAC signature for JWT."""
signature = hmac.new(
self.secret_key,
header_payload.encode('utf-8'),
hashlib.sha256
).digest()
return self._base64url_encode(signature)
def generate_token(self, payload: Dict[str, Any], expires_in: int = 3600) -> str:
"""Generate a JWT token with expiration."""
# Create header
header = {
'typ': 'JWT',
'alg': self.algorithm
}
# Add standard claims to payload
now = int(time.time())
payload.update({
'iat': now, # issued at
'exp': now + expires_in, # expiration
'nbf': now # not before
})
# Encode header and payload
header_encoded = self._base64url_encode(json.dumps(header).encode('utf-8'))
payload_encoded = self._base64url_encode(json.dumps(payload).encode('utf-8'))
# Create signature
header_payload = f"{header_encoded}.{payload_encoded}"
signature = self._create_signature(header_payload)
return f"{header_payload}.{signature}"
def validate_token(self, token: str) -> Optional[Dict[str, Any]]:
"""Validate and decode a JWT token."""
try:
# Split token into parts
parts = token.split('.')
if len(parts) != 3:
return None
header_encoded, payload_encoded, signature_encoded = parts
# Verify signature
header_payload = f"{header_encoded}.{payload_encoded}"
expected_signature = self._create_signature(header_payload)
if not hmac.compare_digest(signature_encoded, expected_signature):
return None
# Decode payload
payload_json = self._base64url_decode(payload_encoded)
payload = json.loads(payload_json)
# Check expiration
now = int(time.time())
if payload.get('exp', 0) < now:
return None
# Check not before
if payload.get('nbf', 0) > now:
return None
return payload
except (ValueError, json.JSONDecodeError, KeyError):
return None
def refresh_token(self, token: str, new_expires_in: int = 3600) -> Optional[str]:
"""Refresh an existing token with new expiration."""
payload = self.validate_token(token)
if not payload:
return None
# Remove old timing claims
payload.pop('iat', None)
payload.pop('exp', None)
payload.pop('nbf', None)
return self.generate_token(payload, new_expires_in)
# What we accomplished in this step:
# - Implemented JWT token generation with secure signatures
# - Added token validation with expiration checks
# - Created token refresh mechanism
# - Used HMAC for secure signature verification
# Step 4: Create message encryption and digital signature utilities
# ===============================================================================
# Explanation:
# For end-to-end encryption, we need utilities to encrypt/decrypt messages
# and create/verify digital signatures for message integrity.
import ssl
import socket
import requests
import urllib3
from urllib3.util import connection
import certifi
import hashlib
import hmac
import base64
import json
import time
from typing import Dict, Optional, Any, Union
from datetime import datetime, timedelta
import warnings
import os
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import rsa, padding
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
# Disable insecure request warnings for demonstration
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
class SecureHTTPClient:
"""Secure HTTP client with certificate validation and security headers."""
def __init__(self, verify_ssl: bool = True, cert_pinning: Optional[Dict[str, str]] = None):
self.verify_ssl = verify_ssl
self.cert_pinning = cert_pinning or {}
self.session = requests.Session()
# Configure secure defaults
self.session.verify = verify_ssl
if verify_ssl:
self.session.verify = certifi.where()
# Set security headers
self.session.headers.update({
'User-Agent': 'SecureClient/1.0',
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-Content-Type-Options': 'nosniff',
'X-Frame-Options': 'DENY',
'X-XSS-Protection': '1; mode=block'
})
def _validate_certificate_pinning(self, hostname: str, cert_der: bytes) -> bool:
"""Validate certificate pinning if configured."""
if hostname not in self.cert_pinning:
return True
# Calculate SHA256 fingerprint
cert_hash = hashlib.sha256(cert_der).hexdigest()
expected_hash = self.cert_pinning[hostname]
return cert_hash == expected_hash
def _make_secure_request(self, method: str, url: str, **kwargs) -> requests.Response:
"""Make a secure HTTP request with proper error handling."""
# Set secure timeouts
kwargs.setdefault('timeout', (10, 30)) # (connect, read)
# Ensure HTTPS for sensitive operations
if not url.startswith('https://') and self.verify_ssl:
raise ValueError("HTTPS required for secure communication")
try:
response = self.session.request(method, url, **kwargs)
# Validate response headers for security
self._validate_response_security(response)
# Check for successful status codes
response.raise_for_status()
return response
except requests.exceptions.SSLError as e:
raise ConnectionError(f"SSL verification failed: {e}")
except requests.exceptions.Timeout as e:
raise TimeoutError(f"Request timed out: {e}")
except requests.exceptions.ConnectionError as e:
raise ConnectionError(f"Connection failed: {e}")
def _validate_response_security(self, response: requests.Response) -> None:
"""Validate response headers for security."""
# Check for security headers
security_headers = [
'strict-transport-security',
'x-content-type-options',
'x-frame-options'
]
missing_headers = []
for header in security_headers:
if header not in response.headers:
missing_headers.append(header)
if missing_headers:
warnings.warn(f"Missing security headers: {missing_headers}")
def secure_get(self, url: str, params: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure GET request."""
return self._make_secure_request('GET', url, params=params, **kwargs)
def secure_post(self, url: str, data: Optional[Dict] = None, json_data: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure POST request."""
if json_data:
kwargs['json'] = json_data
elif data:
kwargs['data'] = data
return self._make_secure_request('POST', url, **kwargs)
def secure_put(self, url: str, data: Optional[Dict] = None, json_data: Optional[Dict] = None, **kwargs) -> requests.Response:
"""Make a secure PUT request."""
if json_data:
kwargs['json'] = json_data
elif data:
kwargs['data'] = data
return self._make_secure_request('PUT', url, **kwargs)
def secure_delete(self, url: str, **kwargs) -> requests.Response:
"""Make a secure DELETE request."""
return self._make_secure_request('DELETE', url, **kwargs)
class JWTAuthenticator:
"""JWT token authenticator with secure token management."""
def __init__(self, secret_key: str, algorithm: str = 'HS256'):
self.secret_key = secret_key.encode('utf-8')
self.algorithm = algorithm
# Validate secret key strength
if len(secret_key) < 32:
warnings.warn("Secret key should be at least 32 characters for security")
def _base64url_encode(self, data: bytes) -> str:
"""Base64URL encode data."""
return base64.urlsafe_b64encode(data).decode('utf-8').rstrip('=')
def _base64url_decode(self, data: str) -> bytes:
"""Base64URL decode data."""
# Add padding if necessary
padding = 4 - len(data) % 4
if padding != 4:
data += '=' * padding
return base64.urlsafe_b64decode(data)
def _create_signature(self, header_payload: str) -> str:
"""Create HMAC signature for JWT."""
signature = hmac.new(
self.secret_key,
header_payload.encode('utf-8'),
hashlib.sha256
).digest()
return self._base64url_encode(signature)
def generate_token(self, payload: Dict[str, Any], expires_in: int = 3600) -> str:
"""Generate a JWT token with expiration."""
# Create header
header = {
'typ': 'JWT',
'alg': self.algorithm
}
# Add standard claims to payload
now = int(time.time())
payload.update({
'iat': now, # issued at
'exp': now + expires_in, # expiration
'nbf': now # not before
})
# Encode header and payload
header_encoded = self._base64url_encode(json.dumps(header).encode('utf-8'))
payload_encoded = self._base64url_encode(json.dumps(payload).encode('utf-8'))
# Create signature
header_payload = f"{header_encoded}.{payload_encoded}"
signature = self._create_signature(header_payload)
return f"{header_payload}.{signature}"
def validate_token(self, token: str) -> Optional[Dict[str, Any]]:
"""Validate and decode a JWT token."""
try:
# Split token into parts
parts = token.split('.')
if len(parts) != 3:
return None
header_encoded, payload_encoded, signature_encoded = parts
# Verify signature
header_payload = f"{header_encoded}.{payload_encoded}"
expected_signature = self._create_signature(header_payload)
if not hmac.compare_digest(signature_encoded, expected_signature):
return None
# Decode payload
payload_json = self._base64url_decode(payload_encoded)
payload = json.loads(payload_json)
# Check expiration
now = int(time.time())
if payload.get('exp', 0) < now:
return None
# Check not before
if payload.get('nbf', 0) > now:
return None
return payload
except (ValueError, json.JSONDecodeError, KeyError):
return None
def refresh_token(self, token: str, new_expires_in: int = 3600) -> Optional[str]:
"""Refresh an existing token with new expiration."""
payload = self.validate_token(token)
if not payload:
return None
# Remove old timing claims
payload.pop('iat', None)
payload.pop('exp', None)
payload.pop('nbf', None)
return self.generate_token(payload, new_expires_in)
class MessageEncryption:
"""Utilities for message encryption and digital signatures."""
def __init__(self):
# Generate RSA key pair for asymmetric encryption
self.private_key = rsa.generate_private_key(
public_exponent=65537,
key_size=2048
)
self.public_key = self.private_key.public_key()
def derive_key_from_password(self, password: str, salt: bytes) -> bytes:
"""Derive encryption key from password using PBKDF2."""
kdf = PBKDF2HMAC(
algorithm=hashes.SHA256(),
length=32,
salt=salt,
iterations=100000,
)
return kdf.derive(password.encode('utf-8'))
def encrypt_message_symmetric(self, message: str, password: str) -> Dict[str, str]:
"""Encrypt message using symmetric encryption (AES)."""
# Generate random salt and IV
salt = os.urandom(16)
iv = os.urandom(16)
# Derive key from password
key = self.derive_key_from_password(password, salt)
# Encrypt message
cipher = Cipher(algorithms.AES(key), modes.CBC(iv))
encryptor = cipher.encryptor()
# Pad message to block size
message_bytes = message.encode('utf-8')
padding_length = 16 - (len(message_bytes) % 16)
padded_message = message_bytes + bytes([padding_length] * padding_length)
encrypted_data = encryptor.update(padded_message) + encryptor.finalize()
return {
'encrypted_data': base64.b64encode(encrypted_data).decode('utf-8'),
'salt': base64.b64encode(salt).decode('utf-8'),
'iv': base64.b64encode(iv).decode('utf-8')
}
def decrypt_message_symmetric(self, encrypted_data: Dict[str, str], password: str) -> Optional[str]:
"""Decrypt message using symmetric encryption (AES)."""
try:
# Decode components
encrypted_bytes = base64.b64decode(encrypted_data['encrypted_data'])
salt = base64.b64decode(encrypted_data['salt'])
iv = base64.b64decode(encrypted_data['iv'])
# Derive key from password
key = self.derive_key_from_password(password, salt)
# Decrypt message
cipher = Cipher(algorithms.AES(key), modes.CBC(iv))
decryptor = cipher.decryptor()
decrypted_padded = decryptor.update(encrypted_bytes) + decryptor.finalize()
# Remove padding
padding_length = decrypted_padded[-1]
decrypted_message = decrypted_padded[:-padding_length]
return decrypted_message.decode('utf-8')
except Exception:
return None
def encrypt_message_asymmetric(self, message: str, public_key_pem: Optional[bytes] = None) -> str:
"""Encrypt message using asymmetric encryption (RSA)."""
# Use provided public key or default
pub_key = public_key_pem or self.public_key
if isinstance(pub_key, bytes):
pub_key = serialization.load_pem_public_key(pub_key)
message_bytes = message.encode('utf-8')
# RSA can only encrypt small messages, so we use hybrid encryption
# Generate AES key for actual encryption
aes_key = os.urandom(32)
iv = os.urandom(16)
# Encrypt message with AES
cipher = Cipher(algorithms.AES(aes_key), modes.CBC(iv))
encryptor = cipher.encryptor()
# Pad message
padding_length = 16 - (len(message_bytes) % 16)
padded_message = message_bytes + bytes([padding_length] * padding_length)
encrypted_message = encryptor.update(padded_message) + encryptor.finalize()
# Encrypt AES key with RSA
encrypted_key = pub_key.encrypt(
aes_key,
padding.OAEP(
mgf=padding.MGF1(algorithm=hashes.SHA256()),
algorithm=hashes.SHA256(),
label=None
)
)
# Combine encrypted key, IV, and encrypted message
result = {
'encrypted_key': base64.b64encode(encrypted_key).decode('utf-8'),
'iv': base64.b64encode(iv).decode('utf-8'),
'encrypted_message': base64.b64encode(encrypted_message).decode('utf-8')
}
return base64.b64encode(json.dumps(result).encode('utf-8')).decode('utf-8')
def decrypt_message_asymmetric(self, encrypted_data: str) -> Optional[str]:
"""Decrypt message using asymmetric encryption (RSA)."""
try:
# Decode and parse encrypted data
data_json = base64.b64decode(encrypted_data).decode('utf-8')
data = json.loads(data_json)
encrypted_key = base64.b64decode(data['encrypted_key'])
iv = base64.b64decode(data['iv'])
encrypted_message = base64.b64decode(data['encrypted_message'])
# Decrypt AES key with RSA
aes_key = self.private_key.decrypt(
encrypted_key,
padding.OAEP(
mgf=padding.MGF1(algorithm=hashes.SHA256()),
algorithm=hashes.SHA256(),
label=None
)
)
# Decrypt message with AES
cipher = Cipher(algorithms.AES(aes_key), modes.CBC(iv))
decryptor = cipher.decryptor()
decrypted_padded = decryptor.update(encrypted_message) + decryptor.finalize()
# Remove padding
padding_length = decrypted_padded[-1]
decrypted_message = decrypted_padded[:-padding_length]
return decrypted_message.decode('utf-8')
except Exception:
return None
def sign_message(self, message: str) -> str:
"""Create digital signature for message."""
message_bytes = message.encode('utf-8')
signature = self.private_key.sign(
message_bytes,
padding.PSS(
mgf=padding.MGF1(hashes.SHA256()),
salt_length=padding.PSS.MAX_LENGTH
),
hashes.SHA256()
)
return base64.b64encode(signature).decode('utf-8')
def verify_signature(self, message: str, signature: str, public_key_pem: Optional[bytes] = None) -> bool:
"""Verify digital signature for message."""
try:
# Use provided public key or default
pub_key = public_key_pem or self.public_key
if isinstance(pub_key, bytes):
pub_key = serialization.load_pem_public_key(pub_key)
message_bytes = message.encode('utf-8')
signature_bytes = base64.b64decode(signature)
pub_key.verify(
signature_bytes,
message_bytes,
padding.PSS(
mgf=padding.MGF1(hashes.SHA256()),
salt_length=padding.PSS.MAX_LENGTH
),
hashes.SHA256()
)
return True
except Exception:
return False
def get_public_key_pem(self) -> bytes:
"""Get public key in PEM format for sharing."""
return self.public_key.public_bytes(
encoding=serialization.Encoding.PEM,
format=serialization.PublicFormat.SubjectPublicKeyInfo
)
# What we accomplished in this step:
# - Implemented symmetric encryption using AES with password-based key derivation
# - Added asymmetric encryption using RSA with hybrid encryption approach
# - Created digital signature functionality for message integrity
# - Used secure padding and proper key management practices