diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-08-06 09:12:59 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-09-20 21:41:49 -0400 |
commit | f3f632d61ae9af85d436706ee8e33af1a7fb9c28 (patch) | |
tree | 38c9aa8a1210d88d60a7d961c47e15210d16ca78 /include/linux/crypto.h | |
parent | 7fed0bf271b374be4c98a5880faed4b1128e78e9 (diff) |
[CRYPTO] api: Added asynchronous flag
This patch adds the asynchronous flag and changes all existing users to
only look up algorithms that are synchronous.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux/crypto.h')
-rw-r--r-- | include/linux/crypto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index dbdfc7c79367..530dc4bf363c 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
@@ -37,6 +37,7 @@ | |||
37 | #define CRYPTO_ALG_LARVAL 0x00000010 | 37 | #define CRYPTO_ALG_LARVAL 0x00000010 |
38 | #define CRYPTO_ALG_DEAD 0x00000020 | 38 | #define CRYPTO_ALG_DEAD 0x00000020 |
39 | #define CRYPTO_ALG_DYING 0x00000040 | 39 | #define CRYPTO_ALG_DYING 0x00000040 |
40 | #define CRYPTO_ALG_ASYNC 0x00000080 | ||
40 | 41 | ||
41 | /* | 42 | /* |
42 | * Transform masks and values (for crt_flags). | 43 | * Transform masks and values (for crt_flags). |