lizard-ts

PQC Lizard implementation with typescript


Keywords
npm, post-quantum-cryptography
License
MIT
Install
npm install lizard-ts@1.0.3

Documentation

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