Our requirement is to block MD5 hashing in our Rails application. This would be really helpful because MD5 is prohibited on the servers, on which the application is going to be deployed. It is not just direct MD5 hashing that needs to be blocked, but also the ruby gems that internally use MD5 hashing for their working.
Is it possible to do this blocking or at least throw an error/warning while starting the rails server, if any MD5 hashing is used?