lizard-ts
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Welcome to lizard-ts 👋

Version Documentation Maintenance

Ethersdcan API library with typescript

🏠 Homepage

Install

npm i lizard-ts
yarn add lizard-ts

Run tests

yarn test

Usage

const plain = randomPlaintext();
const m_transpose = scalarMultiplyVector(128, plain);

const key = keyGeneration();

const enc = encrypt(m_transpose, key.pk);
const dec = decrypt(enc, key.sk);

const ms = plain.toString();
const ts = dec.toString();
if (ms === ts) {
    console.log("success");
} else {
    console.log("failed");
}

Author

👤 CuteWisp sweatpotato13@gmail.com

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!


This README was generated with ❤️ by readme-md-generator

Readme

Keywords

none

Package Sidebar

Install

npm i lizard-ts

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

15 MB

Total Files

26

Last publish

Collaborators

  • sweatpotato