aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/codec/base64
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/codec/base64
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/codec/base64')
-rw-r--r--src/lib/codec/base64/base64.cpp2
-rw-r--r--src/lib/codec/base64/base64.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/codec/base64/base64.cpp b/src/lib/codec/base64/base64.cpp
index 284ae56f2..9e463e680 100644
--- a/src/lib/codec/base64/base64.cpp
+++ b/src/lib/codec/base64/base64.cpp
@@ -2,7 +2,7 @@
* Base64 Encoding and Decoding
* (C) 2010,2015 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/base64.h>
diff --git a/src/lib/codec/base64/base64.h b/src/lib/codec/base64/base64.h
index 9ea4143b7..ab7bb5a1c 100644
--- a/src/lib/codec/base64/base64.h
+++ b/src/lib/codec/base64/base64.h
@@ -2,7 +2,7 @@
* Base64 Encoding and Decoding
* (C) 2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_BASE64_CODEC_H__