summaryrefslogtreecommitdiff
path: root/share/man/man9/crypto.9
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-06-06 04:32:24 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-06-06 04:32:24 +0000
commit28e7560d28b82c0a7c3e0c52c53482b4eb8ab322 (patch)
treea3a50bad684c7ade29ec07d08c96ce70a7b40a09 /share/man/man9/crypto.9
parent63eb81b817a1ef8e807bba9df5d0088cb67e18ae (diff)
Document change in the cryptop structure.
Diffstat (limited to 'share/man/man9/crypto.9')
-rw-r--r--share/man/man9/crypto.913
1 files changed, 5 insertions, 8 deletions
diff --git a/share/man/man9/crypto.9 b/share/man/man9/crypto.9
index 7f40755076f..bd614a05a11 100644
--- a/share/man/man9/crypto.9
+++ b/share/man/man9/crypto.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: crypto.9,v 1.3 2000/04/28 14:03:45 aaron Exp $
+.\" $OpenBSD: crypto.9,v 1.4 2000/06/06 04:32:23 angelos Exp $
.\"
.\" The author of this man page is Angelos D. Keromytis (angelos@cis.upenn.edu)
.\"
@@ -72,10 +72,7 @@ struct cryptop
int crp_etype;
int crp_flags;
caddr_t crp_buf;
- caddr_t crp_opaque1;
- caddr_t crp_opaque2;
- caddr_t crp_opaque3;
- caddr_t crp_opaque4;
+ caddr_t crp_opaque;
struct cryptodesc *crp_desc;
int (*crp_callback) (struct cryptop *);
};
@@ -248,8 +245,8 @@ chain or a contiguous buffer (of a type identified by
.Fa crp_alloctype ) ,
depending on
.Fa crp_flags .
-.It Fa crp_opaque1 , crp_opaque2 , crp_opaque3 , crp_opaque4
-These are passed through the crypto framework untouched and are
+.It Fa crp_opaque
+This is passed through the crypto framework untouched and is
intended for the invoking application's use.
.It Fa crp_desc
This is a linked list of descriptors.
@@ -349,7 +346,7 @@ and any
structures linked to it.
Note that it is the responsibility of the
callback routine to do the necessary cleanups associated with the
-opaque fields in the
+opaque field in the
.Fa cryptop
structure.
.Pp