decrypt(text) {
    let decipher = crypto.createDecipher(this.algorithm, this.password);

    return decipher.update(text, 'hex', 'utf8') + decipher.final('utf8');
  }