diff options
Diffstat (limited to '')
-rw-r--r-- | g10/main.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/g10/main.h b/g10/main.h index c162fd9cd..82f2373d7 100644 --- a/g10/main.h +++ b/g10/main.h @@ -21,6 +21,7 @@ #define G10_MAIN_H #include "types.h" #include "iobuf.h" +#include "mpi.h" #include "cipher.h" #include "keydb.h" @@ -39,6 +40,11 @@ typedef struct { void g10_exit(int rc); #endif +/*-- misc.c --*/ +u16 checksum_u16( unsigned n ); +u16 checksum( byte *p, unsigned n ); +u16 checksum_mpi( MPI a ); + /*-- encode.c --*/ int encode_symmetric( const char *filename ); int encode_store( const char *filename ); |