Class: Rucades::HashedData
- Inherits:
-
Object
- Object
- Rucades::HashedData
- Defined in:
- sig/rucades.rbs
Instance Method Summary collapse
-
#algorithm ⇒ Integer
Алгоритм хэширования (CADESCOM_HASH_ALGORITHM).
- #algorithm= ⇒ Integer
-
#data_encoding ⇒ Integer
Кодировка входных данных.
- #data_encoding= ⇒ Integer
-
#hash ⇒ void
Хэшировать данные.
-
#hash_value= ⇒ void
Установить значение хэша напрямую.
-
#initialize ⇒ HashedData
constructor
A new instance of HashedData.
-
#key ⇒ String
Ключ для HMAC.
- #key= ⇒ String
-
#value ⇒ String
Значение хэша.
Constructor Details
#initialize ⇒ HashedData
Returns a new instance of HashedData.
702 |
# File 'sig/rucades.rbs', line 702
def initialize: () -> void
|
Instance Method Details
#algorithm ⇒ Integer
Алгоритм хэширования (CADESCOM_HASH_ALGORITHM).
705 |
# File 'sig/rucades.rbs', line 705
def algorithm: () -> Integer
|
#algorithm= ⇒ Integer
706 |
# File 'sig/rucades.rbs', line 706
def algorithm=: (Integer) -> Integer
|
#data_encoding ⇒ Integer
Кодировка входных данных.
709 |
# File 'sig/rucades.rbs', line 709
def data_encoding: () -> Integer
|
#data_encoding= ⇒ Integer
710 |
# File 'sig/rucades.rbs', line 710
def data_encoding=: (Integer) -> Integer
|
#hash ⇒ void
This method returns an undefined value.
Хэшировать данные.
720 |
# File 'sig/rucades.rbs', line 720
def hash: (String data) -> void
|
#hash_value= ⇒ void
This method returns an undefined value.
Установить значение хэша напрямую.
723 |
# File 'sig/rucades.rbs', line 723
def hash_value=: (String hash_value) -> void
|
#key ⇒ String
Ключ для HMAC.
713 |
# File 'sig/rucades.rbs', line 713
def key: () -> String
|
#key= ⇒ String
714 |
# File 'sig/rucades.rbs', line 714
def key=: (String) -> String
|
#value ⇒ String
Значение хэша.
717 |
# File 'sig/rucades.rbs', line 717
def value: () -> String
|