summaryrefslogtreecommitdiff
path: root/src/lib/libtls/tls_util.c
diff options
context:
space:
mode:
authorjsing <>2017-05-06 20:57:45 +0000
committerjsing <>2017-05-06 20:57:45 +0000
commit7046952f9f5fae47726c165667e46169d74cdfae (patch)
treeebe437a0263ffd3bc7f16f0f1244fea73c05603c /src/lib/libtls/tls_util.c
parent7f30b538d9c825a59a9a9028931e2f2094cf5a2a (diff)
downloadopenbsd-7046952f9f5fae47726c165667e46169d74cdfae.tar.gz
openbsd-7046952f9f5fae47726c165667e46169d74cdfae.tar.bz2
openbsd-7046952f9f5fae47726c165667e46169d74cdfae.zip
Provide a tls_unload_file() function, that frees the memory returned from
a tls_load_file() call, ensuring that it the contents become inaccessible. This is specifically needed on platforms where the library allocators may be different from the application allocator. ok beck@
Diffstat (limited to 'src/lib/libtls/tls_util.c')
-rw-r--r--src/lib/libtls/tls_util.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libtls/tls_util.c b/src/lib/libtls/tls_util.c
index dbb2d170d5..c643b4a9f6 100644
--- a/src/lib/libtls/tls_util.c
+++ b/src/lib/libtls/tls_util.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls_util.c,v 1.5 2016/11/04 15:59:16 jsing Exp $ */ 1/* $OpenBSD: tls_util.c,v 1.6 2017/05/06 20:57:45 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> 4 * Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org>
@@ -178,3 +178,9 @@ tls_load_file(const char *name, size_t *len, char *password)
178 178
179 return (NULL); 179 return (NULL);
180} 180}
181
182void
183tls_unload_file(uint8_t *buf, size_t len)
184{
185 freezero(buf, len);
186}