]> git.meshlink.io Git - meshlink/commit
Make hexadecimal and base64 routines behave the same.
authorGuus Sliepen <guus@tinc-vpn.org>
Tue, 12 Jul 2011 20:54:49 +0000 (22:54 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Tue, 12 Jul 2011 21:23:26 +0000 (23:23 +0200)
commit06b8271ed5d56c9bd3de459d95907d0ef4f0ea3c
tree3b3436b21357f64f66295f2b136718fb03a051fb
parentc108c79a22118ef7246a3d7b3bc20e205e11d179
Make hexadecimal and base64 routines behave the same.

The length parameter for the encoding functions is the length of the
binary input, and for the decoding functions it is the maximum size of
the binary output.

The return value is always the length of the resulting output, excluding
the terminating NULL character for the encoding routines.

All functions can encode and decode in-place. The encoding functions
will always write a terminating NULL character, and the decoding
functions will stop at a NULL character.
src/utils.c
src/utils.h