This commit is contained in:
Vitalii Goma 2017-01-30 16:01:10 +03:00
parent 0b27f4a0b6
commit 28e928411d
10 changed files with 14 additions and 9 deletions

View File

@ -1,3 +1,8 @@
1.0.7 / 2017-01-30
==================
* Улучшение: Указание хэша сертификата при ошибке доступа к нему
1.0.6 / 2017-01-30 1.0.6 / 2017-01-30
================== ==================

View File

@ -232,7 +232,7 @@ webpackJsonpCryptoPro([1],[
if (certs.Count) { if (certs.Count) {
cert = yield certs.Item(1); cert = yield certs.Item(1);
} else { } else {
throw new Error('Нет доступных сертификатов'); throw new Error(hash);
} }
} catch (err) { } catch (err) {
reject('Не удалось получить сертификат по хэшу: ' + err.message); reject('Не удалось получить сертификат по хэшу: ' + err.message);

File diff suppressed because one or more lines are too long

View File

@ -1288,7 +1288,7 @@ webpackJsonpCryptoPro([2],[
if (certs.Count) { if (certs.Count) {
cert = certs.Item(1); cert = certs.Item(1);
} else { } else {
throw new Error('Нет доступных сертификатов'); throw new Error(hash);
} }
} catch (err) { } catch (err) {
reject('Не удалось получить сертификат по хэшу: ' + err.message); reject('Не удалось получить сертификат по хэшу: ' + err.message);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
npm-shrinkwrap.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "crypto-pro", "name": "crypto-pro",
"version": "1.0.6", "version": "1.0.7",
"dependencies": { "dependencies": {
"acorn": { "acorn": {
"version": "3.3.0", "version": "3.3.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "crypto-pro", "name": "crypto-pro",
"version": "1.0.6", "version": "1.0.7",
"description": "API для взаимодействия с КриптоПро", "description": "API для взаимодействия с КриптоПро",
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {

View File

@ -226,7 +226,7 @@ function getCadesCert(hash) {
if (certs.Count) { if (certs.Count) {
cert = yield certs.Item(1); cert = yield certs.Item(1);
} else { } else {
throw new Error('Нет доступных сертификатов'); throw new Error(hash);
} }
} catch (err) { } catch (err) {
reject('Не удалось получить сертификат по хэшу: ' + err.message); reject('Не удалось получить сертификат по хэшу: ' + err.message);

View File

@ -212,7 +212,7 @@ function getCadesCert(hash) {
if (certs.Count) { if (certs.Count) {
cert = certs.Item(1); cert = certs.Item(1);
} else { } else {
throw new Error('Нет доступных сертификатов'); throw new Error(hash);
} }
} catch (err) { } catch (err) {
reject('Не удалось получить сертификат по хэшу: ' + err.message); reject('Не удалось получить сертификат по хэшу: ' + err.message);