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

@ -12,7 +12,7 @@ void gcrypt_init();
void gcrypt_set_key_and_iv(char *key, char *iv);
//char *gcrypt_encrypt_msg(char *msg, size_t msg_length);
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);
char *gcrypt_decrypt_msg(char *msg, size_t msg_length);
@ -31,8 +31,11 @@ void build_decoding_table();
void base64_cleanup();
int Base64decode_len(const char *bufcoded);
int Base64encode_len(int len);
int Base64encode(char *encoded, const char *string, int len);
int Base64decode(char *bufplain, const char *bufcoded);