Skip to content

NewGlace/IceCrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

IceCrypt

NPM version NPM downloads

NPM Banner

Table of contents

Installation

npm i icecrypt

Examples

const crypt = require('icecrypt'); //Define the IceCrypt module

Create/Use Token

const { Client } = require('icecrypt'); //Define the IceCrypt module

const token = await Client.token();
// Once the token is generated, it must be saved, all encryption will be partially linked to this token.

const client = new Client(token);

enCrypt

const enCryptedText = client.enCrypt("Your Text");
//RDYFTUKGYHIUJOI

deCrypt

const deCryptedText = client.deCrypt("RDYFTUKGYHIUJOI");
// Your Text

Discord

Join the Discord

About

Module de cryptage/décryptage

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published