summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-06-07 22:36:55 +0000
committerEzra Peisach <epeisach@mit.edu>2001-06-07 22:36:55 +0000
commit7a44688912adbcf9d569692ca22dae2502703162 (patch)
treeff119cdce9874ea8fe077013274994dec9818ea9 /src/include
parent523f64c3ad9c310e05551c571f02a4649984a22e (diff)
downloadkrb5-7a44688912adbcf9d569692ca22dae2502703162.tar.gz
krb5-7a44688912adbcf9d569692ca22dae2502703162.tar.xz
krb5-7a44688912adbcf9d569692ca22dae2502703162.zip
* 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13302 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog8
-rw-r--r--src/include/krb5.hin14
2 files changed, 15 insertions, 7 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 18aff0720..28de33bfa 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -1,5 +1,13 @@
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
tree. Remove SYSV redefinition of random() to rand() and
srandom() to srand(). Two locations in tree that might matter
diff --git a/src/include/krb5.hin b/src/include/krb5.hin
index 82fca7359..9545a9e9c 100644
--- a/src/include/krb5.hin
+++ b/src/include/krb5.hin
@@ -472,13 +472,13 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
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
/*
@@ -534,11 +534,11 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_use_enctype
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,
@@ -547,7 +547,7 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_calculate_checksum
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);