- AES GCM protocol mismatch
- better, granular error handling
- UUID now uses crypto.randomUUID()
- added native mlock addon to improve security
- ZeroBuffer uses explicit_bzero now
- fixed imports

feat:
-  added unit tests
This commit is contained in:
Alpha Nerd 2026-03-04 11:30:44 +01:00
parent 0b09b9a9c3
commit c7601b2270
17 changed files with 12600 additions and 164 deletions

View file

@ -46,20 +46,25 @@
],
"author": "",
"license": "Apache-2.0",
"dependencies": {},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"rollup": "^4.0.0",
"typescript": "^5.3.0",
"jest": "^29.0.0",
"karma": "^6.4.0",
"node-addon-api": "^8.6.0",
"node-gyp": "^10.0.0",
"node-gyp-build": "^4.8.0"
"node-gyp-build": "^4.8.0",
"rollup": "^4.0.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.0"
},
"optionalDependencies": {
"nomyo-native": "file:./native"
}
}
}