+2001-06-07 Ezra Peisach <epeisach@mit.edu>
+
+ * krb5.hin: Get rid of extraneous krb5_const before integer
+ arguments in prototypes for valid_enctype(), valid_cksumtype(),
+ is_coll_proof_cksum(), is_keyed_cksum(), krb5_encrypt_size(),
+ krb5_checksum_size(), krb5_verify_checksum() so they match the
+ existing code.
+
2001-06-07 Ezra Peisach <epeisach@mit.edu>
* k5-int.h: Remove AS_REP_105_SAM_COMPAT definition. Not used in
KRB5_DLLIMP krb5_boolean KRB5_CALLCONV valid_enctype
- (krb5_const krb5_enctype ktype);
+ (krb5_enctype ktype);
KRB5_DLLIMP krb5_boolean KRB5_CALLCONV valid_cksumtype
- (krb5_const krb5_cksumtype ctype);
+ (krb5_cksumtype ctype);
KRB5_DLLIMP krb5_boolean KRB5_CALLCONV is_coll_proof_cksum
- (krb5_const krb5_cksumtype ctype);
+ (krb5_cksumtype ctype);
KRB5_DLLIMP krb5_boolean KRB5_CALLCONV is_keyed_cksum
- (krb5_const krb5_cksumtype ctype);
+ (krb5_cksumtype ctype);
#ifdef KRB5_OLD_CRYPTO
/*
krb5_encrypt_block FAR * eblock,
krb5_const krb5_enctype enctype);
KRB5_DLLIMP size_t KRB5_CALLCONV krb5_encrypt_size
- (krb5_const size_t length,
+ (size_t length,
krb5_enctype crypto);
KRB5_DLLIMP size_t KRB5_CALLCONV krb5_checksum_size
(krb5_context context,
- krb5_const krb5_cksumtype ctype);
+ krb5_cksumtype ctype);
KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_calculate_checksum
(krb5_context context,
krb5_const krb5_cksumtype ctype,
krb5_checksum FAR * outcksum);
KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_verify_checksum
(krb5_context context,
- krb5_const krb5_cksumtype ctype,
+ krb5_cksumtype ctype,
krb5_const krb5_checksum FAR * cksum,
krb5_const krb5_pointer in, krb5_const size_t in_length,
krb5_const krb5_pointer seed, krb5_const size_t seed_length);