# HG changeset patch # User Roman Arutyunyan # Date 1543326547 -10800 # Node ID 58df9b14b8ecc9015ed7c8e20044e5e075099144 # Parent 3b1b6a5ce9156381accb4eb589d8af59f278e239 Development guide: documented ngx_explicit_memzero(). diff -r 3b1b6a5ce915 -r 58df9b14b8ec xml/en/docs/dev/development_guide.xml --- a/xml/en/docs/dev/development_guide.xml Tue Nov 27 20:41:31 2018 +0300 +++ b/xml/en/docs/dev/development_guide.xml Tue Nov 27 16:49:07 2018 +0300 @@ -9,7 +9,7 @@
+ rev="5">
@@ -350,6 +350,13 @@ +ngx_explicit_memzero() — Does the same as +ngx_memzero(), but this call is never removed by the +compiler's dead store elimination optimization. +This function can be used to clear sensitive data such as passwords and keys. + + + ngx_cpymem() — Does the same as ngx_memcpy(), but returns the final destination address This one is handy for appending multiple strings in a row.