~ubuntu-branches/ubuntu/jaunty/heimdal/jaunty

« back to all changes in this revision

Viewing changes to lib/hcrypto/aes.h

  • Committer: Bazaar Package Importer
  • Author(s): Nick Ellery
  • Date: 2008-11-17 22:25:58 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20081117222558-jd1aj1jth6ycdb0x
Tags: 1.2.dfsg.1-2.1ubuntu1
* Merge from debian unstable, remaining changes (LP: #299345):
  - Change libdb4.2-dev to libdb4.6-dev in build-deps
  - Add netbase to heimdal-kdc depends.
  - Set CPPFLAGS=-DLDAP_DEPRECATED to fix build with OpenLDAP 2.4 on
    64-bit architectures.
* Remove dependency on update-inetd to heimdal-servers and heimdal-kdc,
  as packages should rely on the inet-superserver to provide the
  update-inetd command.
* Drop the addition of -1 to the version of comerr-dev in build depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 * SUCH DAMAGE.
32
32
 */
33
33
 
34
 
/* $Id: aes.h 17450 2006-05-05 11:11:43Z lha $ */
 
34
/* $Id: aes.h 22958 2008-04-11 11:33:22Z lha $ */
35
35
 
36
36
#ifndef HEIM_AES_H
37
37
#define HEIM_AES_H 1
58
58
    int rounds;
59
59
} AES_KEY;
60
60
 
 
61
#ifdef __cplusplus
 
62
extern "C" {
 
63
#endif
 
64
 
61
65
int AES_set_encrypt_key(const unsigned char *, const int, AES_KEY *);
62
66
int AES_set_decrypt_key(const unsigned char *, const int, AES_KEY *);
63
67
 
68
72
                     const unsigned long, const AES_KEY *,
69
73
                     unsigned char *, int);
70
74
 
 
75
#ifdef  __cplusplus
 
76
}
 
77
#endif
 
78
 
71
79
#endif /* HEIM_AES_H */