diff options
-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 */ |