summaryrefslogtreecommitdiff
path: root/lib/util/base64.c
Commit message (Collapse)AuthorAgeFilesLines
* lib: Avoid includes.h in base64.cVolker Lendecke2016-05-041-1/+1
| | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* lib: Give base64.c its own .hVolker Lendecke2016-05-041-0/+1
| | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* lib: Remove SMB_ASSERT from base64_encode_data_blobVolker Lendecke2016-05-041-1/+3
| | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* lib: =0 and |= is equivalent to =Volker Lendecke2016-05-041-2/+1
| | | | | | | Just a small simplication I thought might be nice Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* lib: The base64 chars are by definition single-byte :-)Volker Lendecke2016-05-041-1/+1
| | | | | | | Remove a dependency on charcnv Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* lib: added base64_decode_data_blob_talloc()Andrew Tridgell2011-09-081-2/+11
| | | | | | its nice to be able to allocate on other than NULL Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* lib/util Move base64 functions into lib/util/base64.cAndrew Bartlett2011-03-301-0/+141
Andrew Bartlett