From 83aaf3194f3c341d275d4b8cc218f738845a48b9 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 26 Jul 2016 15:11:02 +0100 Subject: [PATCH] Updated Security (asciidoc) --- Security.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Security.asciidoc b/Security.asciidoc index aa6def3..526e99e 100644 --- a/Security.asciidoc +++ b/Security.asciidoc @@ -14,7 +14,7 @@ Security features in the language: * Nim attempts to generate C code that does not rely on unsecure function/patterns (e.g. unchecked strcpy) * The language encourage using immutable and const values * Type conversions are memory-safe -* Low-level memory access allows mlock etc +* Low-level memory access allows mlock (TODO: add example) and memory wipe (TODO: add example) * http://nim-lang.org/docs/manual.html#types-memory-regions[Memory regions] TODO === Compiling with GCC on Linux