- # for vBulletin this should be #{password}:#{salt} md5(md5(pass) + salt)
- # for vBulletin5 #{token} bcrypt(md5(pass))
- # for Phorum #{password} md5(pass)
- # for Wordpress #{password} phpass(8).crypt(pass)
- # for SMF #{username}:#{password} sha1(user+pass)
- # for IPB #{salt}:#{hash} md5(md5(salt)+md5(pass))
- # for WBBlite #{salt}:#{hash} sha1(salt+sha1(salt+sha1(pass)))
- # for Joomla #{hash}:#{salt} md5(pass+salt)
- # for Joomla 3.2 #{password} bcrypt(pass)
- # for Question2Answer #{salt}:#{passcheck} sha1 (left(salt,8) + pass + right(salt,8))
- # for Drupal 7 #{password} sha512(sha512(salt + pass) + pass) x iterations from salt.
- #This will be applied at runtime, as authentication is attempted. It does not apply at migration time.
- gem 'bcrypt', '3.1.13'
- gem 'unix-crypt', '1.3.0', :require_name => 'unix_crypt'
- gem 'ffi-compiler', '1.0.1', require: false
- gem 'argon2', '2.2.0'