1.0.5 • Published 8 months ago

cipher-bsk v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

cipher-bsk-npm-package

Bornomala Symmetric Key (BSK) stream cipher, a simple text-encrypting developed cipher model

Installation/Launch

npm i cipher-bsk;

Usage

To use in your project get the encrypt and decrypt function from object deconstruction

const { encrypt, decrypt } = require('cipher-bsk')

let M = "Hajee Mohammad Danesh Science and Technology University"
let K = "Hstu@5200"

console.log(encrypt(M, K))
let C = encrypt(M, K)
console.log(decrypt(C, K))

Features

  • Avalanche effect
  • Immune from frequency analysis attack
  • Output ranges from ASCII(0-255)

Documentations

1.0.5

8 months ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago