4 * Null algorithms, aka Much Ado About Nothing.
6 * These are needed for IPsec, and may be useful in general for
9 * The null cipher is compliant with RFC2410.
11 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
20 #include <crypto/null.h>
21 #include <crypto/internal/hash.h>
22 #include <crypto/internal/skcipher.h>
23 #include <linux/init.h>
24 #include <linux/module.h>
26 #include <linux/string.h>
28 static DEFINE_MUTEX(crypto_default_null_skcipher_lock);
29 static struct crypto_sync_skcipher *crypto_default_null_skcipher;
30 static int crypto_default_null_skcipher_refcnt;
32 static int null_compress(struct crypto_tfm *tfm, const u8 *src,
33 unsigned int slen, u8 *dst, unsigned int *dlen)
37 memcpy(dst, src, slen);
42 static int null_init(struct shash_desc *desc)
47 static int null_update(struct shash_desc *desc, const u8 *data,
53 static int null_final(struct shash_desc *desc, u8 *out)
58 static int null_digest(struct shash_desc *desc, const u8 *data,
59 unsigned int len, u8 *out)
64 static int null_hash_setkey(struct crypto_shash *tfm, const u8 *key,
68 static int null_skcipher_setkey(struct crypto_skcipher *tfm, const u8 *key,
72 static int null_setkey(struct crypto_tfm *tfm, const u8 *key,
76 static void null_crypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
78 memcpy(dst, src, NULL_BLOCK_SIZE);
81 static int null_skcipher_crypt(struct skcipher_request *req)
83 struct skcipher_walk walk;
86 err = skcipher_walk_virt(&walk, req, false);
89 if (walk.src.virt.addr != walk.dst.virt.addr)
90 memcpy(walk.dst.virt.addr, walk.src.virt.addr,
92 err = skcipher_walk_done(&walk, 0);
98 static struct shash_alg digest_null = {
99 .digestsize = NULL_DIGEST_SIZE,
100 .setkey = null_hash_setkey,
102 .update = null_update,
103 .finup = null_digest,
104 .digest = null_digest,
107 .cra_name = "digest_null",
108 .cra_driver_name = "digest_null-generic",
109 .cra_blocksize = NULL_BLOCK_SIZE,
110 .cra_module = THIS_MODULE,
114 static struct skcipher_alg skcipher_null = {
115 .base.cra_name = "ecb(cipher_null)",
116 .base.cra_driver_name = "ecb-cipher_null",
117 .base.cra_priority = 100,
118 .base.cra_blocksize = NULL_BLOCK_SIZE,
119 .base.cra_ctxsize = 0,
120 .base.cra_module = THIS_MODULE,
121 .min_keysize = NULL_KEY_SIZE,
122 .max_keysize = NULL_KEY_SIZE,
123 .ivsize = NULL_IV_SIZE,
124 .setkey = null_skcipher_setkey,
125 .encrypt = null_skcipher_crypt,
126 .decrypt = null_skcipher_crypt,
129 static struct crypto_alg null_algs[] = { {
130 .cra_name = "cipher_null",
131 .cra_driver_name = "cipher_null-generic",
132 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
133 .cra_blocksize = NULL_BLOCK_SIZE,
135 .cra_module = THIS_MODULE,
136 .cra_u = { .cipher = {
137 .cia_min_keysize = NULL_KEY_SIZE,
138 .cia_max_keysize = NULL_KEY_SIZE,
139 .cia_setkey = null_setkey,
140 .cia_encrypt = null_crypt,
141 .cia_decrypt = null_crypt } }
143 .cra_name = "compress_null",
144 .cra_driver_name = "compress_null-generic",
145 .cra_flags = CRYPTO_ALG_TYPE_COMPRESS,
146 .cra_blocksize = NULL_BLOCK_SIZE,
148 .cra_module = THIS_MODULE,
149 .cra_u = { .compress = {
150 .coa_compress = null_compress,
151 .coa_decompress = null_compress } }
154 MODULE_ALIAS_CRYPTO("compress_null");
155 MODULE_ALIAS_CRYPTO("digest_null");
156 MODULE_ALIAS_CRYPTO("cipher_null");
158 struct crypto_sync_skcipher *crypto_get_default_null_skcipher(void)
160 struct crypto_sync_skcipher *tfm;
162 mutex_lock(&crypto_default_null_skcipher_lock);
163 tfm = crypto_default_null_skcipher;
166 tfm = crypto_alloc_sync_skcipher("ecb(cipher_null)", 0, 0);
170 crypto_default_null_skcipher = tfm;
173 crypto_default_null_skcipher_refcnt++;
176 mutex_unlock(&crypto_default_null_skcipher_lock);
180 EXPORT_SYMBOL_GPL(crypto_get_default_null_skcipher);
182 void crypto_put_default_null_skcipher(void)
184 mutex_lock(&crypto_default_null_skcipher_lock);
185 if (!--crypto_default_null_skcipher_refcnt) {
186 crypto_free_sync_skcipher(crypto_default_null_skcipher);
187 crypto_default_null_skcipher = NULL;
189 mutex_unlock(&crypto_default_null_skcipher_lock);
191 EXPORT_SYMBOL_GPL(crypto_put_default_null_skcipher);
193 static int __init crypto_null_mod_init(void)
197 ret = crypto_register_algs(null_algs, ARRAY_SIZE(null_algs));
201 ret = crypto_register_shash(&digest_null);
203 goto out_unregister_algs;
205 ret = crypto_register_skcipher(&skcipher_null);
207 goto out_unregister_shash;
211 out_unregister_shash:
212 crypto_unregister_shash(&digest_null);
214 crypto_unregister_algs(null_algs, ARRAY_SIZE(null_algs));
219 static void __exit crypto_null_mod_fini(void)
221 crypto_unregister_algs(null_algs, ARRAY_SIZE(null_algs));
222 crypto_unregister_shash(&digest_null);
223 crypto_unregister_skcipher(&skcipher_null);
226 subsys_initcall(crypto_null_mod_init);
227 module_exit(crypto_null_mod_fini);
229 MODULE_LICENSE("GPL");
230 MODULE_DESCRIPTION("Null Cryptographic Algorithms");