started lab5

This commit is contained in:
Student 2025-09-02 10:17:40 +05:30
parent 60ebd2b53c
commit f4f4b53f24
4 changed files with 41 additions and 0 deletions

10
IS/Lab/Lab5/hashbench.py Normal file
View file

@ -0,0 +1,10 @@
import hashlib
def ds_gen(dsize):
def main():
dsize = int(input("Enter data size: "))
if __name__ == '__main__':
main()