A library for multi-layered encryption called SEA(simple encryption algorithm)
npm install seablockjsSEA(Simple Encryption Algorithm). SEA is a layered Encryption Algorithm that use custom depth means layer order or layer sequence to encrypt or decrypt data . it is Designed for anyone who need a very simple fast and efficient way to handle data encryption.THIS IS JUST A VERY SIMPLE PROJECT FOR ME CAN BE USED IN VERY SIMPLE ENVIRONMENTS WHERE VERY LITTLE ENCRYPTION IS REQUIRED LIKE SOME BASIC STAIC SITES OR VERY SIMPLE PROJECTS
Table of Contents
- Installation
- Getting Started
- Features
- Usage Examples
- Contributing
- License
Installation
To install the latest version of seablockjs, you can use NPM:
`bash
npm install seablockjs
`
Getting Started
Here's a quick tutorial to help you get started with seaBlock.
$3
First, import the library into your js project(app.js):
`js
import { SEA, Sonar } from './node_modules/seablockjs/seablock.js'
const sea = new SEA();
const sonar = new Sonar();
`
and in HTML link the script you are working in like this
`html