aboutsummaryrefslogtreecommitdiffstats
path: root/src/pbkdf
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-11-04 01:57:10 +0000
committerlloyd <[email protected]>2010-11-04 01:57:10 +0000
commit51e9d52e4fcfcf486ee53af1a42c98e841bcfde0 (patch)
tree1fddcd1460aee741ffa19ec4298c265cee3200e4 /src/pbkdf
parent860c43c55492b82bf80611d12d9bafce73ad480b (diff)
Mass disable copy constructors and assignment on all algos until proven safe/useful
Diffstat (limited to 'src/pbkdf')
-rw-r--r--src/pbkdf/pbkdf.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pbkdf/pbkdf.h b/src/pbkdf/pbkdf.h
index e8e841562..e951b5673 100644
--- a/src/pbkdf/pbkdf.h
+++ b/src/pbkdf/pbkdf.h
@@ -41,12 +41,6 @@ class BOTAN_DLL PBKDF : public Algorithm
const std::string& passphrase,
const byte salt[], size_t salt_len,
size_t iterations) const = 0;
-
- PBKDF() {}
- virtual ~PBKDF() {}
- private:
- PBKDF(const PBKDF&) {}
- PBKDF& operator=(const PBKDF&) { return (*this); }
};
/**