Exemplo n.º 1
0
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     $first = $this->ask('First hex string?');
     $second = $this->ask('Second hex string?');
     $this->info(Cryptography::fixedXOR($first, $second));
 }