vote up 2 vote down star
1

How can I generate a random hexadecimal number with a length of my choice using C#?

flag

3 Answers

vote up 8 vote down check
static Random random = new Random();
public static string GetRandomHexNumber(int digits)
{
    byte[] buffer = new byte[digits / 2];
    random.NextBytes(buffer);
    string result = String.Concat(buffer.Select(x => x.ToString("X2")).ToArray());
    if (digits % 2 == 0)
        return result;
    return result + random.Next(16).ToString("X");
}
link|flag
vote up 2 vote down

Depends on how random you want it, but here are 3 alternatives: 1) I usually just use Guid.NewGuid and pick a portion of it (dep. on how large number I want).

2) System.Random (see other replies) is good if you just want 'random enough'.

3) System.Security.Cryptography.RNGCryptoServiceProvider

link|flag
Slicing up a GUID seems like a real bad idea to me. They're only unique taken as a whole. Many bits of a GUID certainly don't qualify as random. – spender Jun 28 at 2:49
@spender is correct, for instance many GUIDs contain the MAC address of the PC generating them. – EHaskins Jun 28 at 4:48
Eh, no, the mac-address based guids were retired back in 2000-ish as they were considered a potential security issue. GUIDs are now generated by a random number generator (122 bits random, 6 bits non-random). Either way, using a 32 (or more) bit slice of a guid gives a more random number than System.Random. That is - unless you call UuidCreateSequential which was added for backwards compatibility in case anyone want old style guids, but that is a different story. – KristoferA Jun 28 at 8:41
Mora random than Random? – spender Jun 28 at 11:37
1  
Yes. See the documentation for System.Random at msdn.microsoft.com/en-us/library/… – KristoferA Jun 28 at 12:39
show 1 more comment
vote up 3 vote down
    Random random = new Random();
    int num = random.Next();
    string hexString = num.ToString("X");

random.Next() takes arguments that let you specify a min and a max value, so that's how you would control the length.

link|flag
It'll work only if length <= 8 as int.MaxValue fits in 8 hex digits. – Mehrdad Afshari Jun 28 at 3:00
If he really does want the hex string to be of a length of his choice, you will need code that calculates the minimum number with hex length 'x' and maximum with length 'x'. – colithium Jun 28 at 3:00
Yep. I left that out on purpose, but you would basically just have to do a conversion on 0xF? ('scuse my regular expression) to find whatever integer matched your desired length. – womp Jun 28 at 4:03

Your Answer

Get an OpenID
or

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