Use memset_s when available
There is no sure way to wipe memory in C because of optimization, but C11 specifies the optional function for this purpose, @memset_s@. It's a good idea to start using it now for when the various libc provide it.
(from redmine: created on 2015-07-16)