Do you still need to use Randomize if you are using RandRange with an algorithm? For example:
RandRange(1, 37, "SHA1PRNG")
Adobe documentation says:
SHA1PRNG: Generates a number using the Sun Java SHA1PRNG algorithm. This algorithm provides more randomness than the default algorithm.
It would be nice if there was one function providing the highest possible randomized sequence. The example provided by Adobe uses both Randomize and RandRange.
Any clarification would be appreciated.
Additional Information:
In this context, I select random characters from a list of about 40 to highlight a 7-character password. I would like to avoid duplicates, although there are separate (though not necessarily unique) usernames. Nothing financial or confidential is at stake - you just need to identify the users of the educational website.
coldfusion algorithm random
David eno
source share