Browse Source

TLS: Update file headers to include TLS v1.2 support

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 13 years ago
parent
commit
1622b331f6

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify

+ 2 - 2
src/tls/tlsv1_server.h

@@ -1,6 +1,6 @@
 /*
- * TLSv1 server (RFC 2246)
- * Copyright (c) 2006-2007, Jouni Malinen <j@w1.fi>
+ * TLS v1.0/v1.1/v1.2 server (RFC 2246, RFC 4346, RFC 5246)
+ * Copyright (c) 2006-2011, Jouni Malinen <j@w1.fi>
  *
  * 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

+ 1 - 1
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 <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify