X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=mobile-com.git;a=blobdiff_plain;f=DH-Keccak%2Fassets%2FKremKeccak%2Fkrem_keccak.c;h=7a64c052ee15dc6fe874556bf07884fef19972e4;hp=565ff26abbdc3a015de3a926a76c6a18b26e58e5;hb=c64e115f8b6631df419a207f11d394c1b241d2bd;hpb=25220e0721460c0e187f221feb22f19eb6dc06a4 diff --git a/DH-Keccak/assets/KremKeccak/krem_keccak.c b/DH-Keccak/assets/KremKeccak/krem_keccak.c index 565ff26..7a64c05 100644 --- a/DH-Keccak/assets/KremKeccak/krem_keccak.c +++ b/DH-Keccak/assets/KremKeccak/krem_keccak.c @@ -37,7 +37,7 @@ int main(int argc, char *argv[]) { r = 576; c = 1024; - state = (spongeState*) calloc(1, sizeof(spongeState)); + state = calloc(1, sizeof(spongeState)); if(stat(argv[1], &input_stat) || input_stat.st_size <= 0) { @@ -55,8 +55,8 @@ int main(int argc, char *argv[]) { exit(1); } - input_buf = (unsigned char *) calloc(1, (size_t) input_stat.st_size); - output_buf = (unsigned char *) calloc(1, (size_t) 64); + input_buf = calloc(1, (size_t) input_stat.st_size); + output_buf = calloc(1, (size_t) 64); if( ! (input_bytes_read = fread(input_buf, 1, (size_t)input_stat.st_size, input))) {