2011-01-22 11 views

Odpowiedz

2

7-Zip (LZMA SDK) obsługuje chronione hasłem archiwum.

Podobne SO postu:
https://stackoverflow.com/questions/221049/how-secure-is-7-zip

LZMA SDK:
http://www.7-zip.org/sdk.html

+0

Wygląda na to, że SDK LZMA będzie działał ... szkoda, nie ma jednak dystrybucji binarnych. – freedrull

+0

Pakiet SDK LZMA okazał się trudny do użycia i nie mogłem znaleźć funkcji archiwów chroniących hasła. Ta mała biblioteka była jednak kawałkiem ciasta do użycia! http://www.codeproject.com/KB/files/zip_utils.aspx – freedrull

+0

Jednak tworzone przez niego pliki zip zabezpieczone hasłem nie działają na Windows 7 ... Windows 7 twierdzi, że są nieważne przy próbie ich otwarcia. – freedrull

0

MINIZIP + zlib obsługuje szyfrowanie AES 256 i jest bardzo łatwy w użyciu!

Kod oparty na minizip unzip.c. to stdio.h zip.h unzip.h

Najpierw utwórz zip z plikiem wewnątrz za pomocą hasła. Plik zip musi znajdować się w tym samym katalogu co plik wykonywalny. Uruchom program z poziomu zachęty w katalogu wygenerowanego programu. Ten przykład wyodrębnia tylko pierwszy plik!

/*-----------start-------------- */ 
/*Tries to open the zip in the current directory.*/ 
unzFile zfile = unzOpen("teste.zip"); 
if(zfile==NULL) 
{ 
    printf("Error!"); 
    return; 
} 

printf("OK Zip teste.zip opened...\n"); 


int err = unzGoToFirstFile(zfile);/*go to first file in zip*/ 
if (err != UNZ_OK) 
{ 
    printf("error %d with zipfile in unzGoToFirstFile\n", err); 
    unzClose(zfile);/*close zip*/ 
} 

/*At this point zfile points to the first file contained in the zip*/ 

char filename_inzip[256] = {0};/* The file name will be returned here */ 
unz_file_info file_info = {0};/*strcuture with info of the first file*/ 

err = unzGetCurrentFileInfo(zfile, &file_info, filename_inzip, sizeof(filename_inzip), NULL, 0, NULL, 0); 
if (err != UNZ_OK) 
{ 
    printf("error %d with zipfile in unzGetCurrentFileInfo\n",err); 
} 
else 
{ 
    int len = 8192;/*size of chunk*/ 
    char buffer[8192]={0};/*buffer used to save uncompressed data*/ 
    printf("name of first file is :%s\n",filename_inzip); 
    printf("uncompressed_size = %d\n",file_info.uncompressed_size); 

    /*Use your password here, the same one used to create your zip */ 
    err = unzOpenCurrentFilePassword(zfile, "yourpassword"); 
    if (err != UNZ_OK) 
     printf("error %d with zipfile in unzOpenCurrentFilePassword\n", err); 
    else 
     printf("password ok\n"); 

    FILE *fp = fopen(filename_inzip, "wb");/*file for data binary type*/ 
    if (fp != NULL) 
    { 
     do 
     {/*read the current file returned by unzGoToFirstFile to buffer in chunks of the 8192*/ 
      err = unzReadCurrentFile(zfile, &buffer, len); 
      if (err < 0) 
      { 
       printf("error %d with zipfile in unzReadCurrentFile\n", err); 
       break; 
      } 
      if (err == 0) 
       break; 
      /*Save the chunk read to the file*/ 
      if (fwrite(&buffer, err, 1, fp) != 1)/*if error break*/ 
      { 
       printf("error %d in writing extracted file\n", errno); 
       err = UNZ_ERRNO; 
       break; 
      }/*else continue*/ 
     } 
     while (err > 0); 
     /*close file*/ 
     fclose(fp); 
    } 
} 

unzClose(zfile); 
Powiązane problemy