An open API service indexing awesome lists of open source software.

https://github.com/manufosela/lucipher-browserify

LUCipher node package to browser package
https://github.com/manufosela/lucipher-browserify

Last synced: 7 days ago
JSON representation

LUCipher node package to browser package

Awesome Lists containing this project

README

        

# LUCipher-browserify

Browserify node package LUCipher

# Use

In your HTML insert script

```code

```

Use LUCipher javascript class

```code
const LUC = new LUCipher('mipassword', 'misalt');

const code = LUC.cipher('Este es el texto a codificar');

const decode = LUC.desCipher(code);
```