npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

noise-c.wasm

v0.4.0

Published

rweather/noise-c compiled to WebAssembly using Emscripten and optimized for small size

Downloads

25

Readme

noise-c.wasm Travis CI

rweather/noise-c compiled to WebAssembly using Emscripten and optimized for small size.

Noise protocol implementation that works both in Node.js and in modern browsers.

Supported Patterns and Algorithms

The same as in noise-c: https://rweather.github.io/noise-c/index.html#algorithms

About this project

This project basically does 2 things:

  • compiles upstream noise-c C library into WebAssembly
  • wraps plain functions into OOP interface close to what is specified in the spec (including functions names)

How to install

npm install noise-c.wasm

How to use

Node.js:

var createNoise = require('noise-c.wasm');

createNoise(function (noise) {
    // Do stuff
});

Browser:

requirejs(['noise-c.wasm'], function (createNoise) {
    createNoise(function (noise) {
        // Do stuff
    });
});

API

createNoise(options, callback)

Creates a new instance of Noise library

  • options - Options object that will be passed to underlying Emscripten module (optional)
  • callback - Callback function that receives library instance as the first argument, it is called when WebAssembly is loaded and library is ready for use

noise.constants

A bunch of constants that are needed for certain calls or for identifying errors. In most cases only NOISE_ROLE_INITIATOR and NOISE_ROLE_RESPONDER will be used directly, but others are used in OOP wrapper and/or in tests.

Check src/constants.ls for complete list of available constants.

noise.CreateKeyPair(curve_id): Uint8Array[]

Convenient method for generating new Ed25519 or X448 keypair, takes noise.constants.NOISE_DH_CURVE448 or noise.constants.NOISE_DH_CURVE448 as an argument. Returns [private, public] array of private and public part of keypair.

noise.CipherState(cipher)

CipherState object as in specification, has following methods:

  • InitializeKey(key)
  • HasKey()
  • SetNonce(nonce)
  • EncryptWithAd(ad, plaintext)
  • DecryptWithAd(ad, ciphertext)
  • Rekey()
  • free()

Take a look at src/index.ls for JsDoc sections with arguments and return types as well as methods description, look at tests/CipherState.ls for usage examples.

noise.SymmetricState(protocol_name)

SymmetricState object as in specification, has following methods:

  • MixKey(input_key_material)
  • MixHash(data)
  • MixKeyAndHash(input_key_material)
  • EncryptAndHash(plaintext)
  • DecryptAndHash(ciphertext)
  • Split()
  • free()

Take a look at src/index.ls for JsDoc sections with arguments and return types as well as methods description, look at tests/SymmetricState.ls for usage examples.

noise.HandshakeState(protocol_name, role)

HandshakeState object as in specification, has following methods:

  • Initialize(prologue = null, s = null, rs = null, psk = null)
  • GetAction()
  • FallbackTo(pattern_id = noise.constants.NOISE_PATTERN_XX_FALLBACK)
  • WriteMessage(payload = null)
  • ReadMessage(message, payload_needed = false, fallback_supported = false)
  • GetHandshakeHash()
  • GetRemotePublicKey()
  • Split()
  • free()

Take a look at src/index.ls for JsDoc sections with arguments and return types as well as methods description, look at tests/HandshakeState.ls for usage examples.

Contribution

Feel free to create issues and send pull requests (for big changes create an issue first and link it from the PR), they are highly appreciated!

When reading LiveScript code make sure to configure 1 tab to be 4 spaces, otherwise code might be hard to read.

License

Free Public License 1.0.0 / Zero Clause BSD License

https://opensource.org/licenses/FPL-1.0.0

https://tldrlegal.com/license/bsd-0-clause-license