Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hash and encrypt/decrypt methods #30

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b6021bb
ADD experimental methods to create and verify hash signatures
Sep 11, 2020
0014049
ADD some tests
Sep 11, 2020
87882d1
ADD encrypt/decrypt enveloped data with Enveloped CMS
Sep 15, 2020
acc5601
ADD getEnvelopedData method; tests for new methods; some parameter de…
Sep 16, 2020
1d0bed4
ADD some basic readme info and links to new calls
Sep 17, 2020
126b32d
ADD skipCheck parameter for getUserCertificates
Oct 14, 2020
c05c045
FIX skipCheck
Oct 14, 2020
cbd1bb0
ADD hasPrivateKey public field to Certificate class
Oct 14, 2020
fe5addb
FIX certificate tests ADD getHashedData default algorithm parameter
Oct 15, 2020
88acf73
FIX some descriptions, error messages ADD HasPrivateKey method to _g…
Oct 15, 2020
a39e1b0
FIX misspel of CADESCOM_CADES_BES in verifyHashSignature; removed som…
Oct 15, 2020
c930c52
FIX import in verifyHashSignature
Oct 15, 2020
5a5bb1e
FIX pending oHahsedData value issue
Oct 15, 2020
7b4e912
FIX pending oHahsedData value issue
Oct 15, 2020
3110057
FIX verifyHashSignature return value
Nov 5, 2020
801cbe3
FIX async method to verifySignature
Nov 5, 2020
6dd8682
FIX remove async from sync operation VerifyHash
Nov 5, 2020
4191aa5
FIX verify hash signature
Nov 5, 2020
f21e40e
Merge branch 'master' into feature/hash-methods
norguhtar Nov 8, 2020
4ceb2cd
Merge pull request #1 from vgoma/master
norguhtar Nov 11, 2020
0219cd1
Update dist and lib
Nov 11, 2020
9033640
Remove option from coSignatur
Nov 27, 2020
a269e17
Revert change in createCoSignature
Dec 1, 2020
a6cc8f7
Add container store
Jan 15, 2021
4493026
Revert container store
Jan 15, 2021
3d7e9ad
Add open CAPICOM_LOCAL_MACHINE_STORE
Aug 2, 2021
54c63c1
Try fix all storages
Aug 2, 2021
9ebd28e
Add read AddressBook
Aug 3, 2021
9b9e8f3
Change to Addressbook
Aug 3, 2021
9bb85cf
Addd
Aug 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FIX misspel of CADESCOM_CADES_BES in verifyHashSignature; removed som…
…e redundant code
  • Loading branch information
saltanovst committed Oct 15, 2020
commit a39e1b004b52af103e18e01969955154374036c4
2 changes: 1 addition & 1 deletion dist/api/getHashedData.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Создаёт объект oHashedData с заданным алгоритмом шифрования
*
* @param hashAlg = 101 - код алгоритма шифрования из списка констант
* @param hashAlg = 101 - код алгоритма хеширования из списка констант(/src/constants/cades-constants.ts)
* @returns объект oHashedData
*/
export declare const getHashedData: (hashAlg?: number) => Promise<any>;
127 changes: 54 additions & 73 deletions dist/crypto-pro.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/crypto-pro.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/crypto-pro.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/crypto-pro.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/api/getHashedData.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Создаёт объект oHashedData с заданным алгоритмом шифрования
*
* @param hashAlg = 101 - код алгоритма шифрования из списка констант
* @param hashAlg = 101 - код алгоритма хеширования из списка констант(/src/constants/cades-constants.ts)
* @returns объект oHashedData
*/
export declare const getHashedData: (hashAlg?: number) => Promise<any>;
22 changes: 5 additions & 17 deletions lib/crypto-pro.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/crypto-pro.js.map

Large diffs are not rendered by default.

Loading