/**
  * Performs the encryption of a value using AES schema
  * <br>The AES key is defined on the config
  * @param string $value Encrypted value
  */
 public static function ecncrypt($value)
 {
     global $config;
     return AES::encryptValue($value, $config["aes_key"]);
 }