aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/aes_ssse3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/aes_ssse3')
-rw-r--r--src/lib/block/aes_ssse3/aes_ssse3.cpp2
-rw-r--r--src/lib/block/aes_ssse3/aes_ssse3.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/block/aes_ssse3/aes_ssse3.cpp b/src/lib/block/aes_ssse3/aes_ssse3.cpp
index 476b004bb..40f0a5c8e 100644
--- a/src/lib/block/aes_ssse3/aes_ssse3.cpp
+++ b/src/lib/block/aes_ssse3/aes_ssse3.cpp
@@ -7,7 +7,7 @@
* with Vector Permute Instructions" (CHES 2009). His original code is
* available at http://crypto.stanford.edu/vpaes/
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/aes_ssse3.h>
diff --git a/src/lib/block/aes_ssse3/aes_ssse3.h b/src/lib/block/aes_ssse3/aes_ssse3.h
index 938abeae3..4e3df39e9 100644
--- a/src/lib/block/aes_ssse3/aes_ssse3.h
+++ b/src/lib/block/aes_ssse3/aes_ssse3.h
@@ -2,7 +2,7 @@
* AES using SSSE3
* (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_AES_SSSE3_H__