diff options
author | Werner Koch <[email protected]> | 2001-11-13 12:50:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-11-13 12:50:14 +0000 |
commit | 90d060c1997c6c0b9f26c9088020d62f91d450da (patch) | |
tree | b2e7720d625699a49729b36286fb66a774c5faed /sm/util.h | |
parent | A Makefile is a pretty useful thing (diff) | |
download | gnupg-90d060c1997c6c0b9f26c9088020d62f91d450da.tar.gz gnupg-90d060c1997c6c0b9f26c9088020d62f91d450da.zip |
We have reached a state where we are able to import certs and
check the certification path.
Diffstat (limited to '')
-rw-r--r-- | sm/util.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -23,6 +23,10 @@ #include <gcrypt.h> /* we need this for the memory function protos */ +/* to pass the fucntion to libksba we need to cast it */ +#define HASH_FNC ((void (*)(void *, const byte*,size_t))gcry_md_write) + + #include "../jnlib/logging.h" #include "../jnlib/argparse.h" #include "../jnlib/stringhelp.h" @@ -46,5 +50,9 @@ /*-- misc.c --*/ int map_ksba_err (int err); +int map_gcry_err (int err); +int map_kbx_err (int err); #endif /*UTIL_H*/ + + |