#include #include #include #include #include "unif01.h" #include "gdef.h" #include "swrite.h" #include "bbattery.h" //----------------------------------------- // // rm -f ./cipher__Rabbit_Alphabit; gcc cipher__Rabbit_Alphabit.c -o cipher__Rabbit_Alphabit -ltestu01 -lprobdist -lmylib -lm // // ./cipher__Rabbit_Alphabit InFile > cipher__Rabbit_Alphabit.result.txt // // --------- // // dd if=/dev/zero bs=1024 count=10000 of=~/Public/zero_10MB.bin // // ./theCipherApp-to-encrypt in=zero_10MB.bin out=zero_10MB.bin.cipher // // ./cipher__Rabbit_Alphabit ~/Public/zero_10MB.bin.cipher // //----------------------------------------- // void ShowUsage(char* ThisName) { fprintf(stderr, "Usage: %s InFile\n", ThisName); } //----------------------------------------- // Main // int main (int argc, char *argv[]) { // Check if a Prarmeter is passed through char* PrgName; char* InFile; PrgName = argv[0]; if (argc != 2) { ShowUsage(PrgName); return 1; } InFile = argv[1]; uint32_t maxbyte; FILE *f = fopen(InFile, "rb"); if (f == NULL) { printf("error opening file: %s\n", InFile); return -1; } fseek(f , 0 , SEEK_END); maxbyte = ftell(f); fclose(f); swrite_Basic = FALSE; // true for detailed results of TestU01 printf("\n==============================================\n"); printf("%d byte for testing\n\n", maxbyte); printf("\n======== Running Rabbit Test =========\n"); bbattery_RabbitFile(InFile, maxbyte); printf("\n\n*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n\n\n\n"); printf("\n======== Running Alphabit Test ========\n"); bbattery_AlphabitFile(InFile, maxbyte); return 0; }