diff options
author | JP Aumasson <jeanphilippe.aumasson@gmail.com> | 2014-03-23 12:22:30 +0100 |
---|---|---|
committer | JP Aumasson <jeanphilippe.aumasson@gmail.com> | 2014-03-23 12:22:30 +0100 |
commit | d39aafe4163d5137814281afd906fe63c64486fb (patch) | |
tree | ac6aa5a20871d3b935fdd70eb41aaf87bb6c299b /main.c | |
parent | code and readme (diff) | |
download | siphash-d39aafe4163d5137814281afd906fe63c64486fb.tar.gz siphash-d39aafe4163d5137814281afd906fe63c64486fb.tar.xz |
code formatting
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* SipHash reference C implementation - Written in 2012 by + Written in 2012 by Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com> Daniel J. Bernstein <djb@cr.yp.to> @@ -20,7 +20,7 @@ typedef uint32_t u32; typedef uint8_t u8; extern int siphash( unsigned char *out, const unsigned char *in, - unsigned long long inlen, const unsigned char *k ); + unsigned long long inlen, const unsigned char *k ); /* SipHash-2-4 output with @@ -131,7 +131,7 @@ int main() { if ( test_vectors() ) printf( "test vectors ok\n" ); - else + else printf( "test vectors fail\n" ); return 0; |