diff options
Diffstat (limited to 'src/lib/libssl/d1_lib.c')
-rw-r--r-- | src/lib/libssl/d1_lib.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/lib/libssl/d1_lib.c b/src/lib/libssl/d1_lib.c index e4805a1efa..e193d4ab81 100644 --- a/src/lib/libssl/d1_lib.c +++ b/src/lib/libssl/d1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_lib.c,v 1.38 2017/01/25 06:38:01 jsing Exp $ */ | 1 | /* $OpenBSD: d1_lib.c,v 1.39 2017/01/26 06:32:58 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -74,19 +74,6 @@ static int dtls1_listen(SSL *s, struct sockaddr *client); | |||
74 | 74 | ||
75 | SSL3_ENC_METHOD DTLSv1_enc_data = { | 75 | SSL3_ENC_METHOD DTLSv1_enc_data = { |
76 | .enc = dtls1_enc, | 76 | .enc = dtls1_enc, |
77 | .mac = tls1_mac, | ||
78 | .setup_key_block = tls1_setup_key_block, | ||
79 | .generate_master_secret = tls1_generate_master_secret, | ||
80 | .change_cipher_state = tls1_change_cipher_state, | ||
81 | .final_finish_mac = tls1_final_finish_mac, | ||
82 | .finish_mac_length = TLS1_FINISH_MAC_LENGTH, | ||
83 | .cert_verify_mac = tls1_cert_verify_mac, | ||
84 | .client_finished_label = TLS_MD_CLIENT_FINISH_CONST, | ||
85 | .client_finished_label_len = TLS_MD_CLIENT_FINISH_CONST_SIZE, | ||
86 | .server_finished_label = TLS_MD_SERVER_FINISH_CONST, | ||
87 | .server_finished_label_len = TLS_MD_SERVER_FINISH_CONST_SIZE, | ||
88 | .alert_value = tls1_alert_code, | ||
89 | .export_keying_material = tls1_export_keying_material, | ||
90 | .enc_flags = SSL_ENC_FLAG_EXPLICIT_IV, | 77 | .enc_flags = SSL_ENC_FLAG_EXPLICIT_IV, |
91 | }; | 78 | }; |
92 | 79 | ||