summaryrefslogtreecommitdiff
path: root/libarchive/archive_write_add_filter_b64encode.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement private state logic for write filtersMartin Matuska2019-12-061-5/+0
| | | | | | | | | This ensures that filters may be opened and closed only once and __archive_write_filter() may be called only on an open filter. Refactor filter open code and move logic to archive_write.c Fixes #351
* Refactor archive_write_close_filter logicJoerg Sonnenberger2019-11-271-6/+1
|
* b64encode: avoid name conflict with Solaris built-in functionBrad King2019-05-211-5/+5
| | | | | Solaris 11.4 has a built-in function named `b64_encode`. Add a `la_` prefix to our internal function to avoid conflict.
* Introduce b64encode filter.Michihiro NAKAJIMA2012-10-081-0/+314