Windows: disable WINZIP Aes encryption support since we don't use.

This commit is contained in:
Mounir IDRASSI 2017-04-26 00:13:27 +02:00
parent d081d6143e
commit d1509a2d5a
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC
1 changed files with 2 additions and 2 deletions

View File

@ -44,12 +44,12 @@ _zip_get_encryption_implementation(zip_uint16_t em, int operation)
return NULL;
}
return zip_source_pkware;
/*
case ZIP_EM_AES_128:
case ZIP_EM_AES_192:
case ZIP_EM_AES_256:
return operation == ZIP_CODEC_DECODE ? zip_source_winzip_aes_decode : zip_source_winzip_aes_encode;
*/
default:
return NULL;
}