Class: TonSdk::Crypto::EncryptionAlgorithm

Inherits:
Object
  • Object
show all
Defined in:
lib/ton_sdk_client/crypto.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#aes_paramsObject (readonly)

Returns the value of attribute aes_params.



372
373
374
# File 'lib/ton_sdk_client/crypto.rb', line 372

def aes_params
  @aes_params
end

#type_Object (readonly)

Returns the value of attribute type_.



372
373
374
# File 'lib/ton_sdk_client/crypto.rb', line 372

def type_
  @type_
end

Class Method Details

.new_with_type_aes(aes_params:) ⇒ Object



374
375
376
377
# File 'lib/ton_sdk_client/crypto.rb', line 374

def self.new_with_type_aes(aes_params:)
  @type_ = :aes
  @aes_params = aes_params
end