/* RC4 Keystream Output implemented by Karl-Uwe Frank */ #include #include #include #include #include #include #define swap(X,Y) { uint8_t T = X; X = Y; Y = T; } //----------------------------------------- // // rm -f rc4_keystream && gcc -O3 -std=c99 rc4_keystream.c -o rc4_keystream // // Usage: // ./rc4_keystream key out_size-in-64bit > rc4_keystream_out.bin // // //----------------------------------------- // // Official Test Vector - Key 0102030405 | https://tools.ietf.org/html/rfc6229 // // ./rc4_keystream 0102030405 128 | xxd -g 1 // // 0000000: b2 39 63 05 f0 3d c0 27 cc c3 52 4a 0a 11 18 a8 .9c..=.'..RJ.... // 0000010: 69 82 94 4f 18 fc 82 d5 89 c4 03 a4 7a 0d 09 19 i..O........z... // 0000020: b6 8f 78 c2 8d 15 d8 22 23 4c 6c b8 c5 f6 c4 ac ..x...."#Ll..... // 0000030: b0 b9 96 a4 13 fe da 54 28 b0 78 86 b2 a0 85 12 .......T(.x..... // 0000040: 56 a0 85 25 07 80 58 d0 73 35 4a 84 76 ff e7 72 V..%..X.s5J.v..r // 0000050: 61 e4 f3 71 0f 03 0b 0c 14 89 69 4b b9 89 28 17 a..q......iK..(. // 0000060: 65 92 a5 e2 2f 3e 85 11 35 dc 1e 6a b1 24 2b 8c e.../>..5..j.$+. // 0000070: 27 75 04 30 e3 1c 13 5d c8 39 98 de 2d 93 0f 3e 'u.0...].9..-..> //----------------------------------------- // // echo -en 'rc4' | md5sum // // ./rc4_keystream 374315ed9864f687d6d5144167944eb8 | xxd -g 1 // // 0000000: a1 d2 ab dc 62 7d 2d aa b6 6c 85 7f 10 2d 75 24 ....b}-..l...-u$ // 0000010: 5c 1f 0f fd 0f 83 9b af a3 9a 70 2a 5c 6f 3d 38 \.........p*\o=8 // 0000020: 99 b1 81 eb df 1a 4f 1c 3a 9e e0 97 28 93 ca db ......O.:...(... // 0000030: a1 03 60 47 be 7b a3 80 9e df 26 7a 8d a0 4f 4c ..`G.{....&z..OL // 0000040: 78 b6 fe 33 5a d8 a0 2a fc 14 33 6f 26 5b 61 e2 x..3Z..*..3o&[a. // 0000050: e1 fd f9 ae f9 4f 8b 04 5b 3c 44 bd 03 37 40 63 .....O..[0 and max. 64bit\n"); fprintf(stderr,"\nExample: "); fprintf(stderr,"\n./rc4_keystream 374315ed9864f687d6d5144167944eb8 1048576 > rc4_keystream_out.bin\n\n"); return 1; } output_size = (int)strtoul(argv[2], NULL, 0); if (output_size == 0) { fprintf(stderr,"\nError: size of output must be byte value >0 and max. 64bit\n\n"); exit(1); } // We have a key uint8_t key[256]; uint8_t keyLen; uint8_t hexKey[256]; uint8_t hex[3]; // Make sure the arrays get initialised properly // and wipe out anything which might be there memset(key, 0, 256); memset(hexKey, 0, 256); memset(hex, 0, 3); // Rebuild key[] from KeyHash strcpy(hexKey, argv[1]); keyLen = strlen(hexKey); hexKey[keyLen] = 0; keyLen = keyLen/2; for (uint8_t i=0; i