Sha256: 7bac59151672d1ec4cf452d72eb9f5a577272215cbd3b7c40c205e488e6f1e61
Contents?: true
Size: 998 Bytes
Versions: 14
Compression:
Stored size: 998 Bytes
Contents
class Epics::HKD < Epics::GenericRequest def header Nokogiri::XML::Builder.new do |xml| xml.header(authenticate: true) { xml.static { xml.HostID host_id xml.Nonce nonce xml.Timestamp timestamp xml.PartnerID partner_id xml.UserID user_id xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de') xml.OrderDetails { xml.OrderType 'HKD' xml.OrderAttribute 'DZHNN' xml.StandardOrderParams '' } xml.BankPubKeyDigests { xml.Authentication(client.bank_x.public_digest, Version: 'X002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256") xml.Encryption(client.bank_e.public_digest, Version: 'E002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256" ) } xml.SecurityMedium '0000' } xml.mutable { xml.TransactionPhase 'Initialisation' } } end.doc.root end end
Version data entries
14 entries across 14 versions & 1 rubygems