lizard-ts
v1.0.3
Published
PQC Lizard implementation with typescript
Downloads
1
Readme
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 [email protected]
- Website: Cutewisp.com
- Github: @sweatpotato13
🤝 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