From: Greg Hudson Date: Tue, 5 Oct 2010 00:16:10 +0000 (+0000) Subject: Add a missing protototype which was breaking the crypto build with the X-Git-Tag: krb5-1.9-beta1~45 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e4be46b20f67d78157ecb58dfb23f062f2450bbb;p=krb5.git 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 --- 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 );