You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
After upgrading to rails 5.2, we ran into an issue with this gem.
The srp verifier could not handle hash with strings key anymore.
(Error : proof must have required hash keys)
Hello,
After upgrading to rails 5.2, we ran into an issue with this gem.
The srp verifier could not handle hash with strings key anymore.
(Error :
proof must have required hash keys
)We had to change
srp.verify_session(@server_proof, @client_proof)
to
srp.verify_session(@server_proof.deep_symbolize_keys, @client_proof)
It seems that the Hashie symbolize keys line is not doing its job :
sirp/lib/sirp/verifier.rb
Lines 89 to 90 in 7337274
The text was updated successfully, but these errors were encountered: