From 1622b331f67abb4eb94ff82726d6997283d5594f Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 27 Nov 2011 22:13:52 +0200 Subject: [PATCH] TLS: Update file headers to include TLS v1.2 support Signed-hostap: Jouni Malinen --- src/tls/tlsv1_client.c | 2 +- src/tls/tlsv1_client.h | 2 +- src/tls/tlsv1_client_read.c | 2 +- src/tls/tlsv1_client_write.c | 2 +- src/tls/tlsv1_common.h | 2 +- src/tls/tlsv1_record.c | 2 +- src/tls/tlsv1_record.h | 2 +- src/tls/tlsv1_server.c | 2 +- src/tls/tlsv1_server.h | 4 ++-- src/tls/tlsv1_server_write.c | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/tls/tlsv1_client.c b/src/tls/tlsv1_client.c index d546e1a9f..3b6ff3e2f 100644 --- a/src/tls/tlsv1_client.c +++ b/src/tls/tlsv1_client.c @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) client + * TLS v1.0/v1.1/v1.2 client (RFC 2246, RFC 4346, RFC 5246) * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_client.h b/src/tls/tlsv1_client.h index 8043dad04..ef5e6940a 100644 --- a/src/tls/tlsv1_client.h +++ b/src/tls/tlsv1_client.h @@ -1,5 +1,5 @@ /* - * TLSv1 client (RFC 2246) + * TLS v1.0/v1.1/v1.2 client (RFC 2246, RFC 4346, RFC 5246) * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_client_read.c b/src/tls/tlsv1_client_read.c index 8f6b049c0..eb0cbefea 100644 --- a/src/tls/tlsv1_client_read.c +++ b/src/tls/tlsv1_client_read.c @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) client - read handshake message + * TLSv1 client - read handshake message * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_client_write.c b/src/tls/tlsv1_client_write.c index badfc6041..35a238b1f 100644 --- a/src/tls/tlsv1_client_write.c +++ b/src/tls/tlsv1_client_write.c @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) client - write handshake message + * TLSv1 client - write handshake message * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_common.h b/src/tls/tlsv1_common.h index 624ef6fe3..168f6b4e5 100644 --- a/src/tls/tlsv1_common.h +++ b/src/tls/tlsv1_common.h @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) common definitions + * TLSv1 common definitions * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_record.c b/src/tls/tlsv1_record.c index 04f3ee254..08beca257 100644 --- a/src/tls/tlsv1_record.c +++ b/src/tls/tlsv1_record.c @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) Record Protocol + * TLSv1 Record Protocol * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_record.h b/src/tls/tlsv1_record.h index d3941ae94..9eb9bfdfc 100644 --- a/src/tls/tlsv1_record.h +++ b/src/tls/tlsv1_record.h @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) Record Protocol + * TLSv1 Record Protocol * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_server.c b/src/tls/tlsv1_server.c index a5605ba46..96e160cd1 100644 --- a/src/tls/tlsv1_server.c +++ b/src/tls/tlsv1_server.c @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) server + * TLS v1.0/v1.1/v1.2 server (RFC 2246, RFC 4346, RFC 5246) * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify diff --git a/src/tls/tlsv1_server.h b/src/tls/tlsv1_server.h index 00c536c3e..daa435396 100644 --- a/src/tls/tlsv1_server.h +++ b/src/tls/tlsv1_server.h @@ -1,6 +1,6 @@ /* - * TLSv1 server (RFC 2246) - * Copyright (c) 2006-2007, Jouni Malinen + * TLS v1.0/v1.1/v1.2 server (RFC 2246, RFC 4346, RFC 5246) + * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as diff --git a/src/tls/tlsv1_server_write.c b/src/tls/tlsv1_server_write.c index b57c16dfc..0ca3b230d 100644 --- a/src/tls/tlsv1_server_write.c +++ b/src/tls/tlsv1_server_write.c @@ -1,5 +1,5 @@ /* - * TLS v1.0 (RFC 2246) and v1.1 (RFC 4346) server - write handshake message + * TLSv1 server - write handshake message * Copyright (c) 2006-2011, Jouni Malinen * * This program is free software; you can redistribute it and/or modify