Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to generate a password using numbers ,punctuation and alphabets(both lowercase and uppercase).how can i randomly generate this?

share|improve this question
2  
what have you tried? – Mitch Wheat May 18 '12 at 11:09
i didnt try.i dont know – user1395474 May 18 '12 at 11:13
1  
I have to say, though this is a bad example of a question, I disagree with the close votes, it's not difficult to determine what's being asked, it's just the question is lazy. – James Webster May 18 '12 at 11:25
@JamesWebster: I agree with you.. – Maulik May 18 '12 at 11:47

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.

3 Answers

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 len(str) (exclusive) and use that to index into str to get a character.

Something like (pseudo-code):

str = "abc...xyzABC...XYZ0...9,.="
len = rnd(7) + 8                     // rnd(n) gives 0 thru n-1
pwd = ""
while len > 0:
    pwd = pwd + str[rnd(len(str))]
    len = len - 1

That'll basically give you a password of the desired length, made up from the desired characters.

share|improve this answer

Since you tagged iPhone, I did this in objective c.

NSString *string = @"";

for (int i = 0; i < (arc4random() % 6) + 6; i++)
{
    UniChar c = (arc4random() % 89) + 33; //Random char between ! and z
    string = [string stringByAppendingString:[NSString stringWithCharacters:&c length:1]];
}
NSLog(@"String:%@", string);
  • I've assumed ascii.
  • I've assumed password length between 6 and 12.
  • I didn't put much effort into my answer since you didn't put much effort into your question. You should show what you have tried
share|improve this answer

use arc4random() for numbers and use arc4random_stir()

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.