1ARCHIVE_WRITE_SET_PAS... BSD Library Functions Manual ARCHIVE_WRITE_SET_PAS...
2

NAME

4     archive_write_set_passphrase, archive_write_set_passphrase_callback 
5     functions for writing encrypted archives
6

LIBRARY

8     Streaming Archive Library (libarchive, -larchive)
9

SYNOPSIS

11     #include <archive.h>
12
13     int
14     archive_write_set_passphrase(struct archive *, const char *passphrase);
15
16     int
17     archive_write_set_passphrase_callback(struct archive *,
18         void *client_data, archive_passphrase_callback *);
19

DESCRIPTION

21     archive_write_set_passphrase()
22             Set a passphrase for writing an encrypted archive.  If passphrase
23             is NULL or empty, this function will do nothing and
24             ARCHIVE_FAILED will be returned.  Otherwise, ARCHIVE_OK will be
25             returned.
26
27     archive_write_set_passphrase_callback()
28             Register a callback function that will be invoked to get a
29             passphrase for encryption if the passphrase was not set by the
30             archive_write_set_passphrase() function.
31

SEE ALSO

33     tar(1), archive_write(3), archive_write_set_options(3), libarchive(3)
34
35BSD                           September 21, 2014                           BSD
Impressum