diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-06-18 08:37:12 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-06-18 08:37:12 +0000 |
commit | 74d72d7f1b90bb3e56832335ae8e354457439c57 (patch) | |
tree | d80e225ba843860e67c14478dfbd1f8437ad2d47 /sys/crypto/crypto.c | |
parent | 44a331fe2d808b09a35b5555e033f0c1a3cf5938 (diff) |
Add Rijndael (128-bit blocksize) in the software crypto driver.
Hacking at OpenBSD Crypto 2000 :-)
Diffstat (limited to 'sys/crypto/crypto.c')
-rw-r--r-- | sys/crypto/crypto.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/crypto/crypto.c b/sys/crypto/crypto.c index 443958727bb..a8976d6e82a 100644 --- a/sys/crypto/crypto.c +++ b/sys/crypto/crypto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto.c,v 1.9 2000/06/18 03:08:56 angelos Exp $ */ +/* $OpenBSD: crypto.c,v 1.10 2000/06/18 08:37:10 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -165,7 +165,7 @@ crypto_get_driverid(void) crypto_drivers_num = CRYPTO_DRIVERS_INITIAL; MALLOC(crypto_drivers, struct cryptocap *, crypto_drivers_num * sizeof(struct cryptocap), M_XDATA, - M_DONTWAIT); + M_NOWAIT); if (crypto_drivers == NULL) { crypto_drivers_num = 0; @@ -190,7 +190,7 @@ crypto_get_driverid(void) MALLOC(newdrv, struct cryptocap *, 2 * crypto_drivers_num * sizeof(struct cryptocap), - M_XDATA, M_DONTWAIT); + M_XDATA, M_NOWAIT); if (newdrv == NULL) return -1; @@ -409,7 +409,7 @@ crypto_getreq(int num) if (cryptop_queue == NULL) { MALLOC(crp, struct cryptop *, sizeof(struct cryptop), M_XDATA, - M_DONTWAIT); + M_NOWAIT); if (crp == NULL) { splx(s); @@ -430,7 +430,7 @@ crypto_getreq(int num) if (cryptodesc_queue == NULL) { MALLOC(crd, struct cryptodesc *, sizeof(struct cryptodesc), - M_XDATA, M_DONTWAIT); + M_XDATA, M_NOWAIT); if (crd == NULL) { splx(s); |