This commit is contained in:
Frank Denis 2017-07-29 21:49:20 +02:00
parent 63d8a896fe
commit a3f90d6020

View File

@ -10,9 +10,9 @@ static void
tv(void) tv(void)
{ {
static struct { static struct {
const char * passwd_hex; const char *passwd_hex;
size_t passwdlen; size_t passwdlen;
const char * salt_hex; const char *salt_hex;
size_t outlen; size_t outlen;
unsigned long long opslimit; unsigned long long opslimit;
size_t memlimit; size_t memlimit;
@ -117,9 +117,9 @@ static void
tv2(void) tv2(void)
{ {
static struct { static struct {
const char * passwd_hex; const char *passwd_hex;
size_t passwdlen; size_t passwdlen;
const char * salt_hex; const char *salt_hex;
size_t outlen; size_t outlen;
unsigned long long opslimit; unsigned long long opslimit;
size_t memlimit; size_t memlimit;
@ -286,9 +286,9 @@ tv3(void)
int int
main(void) main(void)
{ {
char * str_out; char *str_out;
char * str_out2; char *str_out2;
char * salt; char *salt;
const char *passwd = "Correct Horse Battery Staple"; const char *passwd = "Correct Horse Battery Staple";
tv(); tv();