Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.93 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6.  
  7.  
  8. unsigned char rcon[] = {0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x1b,0x36};
  9. unsigned char S[] = {
  10. 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76,
  11. 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0,
  12. 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
  13. 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75,
  14. 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84,
  15. 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
  16. 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8,
  17. 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2,
  18. 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
  19. 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb,
  20. 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79,
  21. 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
  22. 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a,
  23. 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e,
  24. 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
  25. 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16 };
  26.  
  27.  
  28. unsigned int T0[256] = {0};
  29. unsigned int T1[256] = {0};
  30. unsigned int T2[256] = {0};
  31. unsigned int T3[256] = {0};
  32.  
  33. void copyArray(unsigned char* origin, unsigned char* copied)
  34. {
  35. for (int i = 0; i < 16; i++)
  36. {
  37. copied[i] = origin[i];
  38. }
  39. }
  40. // Shift rows
  41. void leftRotate(unsigned char* arr, int startIndex, int d)
  42. {
  43. for (int i = 0; i < d; i++)
  44. {
  45. unsigned char temp = arr[startIndex], i;
  46.  
  47. for (i = startIndex; i < startIndex+3; i++)
  48. {
  49. arr[i] = arr[i + 1];
  50. }
  51.  
  52. arr[i] = temp;
  53. }
  54. }
  55.  
  56. void shiftRows(unsigned char* State)
  57. {
  58. for (int i = 0; i < 4; i++)
  59. {
  60. leftRotate(State, i*4, i);
  61. }
  62. }
  63.  
  64. void transposeMatrix(unsigned char* state, unsigned char* copiedState)
  65. {
  66. copyArray(state, copiedState);
  67. for(int i = 0; i < 4; i++)
  68. {
  69. state[i*4] = copiedState[i];
  70. state[i*4+1] = copiedState[i+4];
  71. state[i*4+2] = copiedState[i+8];
  72. state[i*4+3] = copiedState[i+12];
  73. }
  74. }
  75. void InvaddRoundKey(unsigned char* State, unsigned char* key)
  76. {
  77. unsigned char temp[16];
  78.  
  79. for (int i = 0; i < 16; i++)
  80. {
  81. State[i] ^= key[i];
  82. }
  83. }
  84.  
  85. // Add roundkey
  86. void addRoundKey(unsigned char* State, unsigned char* key)
  87. {
  88. unsigned char temp[16];
  89. transposeMatrix(key,temp);
  90. //keys are generated in the "wrong way" i.e. key[1] = key[4]
  91. //normal funktion
  92.  
  93. for (int i = 0; i < 16; i++)
  94. {
  95. State[i] ^= key[i];
  96. }
  97. transposeMatrix(key,temp);
  98.  
  99. }
  100.  
  101. // Sub bytes
  102. void subBytes(unsigned char* State)
  103. {
  104. for (int i = 0; i < 16; i++)
  105. {
  106. State[i] = S[State[i]];
  107. }
  108. }
  109.  
  110. // Bit multiplication
  111.  
  112. unsigned char mul2(unsigned char x)
  113. {
  114. if (x < 128){
  115. return (x << 1);
  116. }
  117. else
  118. {
  119. return (x << 1) ^ 0x1B;
  120. }
  121. }
  122.  
  123. unsigned char mul3(unsigned char x)
  124. {
  125. return mul2(x) ^ x;
  126. }
  127.  
  128.  
  129. void GenerateTtables(){
  130. //we generate the T-tables according to the slides.
  131. // they're handled as 32 bit unsigned integers.
  132.  
  133. for(int i = 0; i < 256; i++){
  134. T0[i] = mul2(S[i]) << 24 | S[i] << 16 | S[i] << 8 | mul3(S[i]);
  135. T1[i] = mul3(S[i]) << 24 | mul2(S[i]) << 16 | S[i] << 8 | S[i];
  136. T2[i] = S[i] << 24 | mul3(S[i]) << 16 | mul2(S[i]) << 8 | S[i];
  137. T3[i] = S[i] << 24 | S[i] << 16 | mul3(S[i]) << 8 | mul2(S[i]);
  138.  
  139. }
  140. }
  141.  
  142.  
  143. //AES round done with the T-tables
  144. void AESRound(unsigned char* state){
  145.  
  146.  
  147. unsigned int res = T0[state[0]] ^ T1[(state[5])] ^T2[state[10]] ^T3[state[15]];
  148. unsigned int res2 = T0[state[4]] ^ T1[state[9]] ^T2[state[14]] ^T3[state[3]];
  149. unsigned int res3 = T0[state[8]] ^ T1[state[13]] ^T2[state[2]] ^T3[state[7]];
  150. unsigned int res4 = T0[state[12]] ^ T1[state[1]] ^T2[state[6]] ^T3[state[11]];
  151.  
  152. //first extract the relevant bits, and then use 0xff to get ONLY the bits we want.
  153. state[0] = (res >> 24) & 0xff;
  154. state[1] = (res >> 16) & 0xff;
  155. state[2] = (res >> 8) & 0xff;
  156. state[3] = res & 0xff;
  157.  
  158. state[4] = (res2 >> 24) & 0xff;
  159. state[5] = (res2 >> 16) & 0xff;
  160. state[6] = (res2 >> 8) & 0xff;
  161. state[7] = res2 & 0xff;
  162.  
  163. state[8] = (res3 >> 24) & 0xff;
  164. state[9] = (res3 >> 16) & 0xff;
  165. state[10] = (res3 >> 8) & 0xff;
  166. state[11] = res3 & 0xff;
  167.  
  168. state[12] = (res4 >> 24) & 0xff;
  169. state[13] = (res4 >> 16) & 0xff;
  170. state[14] = (res4 >> 8) & 0xff;
  171. state[15] = res4 & 0xff;
  172. }
  173.  
  174.  
  175.  
  176.  
  177. // Print
  178. void PrintFunc(unsigned char *state){
  179. for(int i = 0; i<16; i++){
  180. printf("%x, ",state[i]);
  181. }
  182. printf("\n");
  183. }
  184.  
  185. void rotWord(unsigned char* state)
  186. {
  187. unsigned char holderVal = state[3];
  188. for (int i = 3; i < 12; i = i+4)
  189. {
  190. state[i] = state[i+4];
  191. }
  192. state[15] = holderVal;
  193. }
  194.  
  195. void rowSubBytes(unsigned char* key)
  196. {
  197. for (int i = 0; i < 4; i++)
  198. {
  199. key[i*4+3] = S[key[i*4+3]];
  200. }
  201. }
  202.  
  203. void rowXor(unsigned char* key, unsigned char* holderState, int rconIndex)
  204. {
  205. for (int k = 0; k < 4; k++)
  206. {
  207. if (k == 0)
  208. {
  209. for (int i = 0; i < 4; i++)
  210. {
  211. if (i == 0)
  212. key[i] = holderState[i] ^ key[i+3] ^ rcon[rconIndex];
  213. else
  214. {
  215. key[i * 4] = holderState[i*4] ^ key[i*4+3];
  216. }
  217. }
  218. }
  219. else
  220. {
  221. for (int i = 0; i < 4; i++)
  222. {
  223. key[i*4+k] = holderState[i*4+k] ^ key[i*4+k-1];
  224. }
  225. }
  226. }
  227. }
  228.  
  229. void inverseRowXor(unsigned char* key, int rconIndex)
  230. {
  231. for (int k = 3; k > -1; k--)
  232. {
  233. if (k != 0)
  234. {
  235. for (int i = 0; i < 4; i++)
  236. {
  237. key[i*4+k] = key[i*4+k] ^ key[i*4+k-1];
  238. }
  239. }
  240. }
  241. }
  242.  
  243.  
  244.  
  245. void xorColumnByIndex (unsigned char* first, int indexF, unsigned char* second, int indexS)
  246. {
  247. for (int i = 0; i < 4; i++)
  248. {
  249. first[indexF+i*4] = first[indexF+i*4] ^ second[indexS+i*4];
  250. }
  251. }
  252.  
  253. void newKeyGenerate (unsigned char* key, int round, int inverse)
  254. {
  255. if (inverse == 0)
  256. {
  257. unsigned char holderState[16];
  258. copyArray(key, holderState);
  259.  
  260. rotWord(key);
  261. rowSubBytes(key);
  262. rowXor(key, holderState, round);
  263. }
  264. else
  265. {
  266. inverseRowXor(key, 0);
  267.  
  268. unsigned char holderState[16];
  269. copyArray(key, holderState);
  270. rotWord(holderState);
  271. rowSubBytes(holderState);
  272.  
  273. xorColumnByIndex(key,0,holderState,3);
  274. key[0] = key[0] ^ rcon[round];
  275. }
  276. }
  277.  
  278.  
  279. /*unsigned char state[] = { 0x54, 0x4f, 0x4e, 0x20,
  280. 0x77, 0x6e, 0x69, 0x54,
  281. 0x6f, 0x65, 0x6e, 0x77,
  282. 0x20, 0x20, 0x65, 0x6f};*/
  283. //unsigned char key[] = {0x54, 0x68,0x61,0x74,0x73,0x20,0x6d,0x79,0x20,0x4b,0x75,0x6e,0x67,0x20,0x46,0x75};
  284. //magnus har vent om på indekserne i key'ne så istedet for:
  285. // 0 4 8 12
  286. // 1 5 9 13
  287. // 2 6 10 14
  288. // 3 7 11 15
  289.  
  290. // så ser de generede key's sådan her ud:
  291. // 0 1 2 3
  292. // 4 5 6 7
  293. // 8 9 10 11
  294. // 12 13 14 15
  295.  
  296. //det er hvorfor det fucker up.
  297. //"vi skriver key'en ind på en forkert måde
  298. unsigned char key[] = {0x54, 0x73, 0x20, 0x67,0x68, 0x20, 0x4b, 0x20,0x61, 0x6d, 0x75, 0x46,0x74, 0x79, 0x6e, 0x75};
  299. //unsigned char key[] = {0x54,0x68,0x61,0x74,0x73,0x20,0x6d,0x79,0x20,0x4b,0x75,0x6e,0x67,0x20,0x46,0x75};
  300. unsigned char state[] = {0x54,0x77,0x6f,0x20,0x4f,0x6e,0x65,0x20,0x4e,0x69,0x6e,0x65,0x20,0x54,0x77,0x6f};
  301. //unsigned char state[] = {0x54,0x4f,0x4e,0x20,0x77,0x6e,0x69,0x54,0x6f,0x65,0x6e,0x77,0x20,0x20,0x65,0x6f};
  302.  
  303. unsigned char storeplaintext[256][16]; //array with arrays
  304.  
  305. void GeneratePlainTexts(){
  306. for(int i = 0; i < 256; i++){
  307. for(int x = 0; x < 16; x++){
  308. if(x == 0){
  309. storeplaintext[i][x] = i;
  310. }
  311. else{
  312. storeplaintext[i][x] = 0x0;
  313. }
  314.  
  315. }
  316. }
  317. }
  318.  
  319. unsigned char cipherTexts[256][16];
  320. /*
  321. void EncryptPlaintexts(unsigned char* key){
  322. for (int i = 0; i < 256; i++){
  323. unsigned char temp[16];
  324. copyArray(storeplaintext[i],temp);
  325. AESencryption(temp, key);
  326. for(int b = 0; b < 16; b++){
  327. cipherTexts[i][b] = temp[b];
  328. }
  329. }
  330. }
  331. */
  332.  
  333. //function for the last special AES round
  334. //could have been done with the T-table however, we already have the functions so why not
  335. void LastAESRound(unsigned char* state, unsigned char* key){
  336. subBytes(state);
  337. unsigned char temp[16];
  338. transposeMatrix(state,temp);
  339. shiftRows(state);
  340. transposeMatrix(state,temp);
  341. newKeyGenerate(key,3,0);
  342. addRoundKey(state,key);
  343. }
  344. void AESencryption(unsigned char *state, unsigned char *key){
  345. addRoundKey(state,key);
  346. PrintFunc(state);
  347. for(int i = 0; i < 2; i++){
  348. AESRound(state);
  349. newKeyGenerate(key,i,0);
  350. addRoundKey(state,key);
  351. PrintFunc(state);
  352.  
  353. }
  354. LastAESRound(state,key);
  355. PrintFunc(state);
  356. }
  357.  
  358. int main(void) {
  359.  
  360. GenerateTtables();
  361. GeneratePlainTexts();
  362. //encrypt all plaintexts to become ciphertext
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371. /*
  372. for(int k = 0; k < 256; k++){
  373. for(int x = 0; x < 16; x++){
  374. printf("%x, ",storeplaintext[k][x]);
  375. }
  376. printf("\n ");
  377. }
  378.  
  379. */
  380.  
  381.  
  382. return EXIT_SUCCESS;
  383.  
  384. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement