Home | History | Annotate | Download | only in minizip

Lines Matching defs:password

194     printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \
201 " -p extract encrypted file using password\n\n");
307 static int do_extract_currentfile(unzFile uf, const int* popt_extract_without_path, int* popt_overwrite, const char* password) {
373 err = unzOpenCurrentFilePassword(uf,password);
478 static int do_extract(unzFile uf, int opt_extract_without_path, int opt_overwrite, const char* password) {
491 password) != UNZ_OK)
508 static int do_extract_onefile(unzFile uf, const char* filename, int opt_extract_without_path, int opt_overwrite, const char* password) {
517 password) == UNZ_OK)
527 const char *password=NULL;
574 password=argv[i+1];
639 ret_value = do_extract(uf, opt_do_extract_withoutpath, opt_overwrite, password);
641 ret_value = do_extract_onefile(uf, filename_to_extract, opt_do_extract_withoutpath, opt_overwrite, password);