0.1.0-pre.2 • Published 3 years ago

@zippie/opaque-wasm v0.1.0-pre.2

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

An implementation of the OPAQUE key exchange protocol in WASM(WebAssembly) hosted by the browser. The library was founded on the basis of opaque-ke.

Note: This package will be published in npm when version 0.3.x of opaque-ke has been stable.

Build ES6 package

wasm-pack build

Build for NodeJs

wasm-pack build --target nodejs

JS simple example of usage

import { Registration, Login } from "opaque-wasm";

const password = "asdf123";
const email = "myawesomeapp@seerv.dev";

try {
  const registration = new Registration();
  const firstMessage = registration.start(password);
  const secondMessage = await sendMessageToServer(firstMessage);
  const thirdMessage = registration.finish(secondMessage);
  const { status } = await sendMessageToServer(thirdMessage, { email });

  console.log(status); // 204 - Server Return ok, user account has been created

  const login = new Login();
  const firstLoginMessage = login.start(password);
  const secondLoginMessage = await sendMessageToServer(firstLoginMessage, email);
  const thirdLoginMessage = login.finish(secondLoginMessage);
  const sessionKey = login.get_session_key();
  await sendMessageToServer(thirdLoginMessage);

  console.log(sessionKey); // eyhojo55....
} catch (e) {
  console.error(e);
}