libsodium/builds/msvc
Frank Denis 473e1718cc Add sodium_{malloc,allocarray,free}() and sodium_mprotect_*()
ptr = sodium_malloc(size) returns a pointer from which exactly "size" bytes
can be accessed.

ptr = sodium_allocarray(count, size) allocates enough storage space for
"count" pointers or scalars of unit size "size".

In both cases, the region is immediately followed by a guard page.
As a result, any attempt to access a memory location after ptr[size - 1] will
immediately trigger a segmentation fault.

The allocated region is mlock()ed and filled with 0xd0 bytes.

A read-only page with the size, a guard page, as well as a canary are
placed before the returned pointer.

The canary is checked by sodium_free(); as a result, altering data right
before ptr is likely to cause sodium_free() to kill the process.

sodium_free() munlock()s the region and fills it with zeros before
actually calling free().

sodium_mprotect_noaccess(), sodium_mprotect_readonly() and
sodium_mprotect_readwrite() can be used to change the protection on the set
of allocated pages.

Reverting the protection to read+write is not required before calling
sodium_free().
2014-08-14 21:41:05 -07:00
..
build Simplify VS project configurations and harden MSBUILD script. 2014-05-12 20:18:22 -07:00
properties MSVC: Define NATIVE_LITTLE_ENDIAN / inline as __inline / UNICODE & _UNICODE 2014-07-29 08:57:17 -07:00
vs2010 Add sodium_{malloc,allocarray,free}() and sodium_mprotect_*() 2014-08-14 21:41:05 -07:00
vs2012 Add sodium_{malloc,allocarray,free}() and sodium_mprotect_*() 2014-08-14 21:41:05 -07:00
vs2013 Add sodium_{malloc,allocarray,free}() and sodium_mprotect_*() 2014-08-14 21:41:05 -07:00
resource.h Update Visual Studio projects and packaging. 2014-05-10 03:47:35 -07:00
resource.rc Update windows dll version resource to 0.6.0 2014-07-04 05:46:18 -06:00
version.h Get ready for 0.6.1 2014-07-12 21:15:46 -07:00