~ubuntu-branches/ubuntu/maverick/gnutls26/maverick-updates

« back to all changes in this revision

Viewing changes to lib/openpgp/openpgp_int.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2009-04-14 14:23:19 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090414142319-ok7xejzbqkofno1q
Tags: 2.6.5-1
* Sync sections in debian/control with override file. libgnutls26-dbg is
  section debug, guile-gnutls is section lisp.
* New upstream version. (Needed for Libtasn1-3 2.0)
* New patch 15_tasn1inpc.diff. Make sure libtasn1 is listed in Libs.private.
* Standards-Version: 3.8.1, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef OPENPGP_LOCAL_H
2
2
# define OPENPGP_LOCAL_H
3
3
 
4
 
#if HAVE_CONFIG_H
 
4
#ifdef HAVE_CONFIG_H
5
5
# include <config.h>
6
6
#endif
7
7
 
53
53
 
54
54
int
55
55
_gnutls_openpgp_crt_get_mpis (gnutls_openpgp_crt_t cert, uint32_t keyid[2],
56
 
                           mpi_t * params, int *params_size);
 
56
                           bigint_t * params, int *params_size);
57
57
 
58
58
int
59
59
_gnutls_openpgp_privkey_get_mpis (gnutls_openpgp_privkey_t pkey, uint32_t keyid[2],
60
 
                           mpi_t * params, int *params_size);
 
60
                           bigint_t * params, int *params_size);
61
61
 
62
62
cdk_packet_t _gnutls_openpgp_find_key( cdk_kbnode_t knode, uint32_t keyid[2], unsigned int priv);
63
63
 
64
 
int _gnutls_read_pgp_mpi( cdk_packet_t pkt, unsigned int priv, size_t idx, mpi_t* m);
 
64
int _gnutls_read_pgp_mpi( cdk_packet_t pkt, unsigned int priv, size_t idx, bigint_t* m);
65
65
 
66
66
int _gnutls_openpgp_find_subkey_idx( cdk_kbnode_t knode, uint32_t keyid[2], 
67
67
  unsigned int priv);