summaryrefslogtreecommitdiffstats
path: root/sys/opencrypto
diff options
context:
space:
mode:
authorsam <sam@FreeBSD.org>2007-03-21 03:43:33 +0000
committersam <sam@FreeBSD.org>2007-03-21 03:43:33 +0000
commitb3b2407aa0a0e34841c12870ec383191f66c1236 (patch)
tree68f9f6d1fac3016112248437d7f51940a9b18803 /sys/opencrypto
parentf96ba7ffdacde02e9c3e989c8f6e3e7539b74b46 (diff)
downloadFreeBSD-src-b3b2407aa0a0e34841c12870ec383191f66c1236.zip
FreeBSD-src-b3b2407aa0a0e34841c12870ec383191f66c1236.tar.gz
add missing file from last commit that overhauls crypto/driver api's
Diffstat (limited to 'sys/opencrypto')
-rw-r--r--sys/opencrypto/cryptodev_if.m55
1 files changed, 55 insertions, 0 deletions
diff --git a/sys/opencrypto/cryptodev_if.m b/sys/opencrypto/cryptodev_if.m
new file mode 100644
index 0000000..c7d48cc
--- /dev/null
+++ b/sys/opencrypto/cryptodev_if.m
@@ -0,0 +1,55 @@
+#-
+# Copyright (c) 2006, Sam Leffler
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+# $FreeBSD$
+#
+
+#include <sys/malloc.h>
+#include <opencrypto/cryptodev.h>
+
+INTERFACE cryptodev;
+
+METHOD int newsession {
+ device_t dev;
+ uint32_t *sid;
+ struct cryptoini *cri;
+};
+
+METHOD int freesession {
+ device_t dev;
+ uint64_t sid;
+};
+
+METHOD int process {
+ device_t dev;
+ struct cryptop *op;
+ int flags;
+};
+
+METHOD int kprocess {
+ device_t dev;
+ struct cryptkop *op;
+ int flags;
+};
OpenPOWER on IntegriCloud