I want to produce unique post identifier for posts in my blogging application.
Currently I am using SecureRandom.hex(10)
for generating unique post identifier for my blogging site but I am not sure is it safe SecureRandom for this purpose.
Is there any other way to do this?