Class: Tanker::E2ePassphraseVerification
- Inherits:
-
Verification
- Object
- Verification
- Tanker::E2ePassphraseVerification
- Defined in:
- lib/tanker/core/verification.rb
Instance Attribute Summary collapse
-
#e2e_passphrase ⇒ Object
readonly
Returns the value of attribute e2e_passphrase.
Instance Method Summary collapse
-
#initialize(e2e_passphrase) ⇒ E2ePassphraseVerification
constructor
A new instance of E2ePassphraseVerification.
Constructor Details
#initialize(e2e_passphrase) ⇒ E2ePassphraseVerification
Returns a new instance of E2ePassphraseVerification.
134 135 136 137 138 139 140 |
# File 'lib/tanker/core/verification.rb', line 134 def initialize(e2e_passphrase) super() ASSERT_UTF8.call(e2e_passphrase) @e2e_passphrase = e2e_passphrase end |
Instance Attribute Details
#e2e_passphrase ⇒ Object (readonly)
Returns the value of attribute e2e_passphrase.
132 133 134 |
# File 'lib/tanker/core/verification.rb', line 132 def e2e_passphrase @e2e_passphrase end |