diff options
author | Greg Hudson <ghudson@mit.edu> | 2010-10-05 00:16:10 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2010-10-05 00:16:10 +0000 |
commit | e4be46b20f67d78157ecb58dfb23f062f2450bbb (patch) | |
tree | 1deaa5b062cd8f2989c921dfd25eecd07e39147e /src | |
parent | 7db7245f80c8c59bb738e9a449225856d2400f72 (diff) | |
download | krb5-e4be46b20f67d78157ecb58dfb23f062f2450bbb.tar.gz krb5-e4be46b20f67d78157ecb58dfb23f062f2450bbb.tar.xz krb5-e4be46b20f67d78157ecb58dfb23f062f2450bbb.zip |
Add a missing protototype which was breaking the crypto build with the
NSS back end after r24409.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24418 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/crypto/nss/des/des_int.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/crypto/nss/des/des_int.h b/src/lib/crypto/nss/des/des_int.h index eb17eb9ae..e85fcbca9 100644 --- a/src/lib/crypto/nss/des/des_int.h +++ b/src/lib/crypto/nss/des/des_int.h @@ -157,6 +157,11 @@ error(MIT_DES_KEYSIZE does not equal KRB5_MIT_DES_KEYSIZE) #define mit_des_zeroblock krb5int_c_mit_des_zeroblock extern const mit_des_cblock mit_des_zeroblock; +/* des_oldapis.c */ +extern krb5_error_code mit_afs_string_to_key(krb5_keyblock *keyblock, + const krb5_data *data, + const krb5_data *salt); + /* key_parity.c */ extern void mit_des_fixup_key_parity (mit_des_cblock ); extern int mit_des_check_key_parity (mit_des_cblock ); |