Class: Hbci::Request
Instance Attribute Summary collapse
-
#dialog ⇒ Object
readonly
Returns the value of attribute dialog.
-
#sec_ref ⇒ Object
readonly
Returns the value of attribute sec_ref.
Attributes inherited from Message
Instance Method Summary collapse
- #enc_head ⇒ Object
- #encrypted_payload ⇒ Object
- #head ⇒ Object
- #sig_head ⇒ Object
- #sig_tail ⇒ Object
- #tail ⇒ Object
Methods inherited from Message
#add_segment, #compile, #initialize, #to_base64, #to_s
Constructor Details
This class inherits a constructor from Hbci::Message
Instance Attribute Details
#dialog ⇒ Object (readonly)
Returns the value of attribute dialog.
5 6 7 |
# File 'lib/hbci/request.rb', line 5 def dialog @dialog end |
#sec_ref ⇒ Object (readonly)
Returns the value of attribute sec_ref.
6 7 8 |
# File 'lib/hbci/request.rb', line 6 def sec_ref @sec_ref end |
Instance Method Details
#enc_head ⇒ Object
12 13 14 |
# File 'lib/hbci/request.rb', line 12 def enc_head @enc_head ||= Segments::HNVSKv3.build(dialog: dialog) end |
#encrypted_payload ⇒ Object
20 21 22 |
# File 'lib/hbci/request.rb', line 20 def encrypted_payload @encrypted_payload ||= Segments::HNVSDv1.build(message: self) end |
#head ⇒ Object
8 9 10 |
# File 'lib/hbci/request.rb', line 8 def head @head ||= Segments::HNHBKv3.build(dialog: dialog, message: self) end |
#sig_head ⇒ Object
16 17 18 |
# File 'lib/hbci/request.rb', line 16 def sig_head @sig_head ||= Segments::HNSHKv4.build(dialog: dialog, message: self) end |