summaryrefslogtreecommitdiff
path: root/sys/crypto
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-12 04:16:03 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-12 04:16:03 +0000
commit3280c6931e2220c48bf7e55e9c2a322767f95a3a (patch)
tree945b76ccc0b048c3c38b6bf65401fb7fef4f5408 /sys/crypto
parent0abe07513d3276b632b07072e0496bab5e4ac639 (diff)
so let us analyse the development process here:
- complete breakage of symmetric userland crypto - fast commit without review by other developers - no regression test run (markus points out regression crash kernel) Hence, we must disable userland crypto for now, until it gets repaired by these people who don't follow process....
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/cryptodev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.c b/sys/crypto/cryptodev.c
index c542535a278..fd0b9a5b0de 100644
--- a/sys/crypto/cryptodev.c
+++ b/sys/crypto/cryptodev.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cryptodev.c,v 1.47 2002/06/11 11:14:29 beck Exp $ */
+/* $OpenBSD: cryptodev.c,v 1.48 2002/06/12 04:16:02 deraadt Exp $ */
/*
* Copyright (c) 2001 Theo de Raadt
@@ -122,7 +122,7 @@ int cryptodev_dokey(struct crypt_kop *kop, struct crparam kvp[]);
int cryptodev_cb(void *);
int cryptodevkey_cb(void *);
-int usercrypto = 1; /* userland may do crypto requests */
+int usercrypto = 0; /* userland may do crypto requests */
int userasymcrypto = 0; /* userland may do asymmetric crypto reqs */
int cryptodevallowsoft = 0; /* only use hardware crypto */