Skip to content

Instantly share code, notes, and snippets.

@jonringer-comm
Created March 27, 2023 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonringer-comm/cab0614fdb54ac00b5f7692d0ae2ea2e to your computer and use it in GitHub Desktop.
Save jonringer-comm/cab0614fdb54ac00b5f7692d0ae2ea2e to your computer and use it in GitHub Desktop.
/* tslint:disable */
/* eslint-disable */
/**
*/
export class Login {
free(): void;
/**
*/
constructor();
/**
* @param {string} password
* @returns {Uint8Array}
*/
start(password: string): Uint8Array;
/**
* @param {Uint8Array} response_payload
* @returns {Uint8Array}
*/
finish(response_payload: Uint8Array): Uint8Array;
/**
*/
readonly session_key: Uint8Array;
}
/**
*/
export class Registration {
free(): void;
/**
*/
constructor();
/**
* @param {string} password
* @returns {Uint8Array}
*/
start(password: string): Uint8Array;
/**
* @param {string} password
* @param {Uint8Array} response_payload
* @returns {Uint8Array}
*/
finish(password: string, response_payload: Uint8Array): Uint8Array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment