From: Marc Horowitz Date: Wed, 30 Sep 1998 03:40:21 +0000 (+0000) Subject: the code in the tree now reflects the current spec. update the enctypes accordingly X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcbf4dc310cd5e48f77f16059af04b8cf1c64f54;p=thirdparty%2Fkrb5.git the code in the tree now reflects the current spec. update the enctypes accordingly git-svn-id: svn://anonsvn.mit.edu/krb5/branches/marc-3des@10950 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/etypes.c b/src/lib/crypto/etypes.c index b47841b12d..36db745809 100644 --- a/src/lib/crypto/etypes.c +++ b/src/lib/crypto/etypes.c @@ -40,19 +40,14 @@ struct krb5_keytypes krb5_enctypes_list[] = { krb5_raw_encrypt_length, krb5_raw_encrypt, krb5_raw_decrypt, krb5_dk_string_to_key }, - { ENCTYPE_LOCAL_DES3_HMAC_SHA1, - "des3-marc-hmac-sha1", "Triple DES with HMAC/sha1 (marc's code)", - &krb5_enc_des3, &krb5_hash_sha1, - krb5_dk_encrypt_length, krb5_dk_encrypt, krb5_dk_decrypt, - krb5_dk_string_to_key }, { ENCTYPE_DES3_HMAC_SHA1, - "des3-hmac-sha1", "Triple DES with HMAC/sha1 (as yet unspecified code)", + "des3-hmac-sha1", "Triple DES with HMAC/sha1", &krb5_enc_des3, &krb5_hash_sha1, krb5_dk_encrypt_length, krb5_dk_encrypt, krb5_dk_decrypt, krb5_dk_string_to_key }, { ENCTYPE_DES_HMAC_SHA1, - "des3-hmac-sha1", "Triple DES with HMAC/sha1", - &krb5_enc_des3, &krb5_hash_sha1, + "des-hmac-sha1", "DES with HMAC/sha1", + &krb5_enc_des, &krb5_hash_sha1, krb5_dk_encrypt_length, krb5_dk_encrypt, krb5_dk_decrypt, krb5_dk_string_to_key }, };