summaryrefslogtreecommitdiff
path: root/lib/explicit_bzero.c
AgeCommit message (Collapse)Author
2024-03-21*: Add missing SPDX-License-Identifier for some .c/.h filesDonatas Abraitis
Adding them as others: GPL-2.0-or-later Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
2022-05-31lib/md5,lib/sha256: Use explicit_bzero to clean up sensitive data.Loganaden Velvindron
explicit_bzero() is available as an API to clean up sensitive data and avoid compiler optimizations that remove calls to memset() or bzero(). Signed-off-by: Loganaden Velvindron <logan@cyberstorm.mu>