aboutsummaryrefslogtreecommitdiffstats
path: root/src/sym_algo
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-03-30 18:27:18 +0000
committerlloyd <[email protected]>2009-03-30 18:27:18 +0000
commit96d6eb6f29c55e16a37cf11899547886f735b065 (patch)
tree9f13901e9b44c98d58b2589c9b09c6a7443eb7cd /src/sym_algo
parent3cc3dd72c5f87b76852a55c1f2d1821dba967d8c (diff)
Thomas Moschny passed along a request from the Fedora packagers which came
up during the Fedora submission review, that each source file include some text about the license. One handy Perl script later and each file now has the line Distributed under the terms of the Botan license after the copyright notices. While I was in there modifying every file anyway, I also stripped out the remainder of the block comments (lots of astericks before and after the text); this is stylistic thing I picked up when I was first learning C++ but in retrospect it is not a good style as the structure makes it harder to modify comments (with the result that comments become fewer, shorter and are less likely to be updated, which are not good things).
Diffstat (limited to 'src/sym_algo')
-rw-r--r--src/sym_algo/sym_algo.h2
-rw-r--r--src/sym_algo/symkey.cpp70
-rw-r--r--src/sym_algo/symkey.h28
3 files changed, 53 insertions, 47 deletions
diff --git a/src/sym_algo/sym_algo.h b/src/sym_algo/sym_algo.h
index d71163ead..1c8b816fd 100644
--- a/src/sym_algo/sym_algo.h
+++ b/src/sym_algo/sym_algo.h
@@ -1,6 +1,8 @@
/**
* Symmetric Algorithm Base Class
* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SYMMETRIC_ALGORITHM_H__
diff --git a/src/sym_algo/symkey.cpp b/src/sym_algo/symkey.cpp
index 7cc1bce64..32dfe68d5 100644
--- a/src/sym_algo/symkey.cpp
+++ b/src/sym_algo/symkey.cpp
@@ -1,7 +1,9 @@
-/*************************************************
-* OctetString Source File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
+/*
+* OctetString
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
#include <botan/symkey.h>
#include <botan/xor_buf.h>
@@ -12,9 +14,9 @@
namespace Botan {
-/*************************************************
-* Create an OctetString from RNG output *
-*************************************************/
+/*
+* Create an OctetString from RNG output
+*/
OctetString::OctetString(RandomNumberGenerator& rng,
u32bit length)
{
@@ -22,9 +24,9 @@ OctetString::OctetString(RandomNumberGenerator& rng,
rng.randomize(bits, length);
}
-/*************************************************
-* Create an OctetString from a hex string *
-*************************************************/
+/*
+* Create an OctetString from a hex string
+*/
void OctetString::change(const std::string& hex_string)
{
SecureVector<byte> hex;
@@ -39,18 +41,18 @@ void OctetString::change(const std::string& hex_string)
bits[j] = Hex_Decoder::decode(hex.begin() + 2*j);
}
-/*************************************************
-* Create an OctetString from a byte string *
-*************************************************/
+/*
+* Create an OctetString from a byte string
+*/
void OctetString::change(const byte in[], u32bit n)
{
bits.create(n);
bits.copy(in, n);
}
-/*************************************************
-* Set the parity of each key byte to odd *
-*************************************************/
+/*
+* Set the parity of each key byte to odd
+*/
void OctetString::set_odd_parity()
{
const byte ODD_PARITY[256] = {
@@ -81,9 +83,9 @@ void OctetString::set_odd_parity()
bits[j] = ODD_PARITY[bits[j]];
}
-/*************************************************
-* Hex encode an OctetString *
-*************************************************/
+/*
+* Hex encode an OctetString
+*/
std::string OctetString::as_string() const
{
Pipe pipe(new Hex_Encoder);
@@ -91,9 +93,9 @@ std::string OctetString::as_string() const
return pipe.read_all_as_string();
}
-/*************************************************
-* XOR Operation for OctetStrings *
-*************************************************/
+/*
+* XOR Operation for OctetStrings
+*/
OctetString& OctetString::operator^=(const OctetString& k)
{
if(&k == this) { bits.clear(); return (*this); }
@@ -101,33 +103,33 @@ OctetString& OctetString::operator^=(const OctetString& k)
return (*this);
}
-/*************************************************
-* Equality Operation for OctetStrings *
-*************************************************/
+/*
+* Equality Operation for OctetStrings
+*/
bool operator==(const OctetString& s1, const OctetString& s2)
{
return (s1.bits_of() == s2.bits_of());
}
-/*************************************************
-* Unequality Operation for OctetStrings *
-*************************************************/
+/*
+* Unequality Operation for OctetStrings
+*/
bool operator!=(const OctetString& s1, const OctetString& s2)
{
return !(s1 == s2);
}
-/*************************************************
-* Append Operation for OctetStrings *
-*************************************************/
+/*
+* Append Operation for OctetStrings
+*/
OctetString operator+(const OctetString& k1, const OctetString& k2)
{
return OctetString(SecureVector<byte>(k1.bits_of(), k2.bits_of()));
}
-/*************************************************
-* XOR Operation for OctetStrings *
-*************************************************/
+/*
+* XOR Operation for OctetStrings
+*/
OctetString operator^(const OctetString& k1, const OctetString& k2)
{
SecureVector<byte> ret(std::max(k1.length(), k2.length()));
diff --git a/src/sym_algo/symkey.h b/src/sym_algo/symkey.h
index f3211eb0f..5504297a4 100644
--- a/src/sym_algo/symkey.h
+++ b/src/sym_algo/symkey.h
@@ -1,7 +1,9 @@
-/*************************************************
-* OctetString Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
+/*
+* OctetString
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
#ifndef BOTAN_SYMKEY_H__
#define BOTAN_SYMKEY_H__
@@ -11,9 +13,9 @@
namespace Botan {
-/*************************************************
-* Octet String *
-*************************************************/
+/*
+* Octet String
+*/
class BOTAN_DLL OctetString
{
public:
@@ -41,17 +43,17 @@ class BOTAN_DLL OctetString
SecureVector<byte> bits;
};
-/*************************************************
-* Operations on Octet Strings *
-*************************************************/
+/*
+* Operations on Octet Strings
+*/
BOTAN_DLL bool operator==(const OctetString&, const OctetString&);
BOTAN_DLL bool operator!=(const OctetString&, const OctetString&);
BOTAN_DLL OctetString operator+(const OctetString&, const OctetString&);
BOTAN_DLL OctetString operator^(const OctetString&, const OctetString&);
-/*************************************************
-* Alternate Names *
-*************************************************/
+/*
+* Alternate Names
+*/
typedef OctetString SymmetricKey;
typedef OctetString InitializationVector;