diff options
author | 2002-06-19 03:23:12 +0000 | |
---|---|---|
committer | 2002-06-19 03:23:12 +0000 | |
commit | 9d166071527b45bd90cd1f251cc9e92aae22c88a (patch) | |
tree | 495abea216426ca9e57233aac7fef5f354f04f20 | |
parent | regress for the kqueu for random (diff) | |
download | wireguard-openbsd-9d166071527b45bd90cd1f251cc9e92aae22c88a.tar.xz wireguard-openbsd-9d166071527b45bd90cd1f251cc9e92aae22c88a.zip |
re-enable both crypto operations
-rw-r--r-- | sys/crypto/cryptodev.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/crypto/cryptodev.c b/sys/crypto/cryptodev.c index ed43071ad06..ce6a4cb3c68 100644 --- a/sys/crypto/cryptodev.c +++ b/sys/crypto/cryptodev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.c,v 1.50 2002/06/12 17:54:15 deraadt Exp $ */ +/* $OpenBSD: cryptodev.c,v 1.51 2002/06/19 03:23:12 deraadt Exp $ */ /* * Copyright (c) 2001 Theo de Raadt @@ -122,8 +122,8 @@ int cryptodev_dokey(struct crypt_kop *kop, struct crparam kvp[]); int cryptodev_cb(void *); int cryptodevkey_cb(void *); -int usercrypto = 0; /* userland may do crypto requests */ -int userasymcrypto = 0; /* userland may do asymmetric crypto reqs */ +int usercrypto = 1; /* userland may do crypto requests */ +int userasymcrypto = 1; /* userland may do asymmetric crypto reqs */ int cryptodevallowsoft = 0; /* only use hardware crypto */ /* ARGSUSED */ |