Subversion Repositories oidplus

Rev

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