Class: Rucades::EnvelopedData
- Inherits:
-
Object
- Object
- Rucades::EnvelopedData
- Defined in:
- sig/rucades.rbs
Instance Method Summary collapse
-
#algorithm ⇒ Algorithm
Алгоритм шифрования.
-
#content ⇒ String
Шифруемые данные.
- #content= ⇒ String
-
#content_encoding ⇒ Integer
Кодировка содержимого.
- #content_encoding= ⇒ Integer
-
#decrypt ⇒ void
Расшифровать сообщение.
-
#encrypt ⇒ String
Зашифровать данные.
-
#initialize ⇒ EnvelopedData
constructor
A new instance of EnvelopedData.
-
#recipients ⇒ Recipients
Получатели зашифрованного сообщения.
- #stream_decrypt ⇒ String
- #stream_encrypt ⇒ String
Constructor Details
#initialize ⇒ EnvelopedData
Returns a new instance of EnvelopedData.
737 |
# File 'sig/rucades.rbs', line 737
def initialize: () -> void
|
Instance Method Details
#algorithm ⇒ Algorithm
Алгоритм шифрования.
740 |
# File 'sig/rucades.rbs', line 740
def algorithm: () -> Algorithm
|
#content ⇒ String
Шифруемые данные.
743 |
# File 'sig/rucades.rbs', line 743
def content: () -> String
|
#content= ⇒ String
744 |
# File 'sig/rucades.rbs', line 744
def content=: (String) -> String
|
#content_encoding ⇒ Integer
Кодировка содержимого.
747 |
# File 'sig/rucades.rbs', line 747
def content_encoding: () -> Integer
|
#content_encoding= ⇒ Integer
748 |
# File 'sig/rucades.rbs', line 748
def content_encoding=: (Integer) -> Integer
|
#decrypt ⇒ void
This method returns an undefined value.
Расшифровать сообщение.
754 |
# File 'sig/rucades.rbs', line 754
def decrypt: (String encoded_message) -> void
|
#encrypt ⇒ String
Зашифровать данные.
757 |
# File 'sig/rucades.rbs', line 757
def encrypt: (?Integer encoding_type) -> String
|
#recipients ⇒ Recipients
Получатели зашифрованного сообщения.
751 |
# File 'sig/rucades.rbs', line 751
def recipients: () -> Recipients
|
#stream_decrypt ⇒ String
759 |
# File 'sig/rucades.rbs', line 759
def stream_decrypt: (String content, ?Integer final) -> String
|
#stream_encrypt ⇒ String
760 |
# File 'sig/rucades.rbs', line 760
def stream_encrypt: (String content, ?Integer final) -> String
|