Subversion Repositories oidplus

Rev

Rev 1403 | Rev 1419 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
597 daniel-mar 1
# Change Log
2
 
1395 daniel-mar 3
## v0.9.0 / 2023-08-30
4
### Fixed
5
- cSHAKE bug. #24
6
- dependencies and security issues.
7
 
597 daniel-mar 8
## v0.8.0 / 2018-08-05
9
### Added
10
- TypeScript definitions.
11
 
12
### Changed
13
- throw error if update after finalize
14
 
15
## v0.7.0 / 2017-12-01
16
### Added
17
- AMD support.
18
- support for web worker. #13
19
 
20
### Changed
21
- throw error if input type is incorrect when cSHAKE and KMAC.
22
- freeze hash after finalize.
23
 
24
## v0.6.1 / 2017-07-03
25
### Fixed
26
- Typo on variable kmac_256 type definition. #12
27
 
28
## v0.6.0 / 2017-06-15
29
### Added
30
- cSHAKE method.
31
- KMAC method.
32
- alias methods without underscore like shake128, keccak512.
33
 
34
### Changed
35
- throw error if input type is incorrect.
36
 
37
## v0.5.7 / 2016-12-30
38
### Fixed
39
- ArrayBuffer detection in old browsers.
40
 
41
## v0.5.6 / 2016-12-29
42
### Fixed
43
- ArrayBuffer dosen't work in Webpack.
44
 
45
## v0.5.5 / 2016-09-26
46
### Added
47
- TypeScript support.
48
- ArrayBuffer method.
49
 
50
### Deprecated
51
- Buffer method.
52
 
53
## v0.5.4 / 2016-09-12
54
### Fixed
55
- CommonJS detection.
56
 
57
## v0.5.3 / 2016-09-08
58
### Added
59
- Some missing files to npm package.
60
 
61
## v0.5.2 / 2016-06-06
62
### Fixed
63
- Shake output incorrect in the special length.
64
 
65
## v0.5.1 / 2015-10-27
66
### Fixed
67
- Version in package.json and bower.json.
68
 
69
## v0.5.0 / 2015-09-23
70
### Added
71
- Hash object with create/update interface.
72
 
73
## v0.4.1 / 2015-09-18
74
### Added
75
- Integer array output.
76
 
77
### Fixed
78
- Shake output incorrect when it's greater than 1088.
79
 
80
## v0.4.0 / 2015-09-17
81
### Added
82
- ArrayBuffer output.
83
- Shake alogirthms.
84
 
85
## v0.3.1 / 2015-05-22
86
### Fixed
87
- Some bugs.
88
 
89
## v0.3.0 / 2015-05-21
90
### Added
91
- Integer array input.
92
- ArrayBuffer input.
93
 
94
## v0.2.0 / 2015-04-04
95
### Added
96
- NIST's May 2014 SHA-3 version.
97
 
98
### Changed
99
- Rename original methods to keccak.
100
 
101
## v0.1.2 / 2015-02-27
102
### Changed
103
- Improve performance.
104
 
105
## v0.1.1 / 2015-02-26
106
### Changed
107
- Improve performance.
108
 
109
## v0.1.0 / 2015-02-23
110
### Added
111
- First version implementation.