~ubuntu-branches/ubuntu/precise/nettle/precise

« back to all changes in this revision

Viewing changes to nettle-types.h

  • Committer: Bazaar Package Importer
  • Author(s): Magnus Holmgren
  • Date: 2008-04-20 00:40:55 UTC
  • mfrom: (3.1.7 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080420004055-r0jr22szk4aub1v5
Tags: 1.15-5
* New maintainer email address.
* Bring debian/control format up-to-date with Homepage and Vcs fields.
* Add machine-readable copyright information to debian/copyright and
  clarify licensing of nettle-lfib-stream.1 and pkcs1-conv.1. The
  machine-readable information may not be completely accurate at this
  point due to the many different authors and licenses.
* Don't ignore make potential distclean errors.
* debian/libnettle-dev.doc-base: Change section to Programming/C
  following the abolishion of the Apps section.
* Bump Standards-Version to 3.7.3 without any changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include "nettle-stdint.h"
27
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif
 
31
 
28
32
/* Uses a void * for cipher contexts.
29
33
 
30
34
   For block ciphers it would make sense with a const void * for the
37
41
 
38
42
/* FIXME: Move more of the typedefs to this file? */
39
43
 
 
44
#ifdef __cplusplus
 
45
}
 
46
#endif
 
47
 
40
48
#endif /* NETTLE_TYPES_H */
41