Generate A Random Key In Nodejs

Jun 19, 2017 Creating a project generator with Node. NodeJS; JavaScript (including ES6 arrow functions and Promises). Where the key “generate” is the command we want to be able to run from the.

How would it be possible to generate a random, unique string using numbers and letters for use in a verify link? Like when you create an account on a website, and it sends you an email with a link, and you have to click that link in order to verify your account…yeah…one of those.

How can I generate one of those using PHP?

(Node.js) How to Generate a JSON Web Key (JWK) Demonstrates how to generate the following types of JSON Web Keys: RSA key pair EC key pair Octet sequence key (HMAC-256) 192-bit AES GCM key Note: This example requires Chilkat v9.5.0.66 or later. // A secret key has no structure. It's nothing more than N bytes of data. // It should typically be random data, or bytes that resemble random data such // as the hash of a password. // The number of bytes in the secret key defines the bit-strength of an encryption // algorithm. For example, AES with a 32-byte key is 256-bit AES. Feb 05, 2016 Learn how to Create Random Values using Crypto Module in NodeJS. Learn how to Create Random Values using Crypto Module in NodeJS. Skip navigation. How to generate random numbers in.

Update: Just remembered about uniqid(). It’s a PHP function that generates a unique identifier based on the current time in microseconds. I think I’ll use that.

Answers:

Security Notice: This solution should not be used in situations where the quality of your randomness can affect the security of an application. In particular, rand() and uniqid() are not cryptographically secure random number generators. See Scott’s answer for a secure alternative.

If you do not need it to be absolutely unique over time:

md5(uniqid(rand(), true))

Otherwise (given you have already determined a unique login for your user):

Answers:

I was just looking into how to solve this same problem, but I also want my function to create a token that can be used for password retrieval as well. This means that I need to limit the ability of the token to be guessed. Because uniqid is based on the time, and according to php.net “the return value is little different from microtime()”, uniqid does not meet the criteria. PHP recommends using openssl_random_pseudo_bytes() instead to generate cryptographically secure tokens.

A quick, short and to the point answer is:

which will generate a random string of alphanumeric characters of length = $bytes * 2. Unfortunately this only has an alphabet of [a-f][0-9], but it works.

Below is the strongest function I could make that satisfies the criteria (This is an implemented version of Erik’s answer).

crypto_rand_secure($min, $max) works as a drop in replacement for rand() or mt_rand. It uses openssl_random_pseudo_bytes to help create a random number between $min and $max.

getToken($length) creates an alphabet to use within the token and then creates a string of length $length.

EDIT: I neglected to cite source – http://us1.php.net/manual/en/function.openssl-random-pseudo-bytes.php#104322

EDIT (PHP7): With the release of PHP7, the standard library now has two new functions that can replace/improve/simplify the crypto_rand_secure function above. random_bytes($length) and random_int($min, $max)

Example:

Answers:

I’ve created an object-oriented solution based on Scott‘s answer:

Usage

Custom alphabet

You can use custom alphabet if required.
Just pass a string with supported chars to the constructor or setter:

Here’s the output samples

I hope it will help someone. Cheers!

Answers:

This function will generate a random key using numbers and letters:

Example output:

Answers:

You can use UUID(Universally Unique Identifier), it can be used for any purpose, from user authentication string to payment transaction id.

A UUID is a 16-octet (128-bit) number. In its canonical form, a UUID is represented by 32 hexadecimal digits, displayed in five groups separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters (32 alphanumeric characters and four hyphens).

//calling funtion

some example outputs will be like:

hope it helps someone in future 🙂

Answers:

I use this one-liner:

where length is the length of the desired string (divisible by 4, otherwise it gets rounded down to the nearest number divisible by 4)

Answers:

I’m late but I’m here with some good research data based on the functions provided by Scott’s answer. So I set up a Digital Ocean droplet just for this 5-day long automated test and stored the generated unique strings in a MySQL database.

During this test period, I used 5 different lengths (5, 10, 15, 20, 50) and +/-0.5 million records were inserted for each length. During my test, only the length 5 generated +/-3K duplicates out of 0.5 million and the remaining lengths didn’t generate any duplicates. So we can say that if we use a length of 15 or above with Scott’s functions, then we can generate highly reliable unique strings. Here is the table showing my research data:

I hope this helps.

