Skip to content

Commit

Permalink
Fix indentation, use spaces instead of tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
delivrance committed Mar 26, 2018
1 parent 8471a40 commit 690b77e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tgcrypto/ctr256.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ uint8_t *ctr256(const uint8_t in[], uint32_t length, const uint8_t key[32], cons
uint8_t *out = (uint8_t *) malloc(length * sizeof(uint8_t));
uint8_t iv_buf[AES_BLOCK_SIZE], out_buf[AES_BLOCK_SIZE];
uint32_t key_schedule[KEY_SCHEDULE_SIZE];
uint32_t i, j;
uint32_t i, j;

memcpy(out, in, length);
memcpy(iv_buf, iv, AES_BLOCK_SIZE);
Expand Down

0 comments on commit 690b77e

Please sign in to comment.