I'm developing a password generator, which will run on a webpage.
I'm using the build in features of .net's Random()
; function in to generate random numbers. They are then used to pick different upper/lower-case characters and numbers from a string.
What I'm wondering is, how secure is it to use Random()
; function to generate passwords. Note that these passwords expire after 2min, and the page will only allow to generate 3 times per IP adress.