Unify coding style
@sjaeckel integrated clang-format with formal coding style. Run his script and commit changes. There are pros and cons of this commit. Mixed coding style is a "broken window". A good single style simplifies reading and writing code. On the other hand, this is a big change which will lead to conflicts.
This commit is contained in:
10
src/scram.h
10
src/scram.h
@@ -21,12 +21,16 @@
|
||||
|
||||
#include "sha1.h"
|
||||
|
||||
void SCRAM_SHA1_ClientKey(const uint8_t *password, size_t len,
|
||||
const uint8_t *salt, size_t salt_len, uint32_t i,
|
||||
void SCRAM_SHA1_ClientKey(const uint8_t *password,
|
||||
size_t len,
|
||||
const uint8_t *salt,
|
||||
size_t salt_len,
|
||||
uint32_t i,
|
||||
uint8_t *key);
|
||||
|
||||
void SCRAM_SHA1_ClientSignature(const uint8_t *ClientKey,
|
||||
const uint8_t *AuthMessage, size_t len,
|
||||
const uint8_t *AuthMessage,
|
||||
size_t len,
|
||||
uint8_t *sign);
|
||||
|
||||
void SCRAM_SHA1_ClientProof(const uint8_t *ClientKey,
|
||||
|
||||
Reference in New Issue
Block a user