From 3f16815c9e6349c4a0eeb6a6ecfe004e5d31e287 Mon Sep 17 00:00:00 2001 From: lloyd Date: Sat, 10 Jan 2015 04:15:52 +0000 Subject: 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. --- src/lib/mac/cbc_mac/cbc_mac.cpp | 2 +- src/lib/mac/cbc_mac/cbc_mac.h | 2 +- src/lib/mac/cmac/cmac.cpp | 2 +- src/lib/mac/cmac/cmac.h | 2 +- src/lib/mac/hmac/hmac.cpp | 2 +- src/lib/mac/hmac/hmac.h | 2 +- src/lib/mac/mac.cpp | 2 +- src/lib/mac/mac.h | 2 +- src/lib/mac/poly1305/poly1305.cpp | 2 +- src/lib/mac/poly1305/poly1305.h | 2 +- src/lib/mac/poly1305/poly1305_donna.h | 2 +- src/lib/mac/ssl3mac/ssl3_mac.cpp | 2 +- src/lib/mac/ssl3mac/ssl3_mac.h | 2 +- src/lib/mac/x919_mac/x919_mac.cpp | 2 +- src/lib/mac/x919_mac/x919_mac.h | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) (limited to 'src/lib/mac') diff --git a/src/lib/mac/cbc_mac/cbc_mac.cpp b/src/lib/mac/cbc_mac/cbc_mac.cpp index 7d9a55e28..e8fc394fa 100644 --- a/src/lib/mac/cbc_mac/cbc_mac.cpp +++ b/src/lib/mac/cbc_mac/cbc_mac.cpp @@ -2,7 +2,7 @@ * CBC-MAC * (C) 1999-2007 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/cbc_mac/cbc_mac.h b/src/lib/mac/cbc_mac/cbc_mac.h index d7cb5893c..10c8a0da4 100644 --- a/src/lib/mac/cbc_mac/cbc_mac.h +++ b/src/lib/mac/cbc_mac/cbc_mac.h @@ -2,7 +2,7 @@ * CBC-MAC * (C) 1999-2007 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_CBC_MAC_H__ diff --git a/src/lib/mac/cmac/cmac.cpp b/src/lib/mac/cmac/cmac.cpp index daa320a36..2e90e9002 100644 --- a/src/lib/mac/cmac/cmac.cpp +++ b/src/lib/mac/cmac/cmac.cpp @@ -2,7 +2,7 @@ * CMAC * (C) 1999-2007,2014 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/cmac/cmac.h b/src/lib/mac/cmac/cmac.h index eb633c168..491a081a4 100644 --- a/src/lib/mac/cmac/cmac.h +++ b/src/lib/mac/cmac/cmac.h @@ -2,7 +2,7 @@ * CMAC * (C) 1999-2007,2014 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_CMAC_H__ diff --git a/src/lib/mac/hmac/hmac.cpp b/src/lib/mac/hmac/hmac.cpp index 6d8e393ae..625fd122e 100644 --- a/src/lib/mac/hmac/hmac.cpp +++ b/src/lib/mac/hmac/hmac.cpp @@ -3,7 +3,7 @@ * (C) 1999-2007,2014 Jack Lloyd * 2007 Yves Jerschow * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/hmac/hmac.h b/src/lib/mac/hmac/hmac.h index b08502db4..b6311d741 100644 --- a/src/lib/mac/hmac/hmac.h +++ b/src/lib/mac/hmac/hmac.h @@ -2,7 +2,7 @@ * HMAC * (C) 1999-2007,2014 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_HMAC_H__ diff --git a/src/lib/mac/mac.cpp b/src/lib/mac/mac.cpp index 094aa1b4a..cd1951639 100644 --- a/src/lib/mac/mac.cpp +++ b/src/lib/mac/mac.cpp @@ -2,7 +2,7 @@ * Message Authentication Code base class * (C) 1999-2008 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/mac.h b/src/lib/mac/mac.h index d42092908..e472e4d0b 100644 --- a/src/lib/mac/mac.h +++ b/src/lib/mac/mac.h @@ -2,7 +2,7 @@ * Base class for message authentiction codes * (C) 1999-2007 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_MESSAGE_AUTH_CODE_BASE_H__ diff --git a/src/lib/mac/poly1305/poly1305.cpp b/src/lib/mac/poly1305/poly1305.cpp index 11ce0fe41..8000ebbd8 100644 --- a/src/lib/mac/poly1305/poly1305.cpp +++ b/src/lib/mac/poly1305/poly1305.cpp @@ -2,7 +2,7 @@ * Poly1305 * (C) 2014 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/poly1305/poly1305.h b/src/lib/mac/poly1305/poly1305.h index 8334edb03..1c7fbf7fd 100644 --- a/src/lib/mac/poly1305/poly1305.h +++ b/src/lib/mac/poly1305/poly1305.h @@ -2,7 +2,7 @@ * Poly1305 * (C) 2014 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_MAC_POLY1305_H__ diff --git a/src/lib/mac/poly1305/poly1305_donna.h b/src/lib/mac/poly1305/poly1305_donna.h index f0f3fe387..fa190baa5 100644 --- a/src/lib/mac/poly1305/poly1305_donna.h +++ b/src/lib/mac/poly1305/poly1305_donna.h @@ -4,7 +4,7 @@ * * (C) 2014 Andrew Moon * (C) 2014 Jack Lloyd -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_POLY1305_DONNA_H__ diff --git a/src/lib/mac/ssl3mac/ssl3_mac.cpp b/src/lib/mac/ssl3mac/ssl3_mac.cpp index 82a26cfaf..5ab5ff727 100644 --- a/src/lib/mac/ssl3mac/ssl3_mac.cpp +++ b/src/lib/mac/ssl3mac/ssl3_mac.cpp @@ -2,7 +2,7 @@ * SSL3-MAC * (C) 1999-2004 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/ssl3mac/ssl3_mac.h b/src/lib/mac/ssl3mac/ssl3_mac.h index 3fb08e7b1..290fffd01 100644 --- a/src/lib/mac/ssl3mac/ssl3_mac.h +++ b/src/lib/mac/ssl3mac/ssl3_mac.h @@ -2,7 +2,7 @@ * SSL3-MAC * (C) 1999-2004 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_SSL3_MAC_H__ diff --git a/src/lib/mac/x919_mac/x919_mac.cpp b/src/lib/mac/x919_mac/x919_mac.cpp index 1a6d03761..4378a432f 100644 --- a/src/lib/mac/x919_mac/x919_mac.cpp +++ b/src/lib/mac/x919_mac/x919_mac.cpp @@ -2,7 +2,7 @@ * ANSI X9.19 MAC * (C) 1999-2007 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #include diff --git a/src/lib/mac/x919_mac/x919_mac.h b/src/lib/mac/x919_mac/x919_mac.h index 97f1e9f89..35553c544 100644 --- a/src/lib/mac/x919_mac/x919_mac.h +++ b/src/lib/mac/x919_mac/x919_mac.h @@ -2,7 +2,7 @@ * ANSI X9.19 MAC * (C) 1999-2007 Jack Lloyd * -* Distributed under the terms of the Botan license +* Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_ANSI_X919_MAC_H__ -- cgit v1.2.3