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

« back to all changes in this revision

Viewing changes to appl/telnet/libtelnet/enc-proto.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:
55
55
 * or implied warranty.
56
56
 */
57
57
 
58
 
/* $Id: enc-proto.h 10809 2002-01-18 12:58:49Z joda $ */
 
58
/* $Id: enc-proto.h 22895 2008-04-07 18:52:20Z lha $ */
59
59
 
60
60
#if     defined(ENCRYPTION)
61
61
Encryptions *findencryption (int);
81
81
void encrypt_display(void);
82
82
void encrypt_enc_keyid(unsigned char*, int);
83
83
void encrypt_end(void);
84
 
void encrypt_gen_printsub(unsigned char*, int, unsigned char*, int);
 
84
void encrypt_gen_printsub(unsigned char*, size_t, unsigned char*, size_t);
85
85
void encrypt_init(const char*, int);
86
86
void encrypt_is(unsigned char*, int);
87
87
void encrypt_list_types(void);
88
88
void encrypt_not(void);
89
 
void encrypt_printsub(unsigned char*, int, unsigned char*, int);
 
89
void encrypt_printsub(unsigned char*, size_t, unsigned char*, size_t);
90
90
void encrypt_reply(unsigned char*, int);
91
91
void encrypt_request_end(void);
92
92
void encrypt_request_start(unsigned char*, int);
118
118
int cfb64_reply (unsigned char *, int);
119
119
void cfb64_session (Session_Key *, int);
120
120
int cfb64_keyid (int, unsigned char *, int *);
121
 
void cfb64_printsub (unsigned char *, int, unsigned char *, int);
 
121
void cfb64_printsub (unsigned char *, size_t, unsigned char *, size_t);
122
122
 
123
123
void ofb64_encrypt (unsigned char *, int);
124
124
int ofb64_decrypt (int);
128
128
int ofb64_reply (unsigned char *, int);
129
129
void ofb64_session (Session_Key *, int);
130
130
int ofb64_keyid (int, unsigned char *, int *);
131
 
void ofb64_printsub (unsigned char *, int, unsigned char *, int);
 
131
void ofb64_printsub (unsigned char *, size_t, unsigned char *, size_t);
132
132
 
133
133
#endif