diff options
author | Werner Koch <[email protected]> | 2006-09-15 18:53:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-09-15 18:53:37 +0000 |
commit | 7f42987b075e39847cb576388419747e0a167e42 (patch) | |
tree | a22758549e243c6b930f311ad0bcf3d99e3327fe /common/util.h | |
parent | Take advantage of newer gpg-error features. (diff) | |
download | gnupg-7f42987b075e39847cb576388419747e0a167e42.tar.gz gnupg-7f42987b075e39847cb576388419747e0a167e42.zip |
Allow for a global trustlist.
Diffstat (limited to '')
-rw-r--r-- | common/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/util.h b/common/util.h index 92b88aa8d..da1e098cb 100644 --- a/common/util.h +++ b/common/util.h @@ -144,6 +144,12 @@ int cmp_simple_canon_sexp (const unsigned char *a, const unsigned char *b); unsigned char *make_simple_sexp_from_hexstr (const char *line, size_t *nscanned); +/*-- convert.c --*/ +int hexcolon2bin (const char *string, void *buffer, size_t length); +char *bin2hex (const void *buffer, size_t length, char *stringbuf); +char *bin2hexcolon (const void *buffer, size_t length, char *stringbuf); + + /*-- homedir.c --*/ const char *default_homedir (void); |