## v0.9.0 / 2023-08-30

### Fixed
- cSHAKE bug. #24
- dependencies and security issues.
This commit is contained in:
Yi-Cyuan Chen
2023-08-30 23:39:16 +08:00
parent 5aecbd6968
commit dbb0ea401f
11 changed files with 84 additions and 56 deletions
+3
View File
@@ -11,6 +11,9 @@
var worker = new Worker(WORKER);
worker.onmessage = function(event) {
expect(event.data).to.be(hash);
if (worker.terminate) {
worker.terminate();
}
done();
};
worker.postMessage(SOURCE);