Method: Mongo::Auth::ScramConversationBase#process_continue_response
- Defined in:
- lib/mongo/auth/scram_conversation_base.rb
#process_continue_response(reply_document) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Processes the second response from the server.
100 101 102 103 |
# File 'lib/mongo/auth/scram_conversation_base.rb', line 100 def process_continue_response(reply_document) payload_data = parse_payload(reply_document['payload'].data) check_server_signature(payload_data) end |