1.0.2 • Published 3 years ago
unicrypt v1.0.2
Unicrypt
An encryption algorithm that generates a unique encryption each time you call it, but it's reversable each time too.
Usage
import {encrypt, decrypt} from 'unicrypt'
let encrypted = encrypt('hello world')
let decrypted = decrypt(encrypted)