How can i generate strong Random Password in c#? Strong means length>=9, including special character... | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 4

How can i generate strong Random Password in c#? Strong means length>=9, including special character...

Random password generator

22nd May 2019, 11:56 AM
Ytbarek Gebre
Ytbarek Gebre - avatar
3 Antworten
+ 3
Create one char after another by creating and %ing a randomly generated int. Make sure that each value is in the writable area of ASCII. You might want to exclude tricky letters like \ or `.
22nd May 2019, 12:12 PM
HonFu
HonFu - avatar
+ 1
I already did it in c, maybe you should see the last code that i made.
22nd May 2019, 12:39 PM
Werg Serium
Werg Serium - avatar
0
Ytbarek Gebre You can take help from this java program https://code.sololearn.com/cjlfm3T96hzQ/?ref=app
31st Dec 2021, 5:05 AM
A͢J
A͢J - avatar