MIT-Curricular/IS/Lab/Lab5/hashbench.py
2025-09-02 10:17:40 +05:30

10 lines
132 B
Python

import hashlib
def ds_gen(dsize):
def main():
dsize = int(input("Enter data size: "))
if __name__ == '__main__':
main()