diff options
author | deraadt <> | 2016-11-29 18:16:09 +0000 |
---|---|---|
committer | deraadt <> | 2016-11-29 18:16:09 +0000 |
commit | a7b5951b864e40c785589bc521ac5029cc8b72fa (patch) | |
tree | 5829c82f8142a6fa1bf9040a6070d85ec5d71fc3 /src/lib/libcrypto/man/OPENSSL_cleanse.3 | |
parent | 89bdb96f757f9b8cebac7c925883617dee11e7d3 (diff) | |
download | openbsd-a7b5951b864e40c785589bc521ac5029cc8b72fa.tar.gz openbsd-a7b5951b864e40c785589bc521ac5029cc8b72fa.tar.bz2 openbsd-a7b5951b864e40c785589bc521ac5029cc8b72fa.zip |
seperate these descriptions into seperate files to reduce confusion.
discussed with jsing
ok schwarze
Diffstat (limited to 'src/lib/libcrypto/man/OPENSSL_cleanse.3')
-rw-r--r-- | src/lib/libcrypto/man/OPENSSL_cleanse.3 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/OPENSSL_cleanse.3 b/src/lib/libcrypto/man/OPENSSL_cleanse.3 new file mode 100644 index 0000000000..b8fc7acad9 --- /dev/null +++ b/src/lib/libcrypto/man/OPENSSL_cleanse.3 | |||
@@ -0,0 +1,37 @@ | |||
1 | .\" $OpenBSD: OPENSSL_cleanse.3,v 1.1 2016/11/29 18:16:09 deraadt Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org> | ||
4 | .\" | ||
5 | .\" Permission to use, copy, modify, and distribute this software for any | ||
6 | .\" purpose with or without fee is hereby granted, provided that the above | ||
7 | .\" copyright notice and this permission notice appear in all copies. | ||
8 | .\" | ||
9 | .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | .\" | ||
17 | .Dd $Mdocdate: November 29 2016 $ | ||
18 | .Dt OPENSSL_cleanse 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm OPENSSL_cleanse | ||
22 | .Nd OpenSSL memory cleaning operation | ||
23 | .Sh SYNOPSIS | ||
24 | .In openssl/crypto.h | ||
25 | .Fc | ||
26 | .Ft void | ||
27 | .Fo OPENSSL_cleanse | ||
28 | .Fa "void *ptr" | ||
29 | .Fa "size_t len" | ||
30 | .Fc | ||
31 | .Sh DESCRIPTION | ||
32 | Do not use any of the interfaces documented here. | ||
33 | They are provided purely for compatibility with legacy application code. | ||
34 | .Pp | ||
35 | .Fn OPENSSL_cleanse | ||
36 | has the same semantics as and is a wrapper around | ||
37 | .Xr explicit_bzero 3 . | ||