aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-01-10 04:15:52 +0000
committerlloyd <[email protected]>2015-01-10 04:15:52 +0000
commit3f16815c9e6349c4a0eeb6a6ecfe004e5d31e287 (patch)
treee6660bee8f66909b5508c5b4f1c235bf7bdbe817 /src/lib/tls
parent832f538e603b6660644c26beb063d0ac81549746 (diff)
Ensure all files have copyright and license info.
Update license header line to specify the terms and refer to the file, neither of which it included before.
Diffstat (limited to 'src/lib/tls')
-rw-r--r--src/lib/tls/msg_cert_req.cpp2
-rw-r--r--src/lib/tls/msg_cert_verify.cpp2
-rw-r--r--src/lib/tls/msg_certificate.cpp2
-rw-r--r--src/lib/tls/msg_client_hello.cpp2
-rw-r--r--src/lib/tls/msg_client_kex.cpp2
-rw-r--r--src/lib/tls/msg_finished.cpp2
-rw-r--r--src/lib/tls/msg_hello_verify.cpp2
-rw-r--r--src/lib/tls/msg_next_protocol.cpp2
-rw-r--r--src/lib/tls/msg_server_hello.cpp2
-rw-r--r--src/lib/tls/msg_server_kex.cpp2
-rw-r--r--src/lib/tls/msg_session_ticket.cpp2
-rw-r--r--src/lib/tls/sessions_sql/tls_session_manager_sql.cpp2
-rw-r--r--src/lib/tls/sessions_sql/tls_session_manager_sql.h2
-rw-r--r--src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.cpp2
-rw-r--r--src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.h2
-rw-r--r--src/lib/tls/tls_alert.cpp2
-rw-r--r--src/lib/tls/tls_alert.h2
-rw-r--r--src/lib/tls/tls_blocking.cpp2
-rw-r--r--src/lib/tls/tls_blocking.h2
-rw-r--r--src/lib/tls/tls_channel.cpp2
-rw-r--r--src/lib/tls/tls_channel.h2
-rw-r--r--src/lib/tls/tls_ciphersuite.cpp2
-rw-r--r--src/lib/tls/tls_ciphersuite.h2
-rw-r--r--src/lib/tls/tls_client.cpp2
-rw-r--r--src/lib/tls/tls_client.h2
-rw-r--r--src/lib/tls/tls_exceptn.h2
-rw-r--r--src/lib/tls/tls_extensions.cpp2
-rw-r--r--src/lib/tls/tls_extensions.h2
-rw-r--r--src/lib/tls/tls_handshake_hash.cpp2
-rw-r--r--src/lib/tls/tls_handshake_hash.h2
-rw-r--r--src/lib/tls/tls_handshake_io.cpp2
-rw-r--r--src/lib/tls/tls_handshake_io.h2
-rw-r--r--src/lib/tls/tls_handshake_msg.h2
-rw-r--r--src/lib/tls/tls_handshake_state.cpp2
-rw-r--r--src/lib/tls/tls_handshake_state.h2
-rw-r--r--src/lib/tls/tls_heartbeats.cpp2
-rw-r--r--src/lib/tls/tls_heartbeats.h2
-rw-r--r--src/lib/tls/tls_magic.h2
-rw-r--r--src/lib/tls/tls_messages.h2
-rw-r--r--src/lib/tls/tls_policy.cpp2
-rw-r--r--src/lib/tls/tls_policy.h2
-rw-r--r--src/lib/tls/tls_reader.h2
-rw-r--r--src/lib/tls/tls_record.cpp2
-rw-r--r--src/lib/tls/tls_record.h2
-rw-r--r--src/lib/tls/tls_seq_numbers.h2
-rw-r--r--src/lib/tls/tls_server.cpp2
-rw-r--r--src/lib/tls/tls_server.h2
-rw-r--r--src/lib/tls/tls_server_info.h2
-rw-r--r--src/lib/tls/tls_session.cpp2
-rw-r--r--src/lib/tls/tls_session.h2
-rw-r--r--src/lib/tls/tls_session_key.cpp2
-rw-r--r--src/lib/tls/tls_session_key.h2
-rw-r--r--src/lib/tls/tls_session_manager.h2
-rw-r--r--src/lib/tls/tls_session_manager_memory.cpp2
-rw-r--r--src/lib/tls/tls_suite_info.cpp2
-rw-r--r--src/lib/tls/tls_version.cpp2
-rw-r--r--src/lib/tls/tls_version.h2
57 files changed, 57 insertions, 57 deletions
diff --git a/src/lib/tls/msg_cert_req.cpp b/src/lib/tls/msg_cert_req.cpp
index 619502f4f..eacdcacac 100644
--- a/src/lib/tls/msg_cert_req.cpp
+++ b/src/lib/tls/msg_cert_req.cpp
@@ -2,7 +2,7 @@
* Certificate Request Message
* (C) 2004-2006,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_cert_verify.cpp b/src/lib/tls/msg_cert_verify.cpp
index adf74b2e1..769a8687e 100644
--- a/src/lib/tls/msg_cert_verify.cpp
+++ b/src/lib/tls/msg_cert_verify.cpp
@@ -2,7 +2,7 @@
* Certificate Verify Message
* (C) 2004,2006,2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_certificate.cpp b/src/lib/tls/msg_certificate.cpp
index 417ad34ce..99722c306 100644
--- a/src/lib/tls/msg_certificate.cpp
+++ b/src/lib/tls/msg_certificate.cpp
@@ -2,7 +2,7 @@
* Certificate Message
* (C) 2004-2006,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_client_hello.cpp b/src/lib/tls/msg_client_hello.cpp
index 02e28b5c9..cebe8ac9e 100644
--- a/src/lib/tls/msg_client_hello.cpp
+++ b/src/lib/tls/msg_client_hello.cpp
@@ -2,7 +2,7 @@
* TLS Hello Request and Client Hello Messages
* (C) 2004-2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_client_kex.cpp b/src/lib/tls/msg_client_kex.cpp
index 3ca455b6b..4bdd9983c 100644
--- a/src/lib/tls/msg_client_kex.cpp
+++ b/src/lib/tls/msg_client_kex.cpp
@@ -2,7 +2,7 @@
* Client Key Exchange Message
* (C) 2004-2010 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_finished.cpp b/src/lib/tls/msg_finished.cpp
index 0d3d0df0b..c6c097c0d 100644
--- a/src/lib/tls/msg_finished.cpp
+++ b/src/lib/tls/msg_finished.cpp
@@ -2,7 +2,7 @@
* Finished Message
* (C) 2004-2006,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_hello_verify.cpp b/src/lib/tls/msg_hello_verify.cpp
index 5a8976ae0..8f209998f 100644
--- a/src/lib/tls/msg_hello_verify.cpp
+++ b/src/lib/tls/msg_hello_verify.cpp
@@ -2,7 +2,7 @@
* DTLS Hello Verify Request
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_next_protocol.cpp b/src/lib/tls/msg_next_protocol.cpp
index 4371ce33c..6e56917d6 100644
--- a/src/lib/tls/msg_next_protocol.cpp
+++ b/src/lib/tls/msg_next_protocol.cpp
@@ -2,7 +2,7 @@
* Next Protocol Negotiation
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_server_hello.cpp b/src/lib/tls/msg_server_hello.cpp
index 8dd7d3595..a0fc008e8 100644
--- a/src/lib/tls/msg_server_hello.cpp
+++ b/src/lib/tls/msg_server_hello.cpp
@@ -2,7 +2,7 @@
* TLS Server Hello and Server Hello Done
* (C) 2004-2011,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_server_kex.cpp b/src/lib/tls/msg_server_kex.cpp
index 1c169877c..2950f1906 100644
--- a/src/lib/tls/msg_server_kex.cpp
+++ b/src/lib/tls/msg_server_kex.cpp
@@ -2,7 +2,7 @@
* Server Key Exchange Message
* (C) 2004-2010,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/msg_session_ticket.cpp b/src/lib/tls/msg_session_ticket.cpp
index 2d5411a86..26dc250c3 100644
--- a/src/lib/tls/msg_session_ticket.cpp
+++ b/src/lib/tls/msg_session_ticket.cpp
@@ -2,7 +2,7 @@
* Session Tickets
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
diff --git a/src/lib/tls/sessions_sql/tls_session_manager_sql.cpp b/src/lib/tls/sessions_sql/tls_session_manager_sql.cpp
index 561939def..665a2ded6 100644
--- a/src/lib/tls/sessions_sql/tls_session_manager_sql.cpp
+++ b/src/lib/tls/sessions_sql/tls_session_manager_sql.cpp
@@ -2,7 +2,7 @@
* SQL TLS Session Manager
* (C) 2012,2014 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_session_manager_sql.h>
diff --git a/src/lib/tls/sessions_sql/tls_session_manager_sql.h b/src/lib/tls/sessions_sql/tls_session_manager_sql.h
index 0935b73ac..081c42e74 100644
--- a/src/lib/tls/sessions_sql/tls_session_manager_sql.h
+++ b/src/lib/tls/sessions_sql/tls_session_manager_sql.h
@@ -2,7 +2,7 @@
* TLS Session Manager storing to encrypted SQL db table
* (C) 2012,2014 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SQL_SESSION_MANAGER_H__
diff --git a/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.cpp b/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.cpp
index 30af3699f..aa163be8a 100644
--- a/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.cpp
+++ b/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.cpp
@@ -2,7 +2,7 @@
* SQLite TLS Session Manager
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_session_manager_sqlite.h>
diff --git a/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.h b/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.h
index 67c1c9e53..4a7c175cc 100644
--- a/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.h
+++ b/src/lib/tls/sessions_sqlite3/tls_session_manager_sqlite.h
@@ -2,7 +2,7 @@
* SQLite3 TLS Session Manager
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SQLITE3_SESSION_MANAGER_H__
diff --git a/src/lib/tls/tls_alert.cpp b/src/lib/tls/tls_alert.cpp
index 47e1730ea..ecda5055c 100644
--- a/src/lib/tls/tls_alert.cpp
+++ b/src/lib/tls/tls_alert.cpp
@@ -2,7 +2,7 @@
* Alert Message
* (C) 2004-2006,2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_alert.h>
diff --git a/src/lib/tls/tls_alert.h b/src/lib/tls/tls_alert.h
index 089fe8ba3..90bc80d45 100644
--- a/src/lib/tls/tls_alert.h
+++ b/src/lib/tls/tls_alert.h
@@ -2,7 +2,7 @@
* Alert Message
* (C) 2004-2006,2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_ALERT_H__
diff --git a/src/lib/tls/tls_blocking.cpp b/src/lib/tls/tls_blocking.cpp
index 4b33ba926..dc5769e2c 100644
--- a/src/lib/tls/tls_blocking.cpp
+++ b/src/lib/tls/tls_blocking.cpp
@@ -2,7 +2,7 @@
* TLS Blocking API
* (C) 2013 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_blocking.h>
diff --git a/src/lib/tls/tls_blocking.h b/src/lib/tls/tls_blocking.h
index cfa96ce8d..1226d9364 100644
--- a/src/lib/tls/tls_blocking.h
+++ b/src/lib/tls/tls_blocking.h
@@ -2,7 +2,7 @@
* TLS Blocking API
* (C) 2013 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_BLOCKING_CHANNELS_H__
diff --git a/src/lib/tls/tls_channel.cpp b/src/lib/tls/tls_channel.cpp
index 4b42016fa..a5e504f8b 100644
--- a/src/lib/tls/tls_channel.cpp
+++ b/src/lib/tls/tls_channel.cpp
@@ -2,7 +2,7 @@
* TLS Channels
* (C) 2011,2012,2014,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_channel.h>
diff --git a/src/lib/tls/tls_channel.h b/src/lib/tls/tls_channel.h
index c5da583a1..5b5a5d530 100644
--- a/src/lib/tls/tls_channel.h
+++ b/src/lib/tls/tls_channel.h
@@ -2,7 +2,7 @@
* TLS Channel
* (C) 2011,2012,2014,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_CHANNEL_H__
diff --git a/src/lib/tls/tls_ciphersuite.cpp b/src/lib/tls/tls_ciphersuite.cpp
index 2ed5d24e6..c912965c6 100644
--- a/src/lib/tls/tls_ciphersuite.cpp
+++ b/src/lib/tls/tls_ciphersuite.cpp
@@ -2,7 +2,7 @@
* TLS Cipher Suite
* (C) 2004-2010,2012,2013 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_ciphersuite.h>
diff --git a/src/lib/tls/tls_ciphersuite.h b/src/lib/tls/tls_ciphersuite.h
index bff5b0d9d..26faca11b 100644
--- a/src/lib/tls/tls_ciphersuite.h
+++ b/src/lib/tls/tls_ciphersuite.h
@@ -2,7 +2,7 @@
* TLS Cipher Suites
* (C) 2004-2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_CIPHER_SUITES_H__
diff --git a/src/lib/tls/tls_client.cpp b/src/lib/tls/tls_client.cpp
index 1e858a0b0..f68c9c614 100644
--- a/src/lib/tls/tls_client.cpp
+++ b/src/lib/tls/tls_client.cpp
@@ -2,7 +2,7 @@
* TLS Client
* (C) 2004-2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_client.h>
diff --git a/src/lib/tls/tls_client.h b/src/lib/tls/tls_client.h
index c4440c7ac..126dbb935 100644
--- a/src/lib/tls/tls_client.h
+++ b/src/lib/tls/tls_client.h
@@ -2,7 +2,7 @@
* TLS Client
* (C) 2004-2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_CLIENT_H__
diff --git a/src/lib/tls/tls_exceptn.h b/src/lib/tls/tls_exceptn.h
index 529d1f315..ae601b60b 100644
--- a/src/lib/tls/tls_exceptn.h
+++ b/src/lib/tls/tls_exceptn.h
@@ -2,7 +2,7 @@
* Exceptions
* (C) 2004-2006 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_EXCEPTION_H__
diff --git a/src/lib/tls/tls_extensions.cpp b/src/lib/tls/tls_extensions.cpp
index 29bf68b80..2c3056d9f 100644
--- a/src/lib/tls/tls_extensions.cpp
+++ b/src/lib/tls/tls_extensions.cpp
@@ -2,7 +2,7 @@
* TLS Extensions
* (C) 2011,2012,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_extensions.h>
diff --git a/src/lib/tls/tls_extensions.h b/src/lib/tls/tls_extensions.h
index f26970b47..393cada12 100644
--- a/src/lib/tls/tls_extensions.h
+++ b/src/lib/tls/tls_extensions.h
@@ -2,7 +2,7 @@
* TLS Extensions
* (C) 2011-2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_EXTENSIONS_H__
diff --git a/src/lib/tls/tls_handshake_hash.cpp b/src/lib/tls/tls_handshake_hash.cpp
index ed8bee5a3..77605309c 100644
--- a/src/lib/tls/tls_handshake_hash.cpp
+++ b/src/lib/tls/tls_handshake_hash.cpp
@@ -2,7 +2,7 @@
* TLS Handshake Hash
* (C) 2004-2006,2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_handshake_hash.h>
diff --git a/src/lib/tls/tls_handshake_hash.h b/src/lib/tls/tls_handshake_hash.h
index 840895963..0b4fa7120 100644
--- a/src/lib/tls/tls_handshake_hash.h
+++ b/src/lib/tls/tls_handshake_hash.h
@@ -2,7 +2,7 @@
* TLS Handshake Hash
* (C) 2004-2006,2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_HANDSHAKE_HASH_H__
diff --git a/src/lib/tls/tls_handshake_io.cpp b/src/lib/tls/tls_handshake_io.cpp
index da27cc4ce..ef766679f 100644
--- a/src/lib/tls/tls_handshake_io.cpp
+++ b/src/lib/tls/tls_handshake_io.cpp
@@ -2,7 +2,7 @@
* TLS Handshake IO
* (C) 2012,2014 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_handshake_io.h>
diff --git a/src/lib/tls/tls_handshake_io.h b/src/lib/tls/tls_handshake_io.h
index b13a81700..34873c3a6 100644
--- a/src/lib/tls/tls_handshake_io.h
+++ b/src/lib/tls/tls_handshake_io.h
@@ -2,7 +2,7 @@
* TLS Handshake Serialization
* (C) 2012,2014 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_HANDSHAKE_IO_H__
diff --git a/src/lib/tls/tls_handshake_msg.h b/src/lib/tls/tls_handshake_msg.h
index 1c44554d3..6937d4f2c 100644
--- a/src/lib/tls/tls_handshake_msg.h
+++ b/src/lib/tls/tls_handshake_msg.h
@@ -2,7 +2,7 @@
* TLS Handshake Message
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_HANDSHAKE_MSG_H__
diff --git a/src/lib/tls/tls_handshake_state.cpp b/src/lib/tls/tls_handshake_state.cpp
index a7317a333..4a6714f15 100644
--- a/src/lib/tls/tls_handshake_state.cpp
+++ b/src/lib/tls/tls_handshake_state.cpp
@@ -2,7 +2,7 @@
* TLS Handshaking
* (C) 2004-2006,2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_handshake_state.h>
diff --git a/src/lib/tls/tls_handshake_state.h b/src/lib/tls/tls_handshake_state.h
index 205d0d8b9..3c8d856d7 100644
--- a/src/lib/tls/tls_handshake_state.h
+++ b/src/lib/tls/tls_handshake_state.h
@@ -2,7 +2,7 @@
* TLS Handshake State
* (C) 2004-2006,2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_HANDSHAKE_STATE_H__
diff --git a/src/lib/tls/tls_heartbeats.cpp b/src/lib/tls/tls_heartbeats.cpp
index a8bcc0189..11c9a355f 100644
--- a/src/lib/tls/tls_heartbeats.cpp
+++ b/src/lib/tls/tls_heartbeats.cpp
@@ -2,7 +2,7 @@
* TLS Heartbeats
* (C) 2012,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_heartbeats.h>
diff --git a/src/lib/tls/tls_heartbeats.h b/src/lib/tls/tls_heartbeats.h
index c17c5606f..dcb63babe 100644
--- a/src/lib/tls/tls_heartbeats.h
+++ b/src/lib/tls/tls_heartbeats.h
@@ -2,7 +2,7 @@
* TLS Heartbeats
* (C) 2012,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_HEARTBEATS_H__
diff --git a/src/lib/tls/tls_magic.h b/src/lib/tls/tls_magic.h
index e22ab7248..6a29ea0a1 100644
--- a/src/lib/tls/tls_magic.h
+++ b/src/lib/tls/tls_magic.h
@@ -2,7 +2,7 @@
* SSL/TLS Protocol Constants
* (C) 2004-2010 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_PROTOCOL_MAGIC_H__
diff --git a/src/lib/tls/tls_messages.h b/src/lib/tls/tls_messages.h
index 59bf296f4..4fb3d2535 100644
--- a/src/lib/tls/tls_messages.h
+++ b/src/lib/tls/tls_messages.h
@@ -2,7 +2,7 @@
* TLS Messages
* (C) 2004-2011,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_MESSAGES_H__
diff --git a/src/lib/tls/tls_policy.cpp b/src/lib/tls/tls_policy.cpp
index 39ac25940..d8d241a2a 100644
--- a/src/lib/tls/tls_policy.cpp
+++ b/src/lib/tls/tls_policy.cpp
@@ -2,7 +2,7 @@
* Policies for TLS
* (C) 2004-2010,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_policy.h>
diff --git a/src/lib/tls/tls_policy.h b/src/lib/tls/tls_policy.h
index e08714df8..0e81dd7f7 100644
--- a/src/lib/tls/tls_policy.h
+++ b/src/lib/tls/tls_policy.h
@@ -2,7 +2,7 @@
* Hooks for application level policies on TLS connections
* (C) 2004-2006,2013 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_POLICY_H__
diff --git a/src/lib/tls/tls_reader.h b/src/lib/tls/tls_reader.h
index f80e494f4..f24543edb 100644
--- a/src/lib/tls/tls_reader.h
+++ b/src/lib/tls/tls_reader.h
@@ -2,7 +2,7 @@
* TLS Data Reader
* (C) 2010-2011,2014 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_READER_H__
diff --git a/src/lib/tls/tls_record.cpp b/src/lib/tls/tls_record.cpp
index 5f3801024..b2653c54a 100644
--- a/src/lib/tls/tls_record.cpp
+++ b/src/lib/tls/tls_record.cpp
@@ -2,7 +2,7 @@
* TLS Record Handling
* (C) 2012,2013,2014 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_record.h>
diff --git a/src/lib/tls/tls_record.h b/src/lib/tls/tls_record.h
index d7e85dcab..5ed3ed6ea 100644
--- a/src/lib/tls/tls_record.h
+++ b/src/lib/tls/tls_record.h
@@ -2,7 +2,7 @@
* TLS Record Handling
* (C) 2004-2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_RECORDS_H__
diff --git a/src/lib/tls/tls_seq_numbers.h b/src/lib/tls/tls_seq_numbers.h
index d7b8c919c..2feef33a9 100644
--- a/src/lib/tls/tls_seq_numbers.h
+++ b/src/lib/tls/tls_seq_numbers.h
@@ -2,7 +2,7 @@
* TLS Sequence Number Handling
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SEQ_NUMBERS_H__
diff --git a/src/lib/tls/tls_server.cpp b/src/lib/tls/tls_server.cpp
index 228668943..43be3788d 100644
--- a/src/lib/tls/tls_server.cpp
+++ b/src/lib/tls/tls_server.cpp
@@ -2,7 +2,7 @@
* TLS Server
* (C) 2004-2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_server.h>
diff --git a/src/lib/tls/tls_server.h b/src/lib/tls/tls_server.h
index c0646bdbc..ce82e001d 100644
--- a/src/lib/tls/tls_server.h
+++ b/src/lib/tls/tls_server.h
@@ -2,7 +2,7 @@
* TLS Server
* (C) 2004-2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SERVER_H__
diff --git a/src/lib/tls/tls_server_info.h b/src/lib/tls/tls_server_info.h
index 773296eaf..4ae291d3a 100644
--- a/src/lib/tls/tls_server_info.h
+++ b/src/lib/tls/tls_server_info.h
@@ -2,7 +2,7 @@
* TLS Server Information
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SERVER_INFO_H__
diff --git a/src/lib/tls/tls_session.cpp b/src/lib/tls/tls_session.cpp
index 1891e6e4e..6ce25349c 100644
--- a/src/lib/tls/tls_session.cpp
+++ b/src/lib/tls/tls_session.cpp
@@ -2,7 +2,7 @@
* TLS Session State
* (C) 2011-2012,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_session.h>
diff --git a/src/lib/tls/tls_session.h b/src/lib/tls/tls_session.h
index c3824237a..31691f078 100644
--- a/src/lib/tls/tls_session.h
+++ b/src/lib/tls/tls_session.h
@@ -2,7 +2,7 @@
* TLS Session
* (C) 2011-2012,2015 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SESSION_STATE_H__
diff --git a/src/lib/tls/tls_session_key.cpp b/src/lib/tls/tls_session_key.cpp
index 3ea80ecb0..570470732 100644
--- a/src/lib/tls/tls_session_key.cpp
+++ b/src/lib/tls/tls_session_key.cpp
@@ -2,7 +2,7 @@
* TLS Session Key
* (C) 2004-2006,2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_session_key.h>
diff --git a/src/lib/tls/tls_session_key.h b/src/lib/tls/tls_session_key.h
index d62e3400d..6b74f907d 100644
--- a/src/lib/tls/tls_session_key.h
+++ b/src/lib/tls/tls_session_key.h
@@ -2,7 +2,7 @@
* TLS Session Key
* (C) 2004-2006,2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SESSION_KEYS_H__
diff --git a/src/lib/tls/tls_session_manager.h b/src/lib/tls/tls_session_manager.h
index e6eacc88c..c7aa1960b 100644
--- a/src/lib/tls/tls_session_manager.h
+++ b/src/lib/tls/tls_session_manager.h
@@ -2,7 +2,7 @@
* TLS Session Manager
* (C) 2011 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_SESSION_MANAGER_H__
diff --git a/src/lib/tls/tls_session_manager_memory.cpp b/src/lib/tls/tls_session_manager_memory.cpp
index 24ede276c..2c836290b 100644
--- a/src/lib/tls/tls_session_manager_memory.cpp
+++ b/src/lib/tls/tls_session_manager_memory.cpp
@@ -2,7 +2,7 @@
* TLS Session Management
* (C) 2011,2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_session_manager.h>
diff --git a/src/lib/tls/tls_suite_info.cpp b/src/lib/tls/tls_suite_info.cpp
index 90ff2ae61..a8862c3b2 100644
--- a/src/lib/tls/tls_suite_info.cpp
+++ b/src/lib/tls/tls_suite_info.cpp
@@ -5,7 +5,7 @@
* (tls-parameters.txt hash 4bc98b6f75ad5b63952b5f457fa7adbfef60f095)
* by ./src/scripts/tls_suite_info.py on 2014-12-31
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_ciphersuite.h>
diff --git a/src/lib/tls/tls_version.cpp b/src/lib/tls/tls_version.cpp
index 71dac4048..67069c738 100644
--- a/src/lib/tls/tls_version.cpp
+++ b/src/lib/tls/tls_version.cpp
@@ -2,7 +2,7 @@
* TLS Protocol Version Management
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_version.h>
diff --git a/src/lib/tls/tls_version.h b/src/lib/tls/tls_version.h
index 2e2969fbf..8e686e8e4 100644
--- a/src/lib/tls/tls_version.h
+++ b/src/lib/tls/tls_version.h
@@ -2,7 +2,7 @@
* TLS Protocol Version Management
* (C) 2012 Jack Lloyd
*
-* Released under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TLS_PROTOCOL_VERSION_H__