-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamic_hash_model
More file actions
50 lines (31 loc) · 1.66 KB
/
dynamic_hash_model
File metadata and controls
50 lines (31 loc) · 1.66 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
# ***An open-source, simplified prototype of a dynamic hashing system that generates random hash codes that continuously change in real time.
#import modeles
import time
from time import strftime
import hashlib
while True:
#Special key open
special_key_open= "0123456789"
#Special key closed
Special_key_closed= "9876543210"
#special datetime key
spacial_datetime_key=strftime("%y%m%d%H%M%S")
#Special_key_open + Special_key_closed + dt_string
msk_dts = special_key_open + Special_key_closed + spacial_datetime_key
#encoding mmsk_dts using encode()
result_msk_dts = hashlib.sha512(msk_dts.encode())
#print(result.hexdigest())
print (result_msk_dts.hexdigest(), end="", flush=True)
print("\r", end="", flush=True)
# *** Thanks to the reviewer ****
#https://stackoverflow.com/questions/37515587/run-a-basic-digital-clock-in-the-python-shell
#import models
#https://www.programiz.com/python-programming/datetime/current-datetime
#https://www.geeksforgeeks.org/sha-in-python/
#https://replit.com/@JamalMubaraky/ABSHERTHONE2#main.py
# ***Special thanks to the dedicated team behind the main project of the Real-Time Dynamic Encryption System, participating in absherthon 2024..***
# ▪︎ Sara Al-Quwaifel - Information Systems student and Telegram group manager for the team @ixszi9
# ▪︎ Fatima Al-Omari - Cybersecurity student @fatimahlo
# ▪︎ Ibrahim Al-Qahtani - Public Relations graduate and creative thinker @hhshshdb
# ▪︎ Mohammad Adam - Specialist in encryption and mathematical modeling @Haloualmathaq
# ▪︎ Jamal Mubarky - Enthusiast of programming challenges and innovative solutions @mrjamalmubaraky