Инициирует процесс асинхронного дешифрования для ранее загруженных данных сессии.
URL-адрес запроса
https://crypto.ccslocal.cipher.kiev.ua:90949090/api/v1/ticket/{uuid}/decryptor
...
Code Block | ||
---|---|---|
| ||
$.ajax({ url: "https://crypto.ccslocal.cipher.kiev.ua:90949090/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/decryptor", type: "POST", dataType: "json", contentType: "application/json", data: JSON.stringify({keyStorePassword : "12345678"}) }).done(function (jsonResponse, textStatus, xhr) { message = jsonResponse.message; }).fail(function (xhr) { try { var jsonResponse = JSON.parse(xhr.responseText); message = jsonResponse.message; failureCause = jsonResponse.failureCause; } catch (e) { message = (xhr.responseText == undefined) ? "Ошибка инициализации дешифрования данных." : xhr.responseText; } }) |
...