Articles tagged as “security”

Shedding some light into UUID version 4 in Ruby and Rails

Ruby's standard library and Rails's PostgreSQL adapter use by default version 4 UUIDs. This can be changed in Rails migrations via: default: 'uuid_generate_v1()' param whereas Ruby's stdlib only supports version 4. Another interesting difference is in the implementations: In the Ruby's stdlib the UUID method is found in ...