Class: PayU::Signer::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/pay_u/signer/base.rb

Direct Known Subclasses

Confirmation, Form, Response

Constant Summary collapse

SIGNATURE_JOIN =
"~".freeze

Instance Method Summary collapse

Instance Method Details

#signatureObject



15
16
17
# File 'lib/pay_u/signer/base.rb', line 15

def signature
  Digest::MD5.hexdigest(fields.join(SIGNATURE_JOIN))
end