Is this code capable of generating Cryptographically Secure Pseudo-Random Number Generator
Is this code capable of generating Cryptographically Secure Pseudo-Random Number Generator Question: I have a piece of code which generates a string of length 50 to 100 with random characters the code is : CharLIST = list(‘abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890’) def NEW(id_len): _id = ” while len(_id) < id_len: _id += random.choice(CharLIST) return _id NEW(random.randint(50, 100)) I expect …