Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
645 B

  1. // CJ vector test constants
  2. //
  3. // GenKey flag to get vectors into key.
  4. #define VECTTEST 0x4000
  5. BYTE VTRC2[/*RC2_KEYSIZE*/] = { 0x59, 0x45, 0x9a, 0xf9, 0x27 };
  6. // 0x84, 0x74, 0xca };
  7. BYTE VTRC4[/*RC4_KEYSIZE*/] = { 0x61, 0x8a, 0x63, 0xd2, 0xfb };
  8. #define DES_TEST 0x2000
  9. BYTE DESTEST[/*DES_KEYSIZE*/] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef};
  10. #define DES3_TEST 0x1000
  11. BYTE DES3TEST[/*DES3_KEYSIZE*/] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
  12. 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0x01,
  13. 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0x01, 0x23};