Method: Ibanity::HttpSignature#signing_string
- Defined in:
- lib/ibanity/http_signature.rb
#signing_string ⇒ Object
92 93 94 95 96 97 98 99 |
# File 'lib/ibanity/http_signature.rb', line 92 def signing_string result = [] headers_to_sign.each do |header_to_sign| value = header_value(header_to_sign) result << "#{header_to_sign}: #{value}" end result.join("\n") end |