First public contribution.
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
58 /* ====================================================================
59 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
70 * the documentation and/or other materials provided with the
73 * 3. All advertising materials mentioning features or use of this
74 * software must display the following acknowledgment:
75 * "This product includes software developed by the OpenSSL Project
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79 * endorse or promote products derived from this software without
80 * prior written permission. For written permission, please contact
81 * openssl-core@openssl.org.
83 * 5. Products derived from this software may not be called "OpenSSL"
84 * nor may "OpenSSL" appear in their names without prior written
85 * permission of the OpenSSL Project.
87 * 6. Redistributions of any form whatsoever must retain the following
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
92 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
96 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103 * OF THE POSSIBILITY OF SUCH DAMAGE.
104 * ====================================================================
106 * This product includes cryptographic software written by Eric Young
107 * (eay@cryptsoft.com). This product includes software written by Tim
108 * Hudson (tjh@cryptsoft.com).
113 #include "ssl_locl.h"
114 #include <openssl/comp.h>
115 #include <openssl/evp.h>
116 #include <openssl/hmac.h>
117 #include <openssl/md5.h>
119 static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec,
120 int sec_len, unsigned char *seed, int seed_len,
121 unsigned char *out, int olen)
127 unsigned char A1[EVP_MAX_MD_SIZE];
130 chunk=EVP_MD_size(md);
133 HMAC_CTX_init(&ctx_tmp);
134 HMAC_Init_ex(&ctx,sec,sec_len,md, NULL);
135 HMAC_Init_ex(&ctx_tmp,sec,sec_len,md, NULL);
136 HMAC_Update(&ctx,seed,seed_len);
137 HMAC_Final(&ctx,A1,&A1_len);
142 HMAC_Init_ex(&ctx,NULL,0,NULL,NULL); /* re-init */
143 HMAC_Init_ex(&ctx_tmp,NULL,0,NULL,NULL); /* re-init */
144 HMAC_Update(&ctx,A1,A1_len);
145 HMAC_Update(&ctx_tmp,A1,A1_len);
146 HMAC_Update(&ctx,seed,seed_len);
150 HMAC_Final(&ctx,out,&j);
153 HMAC_Final(&ctx_tmp,A1,&A1_len); /* calc the next A1 value */
157 HMAC_Final(&ctx,A1,&A1_len);
162 HMAC_CTX_cleanup(&ctx);
163 HMAC_CTX_cleanup(&ctx_tmp);
164 OPENSSL_cleanse(A1,sizeof(A1));
167 static void tls1_PRF(const EVP_MD *md5, const EVP_MD *sha1,
168 unsigned char *label, int label_len,
169 const unsigned char *sec, int slen, unsigned char *out1,
170 unsigned char *out2, int olen)
173 const unsigned char *S1,*S2;
178 len+=(slen&1); /* add for odd, make longer */
181 tls1_P_hash(md5 ,S1,len,label,label_len,out1,olen);
182 tls1_P_hash(sha1,S2,len,label,label_len,out2,olen);
184 for (i=0; i<olen; i++)
188 static void tls1_generate_key_block(SSL *s, unsigned char *km,
189 unsigned char *tmp, int num)
192 unsigned char buf[SSL3_RANDOM_SIZE*2+
193 TLS_MD_MAX_CONST_SIZE];
196 memcpy(p,TLS_MD_KEY_EXPANSION_CONST,
197 TLS_MD_KEY_EXPANSION_CONST_SIZE);
198 p+=TLS_MD_KEY_EXPANSION_CONST_SIZE;
199 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
201 memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
204 tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,(int)(p-buf),
205 s->session->master_key,s->session->master_key_length,
208 printf("tls1_generate_key_block() ==> %d byte master_key =\n\t",
209 s->session->master_key_length);
212 for (i=0; i < s->session->master_key_length; i++)
214 printf("%02X", s->session->master_key[i]);
217 #endif /* KSSL_DEBUG */
220 int tls1_change_cipher_state(SSL *s, int which)
222 static const unsigned char empty[]="";
223 unsigned char *p,*key_block,*mac_secret;
224 unsigned char *exp_label,buf[TLS_MD_MAX_CONST_SIZE+
226 unsigned char tmp1[EVP_MAX_KEY_LENGTH];
227 unsigned char tmp2[EVP_MAX_KEY_LENGTH];
228 unsigned char iv1[EVP_MAX_IV_LENGTH*2];
229 unsigned char iv2[EVP_MAX_IV_LENGTH*2];
230 unsigned char *ms,*key,*iv,*er1,*er2;
234 #ifndef OPENSSL_NO_COMP
235 const SSL_COMP *comp;
238 int is_export,n,i,j,k,exp_label_len,cl;
241 is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
242 c=s->s3->tmp.new_sym_enc;
243 m=s->s3->tmp.new_hash;
244 #ifndef OPENSSL_NO_COMP
245 comp=s->s3->tmp.new_compression;
247 key_block=s->s3->tmp.key_block;
250 printf("tls1_change_cipher_state(which= %d) w/\n", which);
251 printf("\talg= %ld, comp= %p\n", s->s3->tmp.new_cipher->algorithms,
253 printf("\tevp_cipher == %p ==? &d_cbc_ede_cipher3\n", c);
254 printf("\tevp_cipher: nid, blksz= %d, %d, keylen=%d, ivlen=%d\n",
255 c->nid,c->block_size,c->key_len,c->iv_len);
256 printf("\tkey_block: len= %d, data= ", s->s3->tmp.key_block_length);
259 for (i=0; i<s->s3->tmp.key_block_length; i++)
260 printf("%02x", key_block[i]); printf("\n");
262 #endif /* KSSL_DEBUG */
264 if (which & SSL3_CC_READ)
266 if (s->enc_read_ctx != NULL)
268 else if ((s->enc_read_ctx=OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL)
271 /* make sure it's intialized in case we exit later with an error */
272 EVP_CIPHER_CTX_init(s->enc_read_ctx);
275 #ifndef OPENSSL_NO_COMP
276 if (s->expand != NULL)
278 COMP_CTX_free(s->expand);
283 s->expand=COMP_CTX_new(comp->method);
284 if (s->expand == NULL)
286 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,SSL_R_COMPRESSION_LIBRARY_ERROR);
289 if (s->s3->rrec.comp == NULL)
290 s->s3->rrec.comp=(unsigned char *)
291 OPENSSL_malloc(SSL3_RT_MAX_ENCRYPTED_LENGTH);
292 if (s->s3->rrec.comp == NULL)
296 /* this is done by dtls1_reset_seq_numbers for DTLS1_VERSION */
297 if (s->version != DTLS1_VERSION)
298 memset(&(s->s3->read_sequence[0]),0,8);
299 mac_secret= &(s->s3->read_mac_secret[0]);
303 if (s->enc_write_ctx != NULL)
305 else if ((s->enc_write_ctx=OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL)
308 /* make sure it's intialized in case we exit later with an error */
309 EVP_CIPHER_CTX_init(s->enc_write_ctx);
310 dd= s->enc_write_ctx;
312 #ifndef OPENSSL_NO_COMP
313 if (s->compress != NULL)
315 COMP_CTX_free(s->compress);
320 s->compress=COMP_CTX_new(comp->method);
321 if (s->compress == NULL)
323 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,SSL_R_COMPRESSION_LIBRARY_ERROR);
328 /* this is done by dtls1_reset_seq_numbers for DTLS1_VERSION */
329 if (s->version != DTLS1_VERSION)
330 memset(&(s->s3->write_sequence[0]),0,8);
331 mac_secret= &(s->s3->write_mac_secret[0]);
335 EVP_CIPHER_CTX_cleanup(dd);
337 p=s->s3->tmp.key_block;
339 cl=EVP_CIPHER_key_length(c);
340 j=is_export ? (cl < SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher) ?
341 cl : SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher)) : cl;
342 /* Was j=(exp)?5:EVP_CIPHER_key_length(c); */
343 k=EVP_CIPHER_iv_length(c);
344 er1= &(s->s3->client_random[0]);
345 er2= &(s->s3->server_random[0]);
346 if ( (which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
347 (which == SSL3_CHANGE_CIPHER_SERVER_READ))
350 key= &(p[ n]); n+=j+j;
351 iv= &(p[ n]); n+=k+k;
352 exp_label=(unsigned char *)TLS_MD_CLIENT_WRITE_KEY_CONST;
353 exp_label_len=TLS_MD_CLIENT_WRITE_KEY_CONST_SIZE;
359 ms= &(p[ n]); n+=i+j;
360 key= &(p[ n]); n+=j+k;
362 exp_label=(unsigned char *)TLS_MD_SERVER_WRITE_KEY_CONST;
363 exp_label_len=TLS_MD_SERVER_WRITE_KEY_CONST_SIZE;
367 if (n > s->s3->tmp.key_block_length)
369 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,ERR_R_INTERNAL_ERROR);
373 memcpy(mac_secret,ms,i);
375 printf("which = %04X\nmac key=",which);
376 { int z; for (z=0; z<i; z++) printf("%02X%c",ms[z],((z+1)%16)?' ':'\n'); }
380 /* In here I set both the read and write key/iv to the
381 * same value since only the correct one will be used :-).
384 memcpy(p,exp_label,exp_label_len);
386 memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
388 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
390 tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,(int)(p-buf),key,j,
391 tmp1,tmp2,EVP_CIPHER_key_length(c));
397 memcpy(p,TLS_MD_IV_BLOCK_CONST,
398 TLS_MD_IV_BLOCK_CONST_SIZE);
399 p+=TLS_MD_IV_BLOCK_CONST_SIZE;
400 memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
402 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
404 tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,p-buf,empty,0,
413 s->session->key_arg_length=0;
417 printf("EVP_CipherInit_ex(dd,c,key=,iv=,which)\n");
418 printf("\tkey= "); for (i=0; i<c->key_len; i++) printf("%02x", key[i]);
420 printf("\t iv= "); for (i=0; i<c->iv_len; i++) printf("%02x", iv[i]);
423 #endif /* KSSL_DEBUG */
425 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE));
427 printf("which = %04X\nkey=",which);
428 { int z; for (z=0; z<EVP_CIPHER_key_length(c); z++) printf("%02X%c",key[z],((z+1)%16)?' ':'\n'); }
430 { int z; for (z=0; z<k; z++) printf("%02X%c",iv[z],((z+1)%16)?' ':'\n'); }
434 OPENSSL_cleanse(tmp1,sizeof(tmp1));
435 OPENSSL_cleanse(tmp2,sizeof(tmp1));
436 OPENSSL_cleanse(iv1,sizeof(iv1));
437 OPENSSL_cleanse(iv2,sizeof(iv2));
440 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,ERR_R_MALLOC_FAILURE);
445 int tls1_setup_key_block(SSL *s)
447 unsigned char *p1,*p2;
454 printf ("tls1_setup_key_block()\n");
455 #endif /* KSSL_DEBUG */
457 if (s->s3->tmp.key_block_length != 0)
460 if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp))
462 SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
466 s->s3->tmp.new_sym_enc=c;
467 s->s3->tmp.new_hash=hash;
469 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
472 ssl3_cleanup_key_block(s);
474 if ((p1=(unsigned char *)OPENSSL_malloc(num)) == NULL)
476 if ((p2=(unsigned char *)OPENSSL_malloc(num)) == NULL)
479 s->s3->tmp.key_block_length=num;
480 s->s3->tmp.key_block=p1;
484 printf("client random\n");
485 { int z; for (z=0; z<SSL3_RANDOM_SIZE; z++) printf("%02X%c",s->s3->client_random[z],((z+1)%16)?' ':'\n'); }
486 printf("server random\n");
487 { int z; for (z=0; z<SSL3_RANDOM_SIZE; z++) printf("%02X%c",s->s3->server_random[z],((z+1)%16)?' ':'\n'); }
488 printf("pre-master\n");
489 { int z; for (z=0; z<s->session->master_key_length; z++) printf("%02X%c",s->session->master_key[z],((z+1)%16)?' ':'\n'); }
491 tls1_generate_key_block(s,p1,p2,num);
492 OPENSSL_cleanse(p2,num);
495 printf("\nkey block\n");
496 { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); }
499 if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS))
501 /* enable vulnerability countermeasure for CBC ciphers with
502 * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt)
504 s->s3->need_empty_fragments = 1;
506 if (s->session->cipher != NULL)
508 if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_eNULL)
509 s->s3->need_empty_fragments = 0;
511 #ifndef OPENSSL_NO_RC4
512 if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4)
513 s->s3->need_empty_fragments = 0;
520 SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE);
524 int tls1_enc(SSL *s, int send)
530 const EVP_CIPHER *enc;
534 if (s->write_hash != NULL)
535 n=EVP_MD_size(s->write_hash);
538 if (s->enc_write_ctx == NULL)
541 enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
545 if (s->read_hash != NULL)
546 n=EVP_MD_size(s->read_hash);
549 if (s->enc_read_ctx == NULL)
552 enc=EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
556 printf("tls1_enc(%d)\n", send);
557 #endif /* KSSL_DEBUG */
559 if ((s->session == NULL) || (ds == NULL) ||
562 memmove(rec->data,rec->input,rec->length);
563 rec->input=rec->data;
568 bs=EVP_CIPHER_block_size(ds->cipher);
570 if ((bs != 1) && send)
574 /* Add weird padding of upto 256 bytes */
576 /* we need to add 'i' padding bytes of value j */
578 if (s->options & SSL_OP_TLS_BLOCK_PADDING_BUG)
580 if (s->s3->flags & TLS1_FLAGS_TLS_PADDING_BUG)
583 for (k=(int)l; k<(int)(l+i); k++)
592 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n",
593 ds,rec->data,rec->input,l);
594 printf("\tEVP_CIPHER_CTX: %d buf_len, %d key_len [%d %d], %d iv_len\n",
595 ds->buf_len, ds->cipher->key_len,
596 DES_KEY_SZ, DES_SCHEDULE_SZ,
599 for (i=0; i<ds->cipher->iv_len; i++) printf("%02X", ds->iv[i]);
601 printf("\trec->input=");
602 for (ui=0; ui<l; ui++) printf(" %02x", rec->input[ui]);
605 #endif /* KSSL_DEBUG */
609 if (l == 0 || l%bs != 0)
611 SSLerr(SSL_F_TLS1_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
612 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECRYPTION_FAILED);
617 EVP_Cipher(ds,rec->data,rec->input,l);
622 printf("\trec->data=");
624 printf(" %02x", rec->data[i]); printf("\n");
626 #endif /* KSSL_DEBUG */
628 if ((bs != 1) && !send)
630 ii=i=rec->data[l-1]; /* padding_length */
632 /* NB: if compression is in operation the first packet
633 * may not be of even length so the padding bug check
634 * cannot be performed. This bug workaround has been
635 * around since SSLeay so hopefully it is either fixed
636 * now or no buggy implementation supports compression
639 if ( (s->options&SSL_OP_TLS_BLOCK_PADDING_BUG)
642 /* First packet is even in size, so check */
643 if ((memcmp(s->s3->read_sequence,
644 "\0\0\0\0\0\0\0\0",8) == 0) && !(ii & 1))
645 s->s3->flags|=TLS1_FLAGS_TLS_PADDING_BUG;
646 if (s->s3->flags & TLS1_FLAGS_TLS_PADDING_BUG)
649 /* TLS 1.0 does not bound the number of padding bytes by the block size.
650 * All of them must have value 'padding_length'. */
651 if (i > (int)rec->length)
653 /* Incorrect padding. SSLerr() and ssl3_alert are done
654 * by caller: we don't want to reveal whether this is
655 * a decryption error or a MAC verification failure
656 * (see http://www.openssl.org/~bodo/tls-cbc.txt) */
659 for (j=(int)(l-i); j<(int)l; j++)
661 if (rec->data[j] != ii)
663 /* Incorrect padding */
673 int tls1_cert_verify_mac(SSL *s, EVP_MD_CTX *in_ctx, unsigned char *out)
678 EVP_MD_CTX_init(&ctx);
679 EVP_MD_CTX_copy_ex(&ctx,in_ctx);
680 EVP_DigestFinal_ex(&ctx,out,&ret);
681 EVP_MD_CTX_cleanup(&ctx);
685 int tls1_final_finish_mac(SSL *s, EVP_MD_CTX *in1_ctx, EVP_MD_CTX *in2_ctx,
686 const char *str, int slen, unsigned char *out)
690 unsigned char buf[TLS_MD_MAX_CONST_SIZE+MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
691 unsigned char *q,buf2[12];
697 EVP_MD_CTX_init(&ctx);
698 EVP_MD_CTX_copy_ex(&ctx,in1_ctx);
699 EVP_DigestFinal_ex(&ctx,q,&i);
701 EVP_MD_CTX_copy_ex(&ctx,in2_ctx);
702 EVP_DigestFinal_ex(&ctx,q,&i);
705 tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,(int)(q-buf),
706 s->session->master_key,s->session->master_key_length,
707 out,buf2,sizeof buf2);
708 EVP_MD_CTX_cleanup(&ctx);
713 int tls1_mac(SSL *ssl, unsigned char *md, int send)
716 unsigned char *mac_sec,*seq;
718 unsigned int md_size;
721 unsigned char buf[5];
725 rec= &(ssl->s3->wrec);
726 mac_sec= &(ssl->s3->write_mac_secret[0]);
727 seq= &(ssl->s3->write_sequence[0]);
728 hash=ssl->write_hash;
732 rec= &(ssl->s3->rrec);
733 mac_sec= &(ssl->s3->read_mac_secret[0]);
734 seq= &(ssl->s3->read_sequence[0]);
738 md_size=EVP_MD_size(hash);
741 if (ssl->version == DTLS1_VERSION && ssl->client_version == DTLS1_BAD_VER)
743 buf[1]=TLS1_VERSION_MAJOR;
744 buf[2]=TLS1_VERSION_MINOR;
747 buf[1]=(unsigned char)(ssl->version>>8);
748 buf[2]=(unsigned char)(ssl->version);
751 buf[3]=rec->length>>8;
752 buf[4]=rec->length&0xff;
754 /* I should fix this up TLS TLS TLS TLS TLS XXXXXXXX */
755 HMAC_CTX_init(&hmac);
756 HMAC_Init_ex(&hmac,mac_sec,EVP_MD_size(hash),hash,NULL);
758 if (ssl->version == DTLS1_VERSION && ssl->client_version != DTLS1_BAD_VER)
760 unsigned char dtlsseq[8],*p=dtlsseq;
762 s2n(send?ssl->d1->w_epoch:ssl->d1->r_epoch, p);
763 memcpy (p,&seq[2],6);
765 HMAC_Update(&hmac,dtlsseq,8);
768 HMAC_Update(&hmac,seq,8);
770 HMAC_Update(&hmac,buf,5);
771 HMAC_Update(&hmac,rec->input,rec->length);
772 HMAC_Final(&hmac,md,&md_size);
773 HMAC_CTX_cleanup(&hmac);
777 {unsigned int z; for (z=0; z<md_size; z++) printf("%02X ",mac_sec[z]); printf("\n"); }
779 {int z; for (z=0; z<8; z++) printf("%02X ",seq[z]); printf("\n"); }
781 {int z; for (z=0; z<5; z++) printf("%02X ",buf[z]); printf("\n"); }
783 {unsigned int z; for (z=0; z<rec->length; z++) printf("%02X ",buf[z]); printf("\n"); }
786 if ( SSL_version(ssl) != DTLS1_VERSION)
791 if (seq[i] != 0) break;
796 {unsigned int z; for (z=0; z<md_size; z++) printf("%02X ",md[z]); printf("\n"); }
801 int tls1_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
804 unsigned char buf[SSL3_RANDOM_SIZE*2+TLS_MD_MASTER_SECRET_CONST_SIZE];
805 unsigned char buff[SSL_MAX_MASTER_KEY_LENGTH];
808 printf ("tls1_generate_master_secret(%p,%p, %p, %d)\n", s,out, p,len);
809 #endif /* KSSL_DEBUG */
811 /* Setup the stuff to munge */
812 memcpy(buf,TLS_MD_MASTER_SECRET_CONST,
813 TLS_MD_MASTER_SECRET_CONST_SIZE);
814 memcpy(&(buf[TLS_MD_MASTER_SECRET_CONST_SIZE]),
815 s->s3->client_random,SSL3_RANDOM_SIZE);
816 memcpy(&(buf[SSL3_RANDOM_SIZE+TLS_MD_MASTER_SECRET_CONST_SIZE]),
817 s->s3->server_random,SSL3_RANDOM_SIZE);
818 tls1_PRF(s->ctx->md5,s->ctx->sha1,
819 buf,TLS_MD_MASTER_SECRET_CONST_SIZE+SSL3_RANDOM_SIZE*2,p,len,
820 s->session->master_key,buff,sizeof buff);
822 printf ("tls1_generate_master_secret() complete\n");
823 #endif /* KSSL_DEBUG */
824 return(SSL3_MASTER_SECRET_SIZE);
827 int tls1_alert_code(int code)
831 case SSL_AD_CLOSE_NOTIFY: return(SSL3_AD_CLOSE_NOTIFY);
832 case SSL_AD_UNEXPECTED_MESSAGE: return(SSL3_AD_UNEXPECTED_MESSAGE);
833 case SSL_AD_BAD_RECORD_MAC: return(SSL3_AD_BAD_RECORD_MAC);
834 case SSL_AD_DECRYPTION_FAILED: return(TLS1_AD_DECRYPTION_FAILED);
835 case SSL_AD_RECORD_OVERFLOW: return(TLS1_AD_RECORD_OVERFLOW);
836 case SSL_AD_DECOMPRESSION_FAILURE:return(SSL3_AD_DECOMPRESSION_FAILURE);
837 case SSL_AD_HANDSHAKE_FAILURE: return(SSL3_AD_HANDSHAKE_FAILURE);
838 case SSL_AD_NO_CERTIFICATE: return(-1);
839 case SSL_AD_BAD_CERTIFICATE: return(SSL3_AD_BAD_CERTIFICATE);
840 case SSL_AD_UNSUPPORTED_CERTIFICATE:return(SSL3_AD_UNSUPPORTED_CERTIFICATE);
841 case SSL_AD_CERTIFICATE_REVOKED:return(SSL3_AD_CERTIFICATE_REVOKED);
842 case SSL_AD_CERTIFICATE_EXPIRED:return(SSL3_AD_CERTIFICATE_EXPIRED);
843 case SSL_AD_CERTIFICATE_UNKNOWN:return(SSL3_AD_CERTIFICATE_UNKNOWN);
844 case SSL_AD_ILLEGAL_PARAMETER: return(SSL3_AD_ILLEGAL_PARAMETER);
845 case SSL_AD_UNKNOWN_CA: return(TLS1_AD_UNKNOWN_CA);
846 case SSL_AD_ACCESS_DENIED: return(TLS1_AD_ACCESS_DENIED);
847 case SSL_AD_DECODE_ERROR: return(TLS1_AD_DECODE_ERROR);
848 case SSL_AD_DECRYPT_ERROR: return(TLS1_AD_DECRYPT_ERROR);
849 case SSL_AD_EXPORT_RESTRICTION: return(TLS1_AD_EXPORT_RESTRICTION);
850 case SSL_AD_PROTOCOL_VERSION: return(TLS1_AD_PROTOCOL_VERSION);
851 case SSL_AD_INSUFFICIENT_SECURITY:return(TLS1_AD_INSUFFICIENT_SECURITY);
852 case SSL_AD_INTERNAL_ERROR: return(TLS1_AD_INTERNAL_ERROR);
853 case SSL_AD_USER_CANCELLED: return(TLS1_AD_USER_CANCELLED);
854 case SSL_AD_NO_RENEGOTIATION: return(TLS1_AD_NO_RENEGOTIATION);
855 case DTLS1_AD_MISSING_HANDSHAKE_MESSAGE: return
856 (DTLS1_AD_MISSING_HANDSHAKE_MESSAGE);