2 * Copyright (c) 1997 - 2002 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "krb5_locl.h"
36 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
37 _krb5_mk_req_internal(krb5_context context
,
38 krb5_auth_context
*auth_context
,
39 const krb5_flags ap_req_options
,
43 krb5_key_usage checksum_usage
,
44 krb5_key_usage encrypt_usage
)
47 krb5_data authenticator
;
53 if(*auth_context
== NULL
)
54 ret
= krb5_auth_con_init(context
, auth_context
);
59 ret
= krb5_auth_con_init(context
, &ac
);
63 if(ac
->local_subkey
== NULL
&& (ap_req_options
& AP_OPTS_USE_SUBKEY
)) {
64 ret
= krb5_auth_con_generatelocalsubkey(context
,
71 krb5_free_keyblock(context
, ac
->keyblock
);
72 ret
= krb5_copy_keyblock(context
, &in_creds
->session
, &ac
->keyblock
);
76 /* it's unclear what type of checksum we can use. try the best one, except:
77 * a) if it's configured differently for the current realm, or
78 * b) if the session key is des-cbc-crc
82 if(ac
->keyblock
->keytype
== ETYPE_DES_CBC_CRC
) {
83 /* this is to make DCE secd (and older MIT kdcs?) happy */
84 ret
= krb5_create_checksum(context
,
91 } else if(ac
->keyblock
->keytype
== ETYPE_ARCFOUR_HMAC_MD5
||
92 ac
->keyblock
->keytype
== ETYPE_ARCFOUR_HMAC_MD5_56
||
93 ac
->keyblock
->keytype
== ETYPE_DES_CBC_MD4
||
94 ac
->keyblock
->keytype
== ETYPE_DES_CBC_MD5
) {
95 /* this is to make MS kdc happy */
96 ret
= krb5_create_checksum(context
,
106 ret
= krb5_crypto_init(context
, ac
->keyblock
, 0, &crypto
);
109 ret
= krb5_create_checksum(context
,
116 krb5_crypto_destroy(context
, crypto
);
126 ret
= _krb5_build_authenticator(context
,
128 ac
->keyblock
->keytype
,
134 free_Checksum (c_opt
);
138 ret
= krb5_build_ap_req (context
, ac
->keyblock
->keytype
,
139 in_creds
, ap_req_options
, authenticator
, outbuf
);
141 if(auth_context
== NULL
)
142 krb5_auth_con_free(context
, ac
);
146 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
147 krb5_mk_req_extended(krb5_context context
,
148 krb5_auth_context
*auth_context
,
149 const krb5_flags ap_req_options
,
151 krb5_creds
*in_creds
,
154 return _krb5_mk_req_internal (context
,
160 KRB5_KU_AP_REQ_AUTH_CKSUM
,
161 KRB5_KU_AP_REQ_AUTH
);