Should I use a cryptograpically secure random number generator when I generate IDs?
It is common to generate random identifiers to expose through an API instead of using a simple auto incrementing primary key. The reasons are many:
Prevents easy enumeration.
Does not give away order objects were created.
D… Continue reading Should I use a cryptograpically secure random number generator when I generate IDs?