Class: Rucades::Store
- Inherits:
-
Object
- Object
- Rucades::Store
- Defined in:
- sig/rucades.rbs
Overview
CAdESCOM.Store Хранилище сертификатов.
Instance Method Summary collapse
-
#add ⇒ void
Добавить сертификат в хранилище.
-
#add_crl ⇒ void
Добавить CRL в хранилище.
-
#certificates ⇒ Certificates
Сертификаты в хранилище.
-
#close ⇒ void
Закрыть хранилище.
-
#initialize ⇒ Store
constructor
A new instance of Store.
-
#location ⇒ Integer
Расположение хранилища.
-
#name ⇒ String
Имя хранилища.
-
#open ⇒ void
Открыть хранилище.
Constructor Details
#initialize ⇒ Store
Returns a new instance of Store.
791 |
# File 'sig/rucades.rbs', line 791
def initialize: () -> void
|
Instance Method Details
#add ⇒ void
This method returns an undefined value.
Добавить сертификат в хранилище.
803 |
# File 'sig/rucades.rbs', line 803
def add: (Certificate certificate) -> void
|
#add_crl ⇒ void
This method returns an undefined value.
Добавить CRL в хранилище.
806 |
# File 'sig/rucades.rbs', line 806
def add_crl: (CRL crl) -> void
|
#certificates ⇒ Certificates
Сертификаты в хранилище.
794 |
# File 'sig/rucades.rbs', line 794
def certificates: () -> Certificates
|
#close ⇒ void
This method returns an undefined value.
Закрыть хранилище.
809 |
# File 'sig/rucades.rbs', line 809
def close: () -> void
|
#location ⇒ Integer
Расположение хранилища.
797 |
# File 'sig/rucades.rbs', line 797
def location: () -> Integer
|
#name ⇒ String
Имя хранилища.
800 |
# File 'sig/rucades.rbs', line 800
def name: () -> String
|
#open ⇒ void
This method returns an undefined value.
Открыть хранилище. location — CADESCOM_STORE_LOCATION или CAPICOM_STORE_LOCATION name — имя хранилища (CAPICOM_MY_STORE и т.д.) mode — режим открытия (CAPICOM_STORE_OPEN_MAXIMUM_ALLOWED и т.д.)
815 |
# File 'sig/rucades.rbs', line 815
def open: (Integer location, String name, Integer mode) -> void
|