aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/engine
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/engine
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/engine')
-rw-r--r--src/lib/engine/aes_isa_eng/aes_isa_engine.cpp2
-rw-r--r--src/lib/engine/aes_isa_eng/aes_isa_engine.h2
-rw-r--r--src/lib/engine/asm_engine/asm_engine.cpp2
-rw-r--r--src/lib/engine/asm_engine/asm_engine.h2
-rw-r--r--src/lib/engine/core_engine/core_engine.h2
-rw-r--r--src/lib/engine/core_engine/core_modes.cpp2
-rw-r--r--src/lib/engine/core_engine/def_pk_ops.cpp2
-rw-r--r--src/lib/engine/core_engine/def_powm.cpp2
-rw-r--r--src/lib/engine/core_engine/lookup_block.cpp2
-rw-r--r--src/lib/engine/core_engine/lookup_hash.cpp2
-rw-r--r--src/lib/engine/core_engine/lookup_mac.cpp2
-rw-r--r--src/lib/engine/core_engine/lookup_pbkdf.cpp2
-rw-r--r--src/lib/engine/core_engine/lookup_stream.cpp2
-rw-r--r--src/lib/engine/dyn_engine/dyn_engine.cpp2
-rw-r--r--src/lib/engine/dyn_engine/dyn_engine.h2
-rw-r--r--src/lib/engine/engine.cpp2
-rw-r--r--src/lib/engine/engine.h2
-rw-r--r--src/lib/engine/openssl/openssl_engine.h2
-rw-r--r--src/lib/engine/openssl/ossl_arc4.cpp2
-rw-r--r--src/lib/engine/openssl/ossl_bc.cpp2
-rw-r--r--src/lib/engine/openssl/ossl_md.cpp2
-rw-r--r--src/lib/engine/simd_engine/simd_engine.cpp2
-rw-r--r--src/lib/engine/simd_engine/simd_engine.h2
23 files changed, 23 insertions, 23 deletions
diff --git a/src/lib/engine/aes_isa_eng/aes_isa_engine.cpp b/src/lib/engine/aes_isa_eng/aes_isa_engine.cpp
index 956a1ce38..c73eefcd3 100644
--- a/src/lib/engine/aes_isa_eng/aes_isa_engine.cpp
+++ b/src/lib/engine/aes_isa_eng/aes_isa_engine.cpp
@@ -2,7 +2,7 @@
* Engine for AES instructions
* (C) 2009 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/aes_isa_engine.h>
diff --git a/src/lib/engine/aes_isa_eng/aes_isa_engine.h b/src/lib/engine/aes_isa_eng/aes_isa_engine.h
index 3c4d3e936..298574543 100644
--- a/src/lib/engine/aes_isa_eng/aes_isa_engine.h
+++ b/src/lib/engine/aes_isa_eng/aes_isa_engine.h
@@ -2,7 +2,7 @@
* Engine for AES instructions
* (C) 2009 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_AES_ISA_ENGINE_H__
diff --git a/src/lib/engine/asm_engine/asm_engine.cpp b/src/lib/engine/asm_engine/asm_engine.cpp
index a43a3302d..59be4a826 100644
--- a/src/lib/engine/asm_engine/asm_engine.cpp
+++ b/src/lib/engine/asm_engine/asm_engine.cpp
@@ -2,7 +2,7 @@
* Assembly Implementation Engine
* (C) 1999-2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/asm_engine.h>
diff --git a/src/lib/engine/asm_engine/asm_engine.h b/src/lib/engine/asm_engine/asm_engine.h
index 40fe5342f..02e629e98 100644
--- a/src/lib/engine/asm_engine/asm_engine.h
+++ b/src/lib/engine/asm_engine/asm_engine.h
@@ -2,7 +2,7 @@
* Assembly Implementation Engine
* (C) 1999-2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_X86_32_ASM_ENGINE_H__
diff --git a/src/lib/engine/core_engine/core_engine.h b/src/lib/engine/core_engine/core_engine.h
index d12895662..40afff515 100644
--- a/src/lib/engine/core_engine/core_engine.h
+++ b/src/lib/engine/core_engine/core_engine.h
@@ -2,7 +2,7 @@
* Core Engine
* (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_CORE_ENGINE_H__
diff --git a/src/lib/engine/core_engine/core_modes.cpp b/src/lib/engine/core_engine/core_modes.cpp
index b29f46c9e..1d96e581d 100644
--- a/src/lib/engine/core_engine/core_modes.cpp
+++ b/src/lib/engine/core_engine/core_modes.cpp
@@ -2,7 +2,7 @@
* Core Engine
* (C) 1999-2007,2011,2013 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/def_pk_ops.cpp b/src/lib/engine/core_engine/def_pk_ops.cpp
index cbe7d27fc..f941245fb 100644
--- a/src/lib/engine/core_engine/def_pk_ops.cpp
+++ b/src/lib/engine/core_engine/def_pk_ops.cpp
@@ -2,7 +2,7 @@
* PK Operations
* (C) 1999-2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/def_powm.cpp b/src/lib/engine/core_engine/def_powm.cpp
index 56a4b6844..541f18c04 100644
--- a/src/lib/engine/core_engine/def_powm.cpp
+++ b/src/lib/engine/core_engine/def_powm.cpp
@@ -2,7 +2,7 @@
* Modular Exponentiation
* (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 <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/lookup_block.cpp b/src/lib/engine/core_engine/lookup_block.cpp
index fc2f1e982..703e578ac 100644
--- a/src/lib/engine/core_engine/lookup_block.cpp
+++ b/src/lib/engine/core_engine/lookup_block.cpp
@@ -2,7 +2,7 @@
* Block Cipher Lookup
* (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 <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/lookup_hash.cpp b/src/lib/engine/core_engine/lookup_hash.cpp
index b5a071c4e..446851bff 100644
--- a/src/lib/engine/core_engine/lookup_hash.cpp
+++ b/src/lib/engine/core_engine/lookup_hash.cpp
@@ -2,7 +2,7 @@
* Hash Algorithms Lookup
* (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 <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/lookup_mac.cpp b/src/lib/engine/core_engine/lookup_mac.cpp
index acb8da019..62e23eb57 100644
--- a/src/lib/engine/core_engine/lookup_mac.cpp
+++ b/src/lib/engine/core_engine/lookup_mac.cpp
@@ -2,7 +2,7 @@
* MAC Lookup
* (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 <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/lookup_pbkdf.cpp b/src/lib/engine/core_engine/lookup_pbkdf.cpp
index bfd2c8bc2..1dc40322c 100644
--- a/src/lib/engine/core_engine/lookup_pbkdf.cpp
+++ b/src/lib/engine/core_engine/lookup_pbkdf.cpp
@@ -2,7 +2,7 @@
* PBKDF Lookup
* (C) 2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/core_engine.h>
diff --git a/src/lib/engine/core_engine/lookup_stream.cpp b/src/lib/engine/core_engine/lookup_stream.cpp
index 9e9a7e8df..a0fee6978 100644
--- a/src/lib/engine/core_engine/lookup_stream.cpp
+++ b/src/lib/engine/core_engine/lookup_stream.cpp
@@ -2,7 +2,7 @@
* Stream Cipher Lookup
* (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 <botan/internal/core_engine.h>
diff --git a/src/lib/engine/dyn_engine/dyn_engine.cpp b/src/lib/engine/dyn_engine/dyn_engine.cpp
index 078ec4b83..ad74370a2 100644
--- a/src/lib/engine/dyn_engine/dyn_engine.cpp
+++ b/src/lib/engine/dyn_engine/dyn_engine.cpp
@@ -2,7 +2,7 @@
* Dynamically Loaded Engine
* (C) 2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/dyn_engine.h>
diff --git a/src/lib/engine/dyn_engine/dyn_engine.h b/src/lib/engine/dyn_engine/dyn_engine.h
index a9671b5b5..02a9d6343 100644
--- a/src/lib/engine/dyn_engine/dyn_engine.h
+++ b/src/lib/engine/dyn_engine/dyn_engine.h
@@ -2,7 +2,7 @@
* Dynamically Loaded Engine
* (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_DYN_LOADED_ENGINE_H__
diff --git a/src/lib/engine/engine.cpp b/src/lib/engine/engine.cpp
index bfb08ec91..8c164804b 100644
--- a/src/lib/engine/engine.cpp
+++ b/src/lib/engine/engine.cpp
@@ -2,7 +2,7 @@
* Engine
* (C) 2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/engine.h>
diff --git a/src/lib/engine/engine.h b/src/lib/engine/engine.h
index 9774a941f..d28bc28ab 100644
--- a/src/lib/engine/engine.h
+++ b/src/lib/engine/engine.h
@@ -2,7 +2,7 @@
* Engine
* (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_ENGINE_H__
diff --git a/src/lib/engine/openssl/openssl_engine.h b/src/lib/engine/openssl/openssl_engine.h
index a106f3d21..3e3940499 100644
--- a/src/lib/engine/openssl/openssl_engine.h
+++ b/src/lib/engine/openssl/openssl_engine.h
@@ -2,7 +2,7 @@
* OpenSSL Engine
* (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_ENGINE_OPENSSL_H__
diff --git a/src/lib/engine/openssl/ossl_arc4.cpp b/src/lib/engine/openssl/ossl_arc4.cpp
index 0eb404af1..4533c2688 100644
--- a/src/lib/engine/openssl/ossl_arc4.cpp
+++ b/src/lib/engine/openssl/ossl_arc4.cpp
@@ -2,7 +2,7 @@
* OpenSSL RC4
* (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 <botan/internal/openssl_engine.h>
diff --git a/src/lib/engine/openssl/ossl_bc.cpp b/src/lib/engine/openssl/ossl_bc.cpp
index b3b509c36..8e8c6e5a8 100644
--- a/src/lib/engine/openssl/ossl_bc.cpp
+++ b/src/lib/engine/openssl/ossl_bc.cpp
@@ -2,7 +2,7 @@
* OpenSSL Block Cipher
* (C) 1999-2010 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/openssl_engine.h>
diff --git a/src/lib/engine/openssl/ossl_md.cpp b/src/lib/engine/openssl/ossl_md.cpp
index e09a68a8e..063271151 100644
--- a/src/lib/engine/openssl/ossl_md.cpp
+++ b/src/lib/engine/openssl/ossl_md.cpp
@@ -2,7 +2,7 @@
* OpenSSL Hash Functions
* (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 <botan/internal/openssl_engine.h>
diff --git a/src/lib/engine/simd_engine/simd_engine.cpp b/src/lib/engine/simd_engine/simd_engine.cpp
index 75463a4b1..af5f5d524 100644
--- a/src/lib/engine/simd_engine/simd_engine.cpp
+++ b/src/lib/engine/simd_engine/simd_engine.cpp
@@ -2,7 +2,7 @@
* SIMD Engine
* (C) 1999-2009 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/simd_engine.h>
diff --git a/src/lib/engine/simd_engine/simd_engine.h b/src/lib/engine/simd_engine/simd_engine.h
index 66c8886f1..3429e0fbd 100644
--- a/src/lib/engine/simd_engine/simd_engine.h
+++ b/src/lib/engine/simd_engine/simd_engine.h
@@ -2,7 +2,7 @@
* SIMD Assembly Engine
* (C) 1999-2009 Jack Lloyd
*
-* Distributed under the terms of the Botan license
+* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_SIMD_ENGINE_H__