summaryrefslogtreecommitdiff
path: root/archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2017-08-01 22:21:09 +0000
committerjoerg <joerg@pkgsrc.org>2017-08-01 22:21:09 +0000
commit8ebf4e7079542370a0dd5eba7eed1790d20c7f96 (patch)
tree3c71484d8e555935fd266acfd45eff3b04d0f139 /archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt
parentc8fcd52665c6781876ed54832bd7f6ea46348688 (diff)
downloadpkgsrc-8ebf4e7079542370a0dd5eba7eed1790d20c7f96.tar.gz
Import libarchive-3.3.2 + 9de5f3 + f9dacbf:
- Support NFS4 ACLs on Linux - Bugfixes
Diffstat (limited to 'archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt')
-rw-r--r--archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt34
1 files changed, 17 insertions, 17 deletions
diff --git a/archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt b/archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt
index 7e90d7368ed..745ada7c9b4 100644
--- a/archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt
+++ b/archivers/libarchive/files/doc/text/archive_read_add_passphrase.3.txt
@@ -1,35 +1,35 @@
ARCHIVE_READ_ADD_PASS... BSD Library Functions Manual ARCHIVE_READ_ADD_PASS...
-1mNAME0m
- 1marchive_read_add_passphrase22m, 1marchive_read_set_passphrase_callback 22m— func‐
+NAME
+ archive_read_add_passphrase, archive_read_set_passphrase_callback — func‐
tions for reading encrypted archives
-1mLIBRARY0m
+LIBRARY
Streaming Archive Library (libarchive, -larchive)
-1mSYNOPSIS0m
- 1m#include <archive.h>0m
+SYNOPSIS
+ #include <archive.h>
- 4mint0m
- 1marchive_read_add_passphrase22m(4mstruct24m 4marchive24m 4m*24m, 4mconst24m 4mchar24m 4m*passphrase24m);
+ int
+ archive_read_add_passphrase(struct archive *, const char *passphrase);
- 4mint0m
- 1marchive_read_set_passphrase_callback22m(4mstruct24m 4marchive24m 4m*24m, 4mvoid24m 4m*client_data24m,
- 4marchive_passphrase_callback24m 4m*24m);
+ int
+ archive_read_set_passphrase_callback(struct archive *, void *client_data,
+ archive_passphrase_callback *);
-1mDESCRIPTION0m
- 1marchive_read_add_passphrase22m()
+DESCRIPTION
+ archive_read_add_passphrase()
Register passphrases for reading an encryption archive. If
- 4mpassphrase24m is NULL or empty, this function will do nothing and
- 1mARCHIVE_FAILED 22mwill be returned. Otherwise, 1mARCHIVE_OK 22mwill be
+ passphrase is NULL or empty, this function will do nothing and
+ ARCHIVE_FAILED will be returned. Otherwise, ARCHIVE_OK will be
returned.
- 1marchive_read_set_passphrase_callback22m()
+ archive_read_set_passphrase_callback()
Register callback function that will be invoked to get a
passphrase for decrption after trying all passphrases registered
- by the 1marchive_read_add_passphrase22m() function failed.
+ by the archive_read_add_passphrase() function failed.
-1mSEE ALSO0m
+SEE ALSO
tar(1), libarchive(3), archive_read(3), archive_read_set_options(3)
BSD September 14, 2014 BSD