We are currently generating a unique token
identifier using the Guid.NewGuid().ToString()
strategy, i.e.
var token = Guid.NewGuid().ToString();
We would like to replace it with the following strategy:
var token = Base64UrlEncoder.Encode(RandomNumberGenerator.GetBytes(24));
Will this be unique enough to pass for an identifier?