diff options
author | Werner Koch <[email protected]> | 2016-06-23 07:48:54 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-06-23 07:51:41 +0000 |
commit | f8b8027ae63c957557ed6bdc7e5a30ef1bdd8e77 (patch) | |
tree | 8a7e9fac4452e8f1ef7c7e1148062f2b0d91b9e5 /src/Makefile.am | |
parent | core: Detect compressed signed OpenPGP data. (diff) | |
download | gpgme-f8b8027ae63c957557ed6bdc7e5a30ef1bdd8e77.tar.gz gpgme-f8b8027ae63c957557ed6bdc7e5a30ef1bdd8e77.zip |
core: Add a base 64 decoder.
* src/b64dec.c: New. Taken from gnupg. Prefix function names with
_gpgme_ and change to use standard C malloc functions.
* src/util.h.h (struct b64state): New.
* src/Makefile.am (main_sources): Add file.
--
The file b64dec.c has been taken from gnupg commit
e430ff6ad0b7dcfcebd92b825dd5168205447ff3
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 951fc00b..6691540b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -74,7 +74,7 @@ endif # right linking order with libtool, as the non-installed version has # unresolved symbols to the thread module. main_sources = \ - util.h conversion.c get-env.c context.h ops.h \ + util.h conversion.c b64dec.c get-env.c context.h ops.h \ parsetlv.c parsetlv.h \ data.h data.c data-fd.c data-stream.c data-mem.c data-user.c \ data-compat.c data-identify.c \ |