2 * Copyright (c) 1997 - 2008 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 /* Functions which are used by both single and triple DES enctypes */
36 #include "krb5_locl.h"
39 * A = A xor B. A & B are 8 bytes.
42 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
43 _krb5_xor8(unsigned char *a
, const unsigned char *b
)
55 #if defined(DES3_OLD_ENCTYPE) || defined(HEIM_WEAK_CRYPTO)
56 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
57 _krb5_des_checksum(krb5_context context
,
59 struct _krb5_key_data
*key
,
60 const struct krb5_crypto_iov
*iov
,
64 struct _krb5_evp_schedule
*ctx
= key
->schedule
->data
;
68 unsigned char *p
= cksum
->checksum
.data
;
70 krb5_generate_random_block(p
, 8);
72 m
= EVP_MD_CTX_create();
74 return krb5_enomem(context
);
76 EVP_DigestInit_ex(m
, evp_md
, NULL
);
77 EVP_DigestUpdate(m
, p
, 8);
78 for (i
= 0; i
< niov
; i
++) {
79 if (_krb5_crypto_iov_should_sign(&iov
[i
]))
80 EVP_DigestUpdate(m
, iov
[i
].data
.data
, iov
[i
].data
.length
);
82 EVP_DigestFinal_ex (m
, p
+ 8, NULL
);
83 EVP_MD_CTX_destroy(m
);
84 memset_s(&ivec
, sizeof(ivec
), 0, sizeof(ivec
));
85 EVP_CipherInit_ex(&ctx
->ectx
, NULL
, NULL
, NULL
, (void *)&ivec
, -1);
86 EVP_Cipher(&ctx
->ectx
, p
, p
, 24);
91 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
92 _krb5_des_verify(krb5_context context
,
94 struct _krb5_key_data
*key
,
95 const struct krb5_crypto_iov
*iov
,
99 struct _krb5_evp_schedule
*ctx
= key
->schedule
->data
;
101 unsigned char tmp
[24];
102 unsigned char res
[16];
104 krb5_error_code ret
= 0;
107 m
= EVP_MD_CTX_create();
109 return krb5_enomem(context
);
111 memset_s(&ivec
, sizeof(ivec
), 0, sizeof(ivec
));
112 EVP_CipherInit_ex(&ctx
->dctx
, NULL
, NULL
, NULL
, (void *)&ivec
, -1);
113 EVP_Cipher(&ctx
->dctx
, tmp
, C
->checksum
.data
, 24);
115 EVP_DigestInit_ex(m
, evp_md
, NULL
);
116 EVP_DigestUpdate(m
, tmp
, 8); /* confounder */
117 for (i
= 0; i
< niov
; i
++) {
118 if (_krb5_crypto_iov_should_sign(&iov
[i
]))
119 EVP_DigestUpdate(m
, iov
[i
].data
.data
, iov
[i
].data
.length
);
121 EVP_DigestFinal_ex (m
, res
, NULL
);
122 EVP_MD_CTX_destroy(m
);
123 if(ct_memcmp(res
, tmp
+ 8, sizeof(res
)) != 0) {
124 krb5_clear_error_message (context
);
125 ret
= KRB5KRB_AP_ERR_BAD_INTEGRITY
;
127 memset_s(tmp
, sizeof(tmp
), 0, sizeof(tmp
));
128 memset_s(res
, sizeof(res
), 0, sizeof(res
));
134 static krb5_error_code
135 RSA_MD5_checksum(krb5_context context
,
137 struct _krb5_key_data
*key
,
139 const struct krb5_crypto_iov
*iov
,
143 if (_krb5_evp_digest_iov(crypto
, iov
, niov
, C
->checksum
.data
,
144 NULL
, EVP_md5(), NULL
) != 1)
145 krb5_abortx(context
, "md5 checksum failed");
150 struct _krb5_checksum_type _krb5_checksum_rsa_md5
= {