Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
10answers
933 views

How can I increase memory security in Delphi?

Is it possible to "wipe" strings in Delphi? Let me explain: I am writing an application that will include a DLL to authorise users. It will read an encrypted file into an XML DOM, use the information ...
2
votes
3answers
138 views
2
votes
12answers
1k views

Secure Memory Allocator in C++

I want to create an allocator which provides memory with the following attributes: cannot be paged to disk. is incredibly hard to access through an attached debugger The idea is that this will ...
1
vote
8answers
1k views

Read data directly from file to RAM in C++

Is there a way to directly read a binary file into RAM? What I mean is, is there a way to tell the compiler, here's the file, here's the block of RAM, please put the file contents in the RAM, off you ...