protected function criptoVar($attribute, $value, $password = false)
 {
     $cripto = new Cripto();
     if (!$password) {
         $this->{$attribute} = $cripto->encode($value);
     } else {
         $this->{$attribute} = $cripto->passHash($value);
     }
     return $this;
 }