aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>