In my RubyOnRails application I'm connecting to an external WebService (provided by the customer) through the excellent Savon gem.
The provider is asking to me which cihpering method method I'm using because he doesn't want the AES256-SHA256
because is considered insecure.
How can I know which one I'm using? In my Savon client instance I'm not setting anything, here is an example
@client = Savon.client( wsdl: the wsdl, logger: Rails.logger, log_level: :info, log: true )
Does Savon gets it from the server? Or does it have one set by default?