I want to generate a password using numbers ,punctuation and alphabets(both lowercase and uppercase).how can i randomly generate this?
|
closed as not a real question by Wooble, Mitch Wheat, Cody Gray, ataylor, bažmegakapa May 18 '12 at 20:09
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Language-agnostic version, for translation into any language you desire: Simply create a string which contains the legal characters for a password. Then generate a random number between (depending on your length requirements) eight and fourteen. Then generate that many random numbers between 0 (inclusive) and Something like (pseudo-code):
That'll basically give you a password of the desired length, made up from the desired characters. |
|||
|
|
|
Since you tagged iPhone, I did this in objective c.
|
||||
|
|