1.0.0 • Published 1 year ago
prahash v1.0.0
PRA-Hashes
A Secured 3 Level Hashing Algorithmic Mechanism
Includes Both 256 Bits And 512 Bits
Installation
npm i prahash
Usage
Module Includes Both PRA-256 And PRA-512 Hashes
PRA-256
const { pra256 } = require("prahash");
// Usage pra256("Your-String")
const hash = pra256("Praabindh Pradeep"); // Enter String To Be Hashed
console.log(hash);
PRA-512
const { pra512 } = require("prahash");
// Usage pra512("Your-String")
const hash = pra512("Praabindh Pradeep"); // Enter String To Be Hashed
console.log(hash);
Both PRA-256 & PRA-512
const { pra256, pra512 } = require("./index");
// Usage pra256("Your-String")
const hash256 = pra256("Praabindh Pradeep");
// Usage pra512("Your-String")
const hash512 = pra512("Praabindh Pradeep");
console.log("PRA-256 Hash:", hash256);
console.log("PRA-512 Hash:", hash512);
Author
Name ~ Praabindh Pradeep
Email ~ praabindhp@gmail.com
GitHub ~ https://github.com/praabindhp
Current Repository ~ https://github.com/praabindhp/PRA-Hashes.git
1.0.0
1 year ago