1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/*
* Tomcrypt library <= firebird : c++ wrapper.
*
* The contents of this file are subject to the Initial
* Developer's Public License Version 1.0 (the "License");
* you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* https://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/
*
* Software distributed under the License is distributed AS IS,
* WITHOUT WARRANTY OF ANY KIND, either express or implied.
* See the License for the specific language governing rights
* and limitations under the License.
*
* The Original Code was created by Alexander Peshkoff
* for the Firebird Open Source RDBMS project.
*
* Copyright (c) 2020 Alexander Peshkoff <peshkoff@mail.ru>
* and all contributors signed below.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*/
#include <tomcrypt.h>
#include <firebird/Interface.h>
using namespace Firebird;
#include <stdio.h>
void error(ThrowStatusWrapper* status, const char* text);
void check(ThrowStatusWrapper* status, int err, const char* text);
unsigned readHexKey(ThrowStatusWrapper* status, const char* hex, unsigned char* key, unsigned bufSize);
class PseudoRandom
{
public:
#if CRYPT > 0x0100
typedef ltc_prng_descriptor PrngDescriptor;
#else
typedef _prng_descriptor PrngDescriptor;
#endif
void init(ThrowStatusWrapper* status);
void fini();
const PrngDescriptor* getDsc();
int index;
prng_state state;
};
class Hash
{
protected:
void init(ThrowStatusWrapper* status, const ltc_hash_descriptor* desc);
public:
void fini()
{ }
int index;
};
class HashSha1 : public Hash
{
public:
void init(ThrowStatusWrapper* status)
{
Hash::init(status, &sha1_desc);
}
};
class HashSha256 : public Hash
{
public:
void init(ThrowStatusWrapper* status)
{
Hash::init(status, &sha256_desc);
}
};
// controls reference counter of the object where points
enum NoIncrement {NO_INCREMENT};
template <typename T>
class RefPtr
{
public:
RefPtr() : ptr(NULL)
{ }
explicit RefPtr(T* p) : ptr(p)
{
if (ptr)
{
ptr->addRef();
}
}
// This special form of ctor is used to create refcounted ptr from interface,
// returned by a function (which increments counter on return)
RefPtr(NoIncrement x, T* p) : ptr(p)
{ }
RefPtr(const RefPtr& r) : ptr(r.ptr)
{
if (ptr)
{
ptr->addRef();
}
}
~RefPtr()
{
if (ptr)
{
ptr->release();
}
}
T* operator=(T* p)
{
return assign(p);
}
T* operator=(const RefPtr& r)
{
return assign(r.ptr);
}
operator T*()
{
return ptr;
}
T* operator->()
{
return ptr;
}
operator const T*() const
{
return ptr;
}
const T* operator->() const
{
return ptr;
}
bool operator !() const
{
return !ptr;
}
bool operator ==(const RefPtr& r) const
{
return ptr == r.ptr;
}
bool operator !=(const RefPtr& r) const
{
return ptr != r.ptr;
}
void clear() throw() // Used after detach/commit/close/etc., i.e. release() not needed
{
ptr = NULL;
}
void assignNoIncrement(T* const p)
{
assign(NULL);
ptr = p;
}
private:
T* assign(T* const p)
{
if (ptr != p)
{
if (p)
{
p->addRef();
}
T* tmp = ptr;
ptr = p;
if (tmp)
{
tmp->release();
}
}
return ptr;
}
T* ptr;
};
// Often used form of RefPtr
template <class R>
class AutoRelease : public RefPtr<R>
{
public:
AutoRelease(R* r)
: RefPtr<R>(NO_INCREMENT, r)
{ }
};
|