aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc/secmem.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-22 22:49:22 +0000
committerlloyd <[email protected]>2010-03-22 22:49:22 +0000
commit38c40a8c9509058dff7d6528d36cd9e4286258da (patch)
treecda1e117a27a6e64a9a4d4872bbf61a2c5bd754f /src/alloc/secmem.h
parent9056872fd42d52e13b22a4368ee73c8223813efb (diff)
Remove reference to no-longer existing function in docs
Diffstat (limited to 'src/alloc/secmem.h')
-rw-r--r--src/alloc/secmem.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/alloc/secmem.h b/src/alloc/secmem.h
index 96d2d32bf..4f2a06683 100644
--- a/src/alloc/secmem.h
+++ b/src/alloc/secmem.h
@@ -335,9 +335,7 @@ class MemoryVector : public MemoryRegion<T>
* This class represents variable length buffers using the operating
* systems capability to lock memory, i.e. keeping it from being
* swapped out to disk. In this way, a security hole allowing attackers
-* to find swapped out secret keys is closed. Please refer to
-* Botan::InitializerOptions::secure_memory() for restrictions and
-* further details.
+* to find swapped out secret keys is closed.
*/
template<typename T>
class SecureVector : public MemoryRegion<T>
@@ -388,9 +386,7 @@ class SecureVector : public MemoryRegion<T>
* This class represents fixed length buffers using the operating
* systems capability to lock memory, i.e. keeping it from being
* swapped out to disk. In this way, a security hole allowing attackers
-* to find swapped out secret keys is closed. Please refer to
-* Botan::InitializerOptions::secure_memory() for restrictions and
-* further details.
+* to find swapped out secret keys is closed.
*/
template<typename T, u32bit L>
class SecureBuffer : public MemoryRegion<T>