🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

cipher-bsk

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cipher-bsk

My developed Bornomala Symmetric Key (BSK) stream cipher exported as npm package

1.0.5
latest
Source
npm
Version published
Maintainers
0
Created
Source

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

  • Published paper: DOI: 10.5120/ijca2021921290
  • Online tool: BSK ONLINE

Keywords

BSK

FAQs

Package last updated on 28 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts