/**
  * @expectedException \Defuse\Crypto\Exception\WrongKeyOrModifiedCiphertextException
  * @expectedExceptionMessage Bad version header
  */
 public function testDecryptLegacyWithWrongMethodStraightUpBinary()
 {
     $cipher = Encoding::hexToBin('cfdad83ebd506d2c9ada8d48030d0bca' . '2ff94760e6d39c186adb1290d6c47e35' . '821e262673c5631c42ebbaf70774d6ef' . '29aa5eee0e412d646ae380e08189c85d' . '024b5e2009106870f1db25d8b85fd01f' . '00000000000000000000000000000000');
     /* This time, treat the binary as binary. */
     $plain = Crypto::decrypt($cipher, Key::loadFromRawBytesForTestingPurposesOnlyInsecure("\t\n\v\f\r" . "\t\n\v\f\r"), true);
 }