Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 317 Bytes

decrypt.md

File metadata and controls

16 lines (11 loc) · 317 Bytes

decrypt(cipher)

cipher - Cipher generated by encrypt function

const crypto = require('functility').crypto
const cipher = crypt.encrypt('toasterOven@!#_');

crypto.decrypt(cipher);

/*
 * Returns: toasterOven@!#_
 */