tweetnacl-js icon indicating copy to clipboard operation
tweetnacl-js copied to clipboard

Port of TweetNaCl cryptographic library to JavaScript

Results 9 tweetnacl-js issues
Sort by recently updated
recently updated
newest added

What's the minimal amount of changes needed to support ES6 module-style export?

enhancement
2.0 proposal

This PR brings minor improvements for the links listed throughout this repository: - All links that support HTTPS have `https://` instead of `http://` (this is a cryptography library, after all!)...

It'd be great of this library could run in a web-assembly environment for boosted speed.

enhancement

I have ed25519 pubkeys. I would like to check there validity. The RFC say how to do that by decoding/decompressing to an x,y point : https://tools.ietf.org/html/rfc8032#page-11 Do y plan to...

enhancement

Hi, TweetNaCl.js currently includes a minified build in its package on npm, but unfortunately this is making dependency auditing quite a bit harder; now in addition to a human-readable version,...

2.0 proposal

Use plain arrays instead of Float64Array.

# Overview Node 16 and all major browsers now support esm modules. This proposes refactoring the module in a non-breaking way in order to better leverage modern bundlers. This could...

tweetnacl ed25519 signature verification is malleable and does not have SUF-CMA (strong unforgeability under chosen message attacks). Malleability is problematic in [blockchain context](https://en.bitcoin.it/wiki/Transaction_malleability). MtGox was hacked because of it. ```js...

2.0 proposal