Skip to content

Instantly share code, notes, and snippets.

@trkyshorty
Last active November 29, 2023 00:29
Show Gist options
  • Save trkyshorty/e5d0acadb841281cd56420244b073680 to your computer and use it in GitHub Desktop.
Save trkyshorty/e5d0acadb841281cd56420244b073680 to your computer and use it in GitHub Desktop.
Knight Online AES IV & Private Key
// IV HEX: : 324EAA58BCB3AEE36BC74C56364734F2
// PRIVATE HEX : 871FE52378A188AD22CF5EAA5B181E67
// KEY : 0x2B 'den gelen key var - > aa5515002b490c103656494a4142555251435739475435480055aa - > KEY: 3656494a414255525143573947543548
private readonly byte[] InitialVector = { 0x32, 0x4E, 0xAA, 0x58, 0xBC, 0xB3, 0xAE, 0xE3, 0x6B, 0xC7, 0x4C, 0x56, 0x36, 0x47, 0x34, 0xF2 };
private readonly byte[] PrivateKey = { 0x87, 0x1F, 0xE5, 0x23, 0x78, 0xA1, 0x88, 0xAD, 0x22, 0xCF, 0x5E, 0xAA, 0x5B, 0x18, 0x1E, 0x67 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment