summaryrefslogtreecommitdiffstats
path: root/crypto/crypto_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/crypto_null.c')
-rw-r--r--crypto/crypto_null.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/crypto_null.c b/crypto/crypto_null.c
index 9320d4eaa4a8..6aa9a4c29edf 100644
--- a/crypto/crypto_null.c
+++ b/crypto/crypto_null.c
@@ -105,6 +105,7 @@ static struct shash_alg digest_null = {
105 .final = null_final, 105 .final = null_final,
106 .base = { 106 .base = {
107 .cra_name = "digest_null", 107 .cra_name = "digest_null",
108 .cra_driver_name = "digest_null-generic",
108 .cra_blocksize = NULL_BLOCK_SIZE, 109 .cra_blocksize = NULL_BLOCK_SIZE,
109 .cra_module = THIS_MODULE, 110 .cra_module = THIS_MODULE,
110 } 111 }
@@ -127,6 +128,7 @@ static struct skcipher_alg skcipher_null = {
127 128
128static struct crypto_alg null_algs[] = { { 129static struct crypto_alg null_algs[] = { {
129 .cra_name = "cipher_null", 130 .cra_name = "cipher_null",
131 .cra_driver_name = "cipher_null-generic",
130 .cra_flags = CRYPTO_ALG_TYPE_CIPHER, 132 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
131 .cra_blocksize = NULL_BLOCK_SIZE, 133 .cra_blocksize = NULL_BLOCK_SIZE,
132 .cra_ctxsize = 0, 134 .cra_ctxsize = 0,
@@ -139,6 +141,7 @@ static struct crypto_alg null_algs[] = { {
139 .cia_decrypt = null_crypt } } 141 .cia_decrypt = null_crypt } }
140}, { 142}, {
141 .cra_name = "compress_null", 143 .cra_name = "compress_null",
144 .cra_driver_name = "compress_null-generic",
142 .cra_flags = CRYPTO_ALG_TYPE_COMPRESS, 145 .cra_flags = CRYPTO_ALG_TYPE_COMPRESS,
143 .cra_blocksize = NULL_BLOCK_SIZE, 146 .cra_blocksize = NULL_BLOCK_SIZE,
144 .cra_ctxsize = 0, 147 .cra_ctxsize = 0,