Answers:
  1. Generate a random number using
    your favourite random-number
    generator
  2. Multiply and divide it
    to get a number matching the number
    of characters in your code alphabet
  3. Get the item at that index in
    your code alphabet.
  4. Repeat from 1) until you have the length you
    want

e.g (in pseudo code)

Answers:

Here is ultimate unique id generator for you. made by me.

you can echo any ‘var’ for your id as you like. but $mdun is better, you can replace md5 to sha1 for better code but that will be very long which may you dont need.

Thank you.

Answers:

Use below code to generate the random number of 11 characters or change the number as per your requirement.

IGN's Monster Hunter Generations Ultimate Wiki and strategy guide includes Pages of needed key quests to advance through the Single Player content and IGN Logo Open Menu. Ign key quests generation ultimate double. Aug 28, 2018  Monster Hunter Generations Ultimate easily features hundreds of different quests. But not every single one is necessary to progress the main story. Key Quests are missions that if followed, lead to Urgent Quests, which in turn open up the next tier of missions. Sep 01, 2018  Village Key Quests. Below is a walkthrough of the Village Quests which are the Low Rank portion of Monster Hunter Generations Ultimate single player portion. This is a list of Guild Key Quests in Monster Hunter Generations Ultimate (and Generations) that need to be completed to unlock higher star quests and Hunter Rank. These are also known as Guild Quests and Multiplayer Quests. You don't have to complete every quest in the game to unlock the next rank.

Answers:
Questions:

Here is what I use:

Answers:

I like to use hash keys when dealing verification links. I would recommend using the microtime and hashing that using MD5 since there should be no reason why the keys should be the same since it hashes based off of the microtime.

  1. $key = md5(rand());
  2. $key = md5(microtime());
Answers:

Scott, yes you are very write and good solution! Thanks.

I am also required to generate unique API token for my each user. Following is my approach, i used user information (Userid and Username):

Please have a look and let me know if any improvement i can do. Thanks

Answers:

after reading previous examples I came up with this:

I duplicate 10 times the array[0-9,A-Z] and shuffle the elements, after I get a random start point for substr() to be more ‘creative’ 🙂
you can add [a-z] and other elements to array, duplicate more or less, be more creative than me

Answers:
Questions:

above function will generate you a random string which is length of 11 characters.

Answers:

I believe the problem with all the existing ideas is that they are probably unique, but not definitely unique (as pointed out in Dariusz Walczak’s reply to loletech). I have a solution that actually is unique. It requires that your script have some sort of memory. For me this is a SQL database. You could also simply write to a file somewhere. There are two implementations:

First method: have TWO fields rather than 1 that provide uniqueness. The first field is an ID number that is not random but is unique (The first ID is 1, the second 2…). If you are using SQL, just define the ID field with the AUTO_INCREMENT property. The second field is not unique but is random. This can be generated with any of the other techniques people have already mentioned. Scott’s idea was good, but md5 is convenient and probably good enough for most purposes:

Free huuuge casino games. Use Our Huuuge Casino Hack Generator and you will receive an unlimited number of Chips in your game account for free,without download or install any fake software!Enjoy using our Huuuge Casino Cheat Online Generator! Mar 18, 2019  It will let you experience the fun, entertainment, socializing, amazing slot and casino games that can be played with people from all around the world. Huuuge Casino Hack Tool 2019: Make your intense and action-based game more thrilling with the Huuuge casino hack tool and play with full entertainment while generating all the premium resources.

Second method: Basically the same idea, but initially pick a maximum number of strings that will ever be generated. This could just be a really big number like a trillion. Then do the same thing, generate an ID, but zero pad it so that all IDs are the same number of digits. Then just concatenate the ID with the random string. It will be random enough for most purposes, but the ID section will ensure that it is also unique.

Answers:

Here is what I’m using on one of my projects, it’s working great and it generates a UNIQUE RANDOM TOKEN:

Please note that I multiplied the timestamp by three to create a confusion for whoever user might be wondering how this token is generated 😉

I hope it helps 🙂

Answers:

You can use this code,
I hope it will be helpful for you.

Details about Random code generator in PHP

Generate A Random Key In Node Js Code

Answers:

Simplifying Scotts code above by removing unnecessary loops which is slowing down badly and does not make it any more secure than calling openssl_random_pseudo_bytes just once

Node Js Random Number Generator

Tags: dom, phpphp, random, string