Guest User

Untitled

a guest
Dec 10th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. encriptar(_encrypt) {
  2. return this.aes256.encrypt(this.secureKey, this.secureIV, _encrypt )
  3. .then((encrypt_) => {
  4. this.desencriptar(encrypt_);
  5. return encrypt_;
  6. })
  7. .catch((error: any) => console.error(error));
Add Comment
Please, Sign In to add comment