GithubHelp home page GithubHelp logo

alexxnica / noise-c.wasm Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nazar-pc/noise-c.wasm

0.0 1.0 0.0 348 KB

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

License: MIT License

LiveScript 94.17% JavaScript 4.02% C 1.81%

noise-c.wasm's Introduction

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)

When reading LiveScript code make sure to configure 1 tab to be 4 spaces (GitHub uses 8 by default), otherwise code might be hard to read.

How to install

npm install noise-c.wasm

API

lib.ready(callback)

  • callback - Callback function that is called when WebAssembly is loaded and library is ready for use

lib.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.

lib.CipherState(cipher)

CipherState object as in specification, has following methods:

  • InitializeKey(key)
  • HasKey()
  • 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.

lib.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.

lib.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 = lib.constants.NOISE_PATTERN_XX_FALLBACK)
  • WriteMessage(payload = null)
  • ReadMessage(message, payload_needed = false, fallback_supported = false)
  • 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!

License

MIT, see license.txt

noise-c.wasm's People

Contributors

nazar-pc avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.