Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had to develop a C programm for linux serv, that would be able to read and decrypt an encrypted archive which would then become a gzip archive. And finally read the content of this gz archive. I used gcc and -lz/-lcrypto flags to compile my prog. The first step was done using mmap like this :

#include <zlib.h>
#include <sys/mman.h>

...

int fd = open ("blabla.crypt", O_RDONLY);  // where blabla.crypt is an encrypted gz archive

if (fd == -1)
{
    printf("Error while opening blabla.crypt\n");
    return 1;
}
int nbytes = lseek(fd, 0, SEEK_END);
unsigned char *content;
content = (unsigned char *) mmap(NULL, nbytes, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);

and then, using decrypt functions on "content" and re-write it into a "blabla.gz". Finally, for the second step, i used zlib functions to read into my blabla.gz

gzFile *fi = (gzFile *)gzopen("blabla.gz","rb"); 
int fgz = open ("blabla.gz", O_RDONLY);
int len_gz = 0;
len_gz = lseek(fgz, 0, SEEK_END); 
char tmp[len_gz+256];
int cpt = 0;
while(!gzeof(fi)) 
{
  len_archive = gzread(fi, buf, 1); 

  if(len<0){
    const char * error_string;
    error_string = gzerror (fi, & error_gz);
    if (error_gz) {
            fprintf (stderr, "Error while opening gz file: %s.\n", error_string);
            exit (EXIT_FAILURE);
            }
    }

  else{
    memcpy(tmp+cpt, buf, 1);
    cpt++;
    }
}

etc... And this work pretty well on debian plate. But after some months, i have now to implement this "techno" for a windows serv, using WPF C. And here are my questions : how can i replace/use the sys/mman on windows?, is the gzread, gzopen..etc functions are available and are used the same way as above?, how i will compile the prog and replace "-lcrypto" "-lz" flags?.. Sorry for these questions maybe obvious but i'm kinda weak on multi-plateforms compilation/integration.

Thanks to all

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.