/**
  * Performs the decryption of a value encripted by an AES schema
  * <br>The AES key is defined on the config
  * @param string $value Decrypted value
  */
 public static function decrypt($value)
 {
     global $config;
     return AES::decryptValue($value, $config["aes_key"]);
 }