GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ZIP_FILE_SET_ENCRYPTION(3) FreeBSD Library Functions Manual ZIP_FILE_SET_ENCRYPTION(3)

zip_file_set_encryption
set encryption method for file in zip

libzip (-lzip)

#include <zip.h>

int
zip_file_set_encryption(zip_t *archive, zip_uint64_t index, zip_uint16_t method, const char *password);

The zip_file_set_encryption() function sets the encryption method for the file at position index in the zip archive to method using the password password. The method is the same as returned by zip_stat(3). For the method argument, currently only the following values are supported:
No encryption.
Winzip AES-128 encryption.
Winzip AES-192 encryption.
Winzip AES-256 encryption.
Traditional PKWare encryption. Do not use this method, it is not secure. It is only provided for backwards compatibility.

If password is NULL, the default password provided by zip_set_default_password(3) is used.

The current encryption method for a file in a zip archive can be determined using zip_stat(3).

Upon successful completion 0 is returned. Otherwise, -1 is returned and the error information in archive is set to indicate the error.

zip_file_set_encryption() fails if:
[]
Unsupported compression method requested.
[]
index is not a valid file index in archive, or the argument combination is invalid.
[]
Required memory could not be allocated.
[]
Read-only zip file, no changes allowed.

libzip(3), zip_encryption_method_supported(3), zip_fopen_encrypted(3), zip_fopen_index_encrypted(3), zip_set_default_password(3), zip_stat(3)

zip_file_set_encryption() was added in libzip 1.2.0.

Dieter Baron <dillo@nih.at> and Thomas Klausner <tk@giga.or.at>
April 2, 2020 FreeBSD 13.1-RELEASE

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.