Reformat all code using astyle.
[tinc] / src / ed25519 / sha512.h
index e23f8db..95461ce 100644 (file)
@@ -7,15 +7,15 @@
 
 /* state */
 typedef struct sha512_context_ {
-    uint64_t  length, state[8];
-    size_t curlen;
-    unsigned char buf[128];
+       uint64_t  length, state[8];
+       size_t curlen;
+       unsigned char buf[128];
 } sha512_context;
 
 
-int sha512_init(sha512_context * md);
-int sha512_final(sha512_context * md, void *out);
-int sha512_update(sha512_context * md, const void *in, size_t inlen);
+int sha512_init(sha512_context *md);
+int sha512_final(sha512_context *md, void *out);
+int sha512_update(sha512_context *md, const void *in, size_t inlen);
 int sha512(const void *message, size_t message_len, void *out);
 
 #endif