reformat code

This commit is contained in:
PolynomialDivision 2017-10-23 15:45:37 +02:00
parent a2b7faee97
commit 377d0815e9
13 changed files with 116 additions and 124 deletions

View file

@ -59,7 +59,7 @@ void gcrypt_set_key_and_iv(char *key, char *iv) {
}
// free out buffer after using!
char *gcrypt_encrypt_msg(char *msg, size_t msg_length, int* out_length) {
char *gcrypt_encrypt_msg(char *msg, size_t msg_length, int *out_length) {
if (0U != (msg_length & 0xfU))
msg_length += 0x10U - (msg_length & 0xfU);