aboutsummaryrefslogtreecommitdiffstats
path: root/agent/minip12.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2003-06-27 20:53:09 +0000
committerWerner Koch <[email protected]>2003-06-27 20:53:09 +0000
commitf5db59fc21f172a2a71ed0c10f249efaa7ad794e (patch)
tree4d6e8c746037a053f972c2da4da1575bb076e4fd /agent/minip12.h
parentFinished the bulk of changes for gnupg 1.9. This included switching (diff)
downloadgnupg-f5db59fc21f172a2a71ed0c10f249efaa7ad794e.tar.gz
gnupg-f5db59fc21f172a2a71ed0c10f249efaa7ad794e.zip
Key generation and signing using the OpenPGP card does rudimentary work.
Diffstat (limited to 'agent/minip12.h')
-rw-r--r--agent/minip12.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/agent/minip12.h b/agent/minip12.h
index 8573a2db0..122215549 100644
--- a/agent/minip12.h
+++ b/agent/minip12.h
@@ -1,5 +1,5 @@
/* minip12.h - Global definitions for the minimal pkcs-12 implementation.
- * Copyright (C) 2002 Free Software Foundation, Inc.
+ * Copyright (C) 2002, 2003 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@@ -23,10 +23,11 @@
#include <gcrypt.h>
-GcryMPI *p12_parse (const unsigned char *buffer, size_t length,
- const char *pw);
+gcry_mpi_t *p12_parse (const unsigned char *buffer, size_t length,
+ const char *pw);
-unsigned char *p12_build (GcryMPI *kparms, const char *pw, size_t *r_length);
+unsigned char *p12_build (gcry_mpi_t *kparms, const char *pw,
+ size_t *r_length);
#endif /*MINIP12_H*/