diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-19 01:31:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:29 -0500 |
commit | 56cc32800036472ebc29362d65e422c0b410e3fc (patch) | |
tree | cc590e85fde04ffac6dc296cfdb4a9844126b6e8 /source4/lib/ldb/include/ldb.h | |
parent | 814d5a5011038164dd55dd9e593989f69cedef0d (diff) | |
download | samba-56cc32800036472ebc29362d65e422c0b410e3fc.tar.gz samba-56cc32800036472ebc29362d65e422c0b410e3fc.tar.bz2 samba-56cc32800036472ebc29362d65e422c0b410e3fc.zip |
r7740: get rid of our duplicate base64 routines
(This used to be commit cf17f90a83cf04815544c5408eb56d00546b3e88)
Diffstat (limited to 'source4/lib/ldb/include/ldb.h')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index ecfa77f436..e980633a62 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -270,6 +270,8 @@ struct ldb_ldif *ldb_ldif_read(struct ldb_context *ldb, struct ldb_ldif *ldb_ldif_read_file(struct ldb_context *ldb, FILE *f); struct ldb_ldif *ldb_ldif_read_string(struct ldb_context *ldb, const char *s); int ldb_ldif_write_file(struct ldb_context *ldb, FILE *f, const struct ldb_ldif *msg); +char *ldb_base64_encode(void *mem_ctx, const char *buf, int len); +int ldb_base64_decode(char *s); /* useful functions for ldb_message structure manipulation */ |