Coder Social home page Coder Social logo

as_clockwork_base32's Introduction

as_clockwork_base32

AssemblyScript implementation of Clockwork Base32

How to use

setup

with node v12 or upper.

$ git clone https://github.com/mganeko/as_clockwork_base32.git
$ cd as_clockwork_base32
$ npm install

build

$ npm run asbuild

test

$ npm test

example

  const fs = require("fs");
  const loader = require("@assemblyscript/loader");

  const imports = { /* imports go here */ };
  const wasmModule = loader.instantiateSync(fs.readFileSync(__dirname + "/../build/base32.wasm"), imports);
  const myModule = wasmModule.exports;


  // Uint8Array --> base32 string
  const ptr1 = myModule.__allocArray(myModule.Uint8Array_ID, [1]);
  const encodePtr1 = myModule.encode32(ptr1);
  const encodedStr1 = myModule.__getString(encodePtr1);

  // base32 string --> Uint8Array
  const ptr2 = myModule.__allocString(encodedStr1);
  const decodePtr2 = myModule.decode32(ptr2);
  const decodedArr2 = myModule.__getUint8Array(decodePtr2);


  // string --> base32 string
  const ptr3 = myModule.__allocString('ABC');
  const encodePtr3 = myModule.encode32str(ptr3);
  const encodedStr3 = myModule.__getString(encodePtr3);

  // base32 string --> string
  const ptr4 = myModule.__allocString(encodedStr3);
  const decodePtr4 = myModule.decode32str(ptr4);
  const decodedStr4 = myModule.__getString(decodePtr4);

License

MIT

as_clockwork_base32's People

Contributors

mganeko avatar

Watchers

James Cloos avatar  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.