/**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     $hex = $this->ask('What is your hex?');
     $this->info(Cryptography::hexToBase64($hex));
 }