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

« back to all changes in this revision

Viewing changes to memxor.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:
8
8
#include <stdlib.h>
9
9
#include "nettle-types.h"
10
10
 
 
11
#ifdef __cplusplus
 
12
extern "C" {
 
13
#endif
 
14
 
11
15
uint8_t *memxor(uint8_t *dst, const uint8_t *src, size_t n);
12
16
uint8_t *memxor3(uint8_t *dst, const uint8_t *a, const uint8_t *b, size_t n);
13
17
 
 
18
#ifdef __cplusplus
 
19
}
 
20
#endif
 
21
 
14
22
#endif /* NETTLE_MEMXOR_H_INCLUDED */