aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-09-27 21:07:12 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:55:46 -0400
commite4c5c6c9b0d04a7dac19027260f7421305a34856 (patch)
tree0970fa0c930781f508dffdb8c9c74f62916ef6df /crypto
parent720a650f8ab3166d32fc5da64961e8d2158b9452 (diff)
[CRYPTO] authenc: Kill spaces in algorithm names
We do not allow spaces in algorithm names or parameters. Thanks to Joy Latten for pointing this out. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/authenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c
index 86b3ac88eab7..0b29a6ae673d 100644
--- a/crypto/authenc.c
+++ b/crypto/authenc.c
@@ -312,12 +312,12 @@ static struct crypto_instance *crypto_authenc_alloc(struct rtattr **tb)
312 312
313 err = -ENAMETOOLONG; 313 err = -ENAMETOOLONG;
314 if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME, 314 if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME,
315 "authenc(%s, %u, %s, %u)", auth->cra_name, authsize, 315 "authenc(%s,%u,%s,%u)", auth->cra_name, authsize,
316 enc->cra_name, enckeylen) >= CRYPTO_MAX_ALG_NAME) 316 enc->cra_name, enckeylen) >= CRYPTO_MAX_ALG_NAME)
317 goto err_free_inst; 317 goto err_free_inst;
318 318
319 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME, 319 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
320 "authenc(%s, %u, %s, %u)", auth->cra_driver_name, 320 "authenc(%s,%u,%s,%u)", auth->cra_driver_name,
321 authsize, enc->cra_driver_name, enckeylen) >= 321 authsize, enc->cra_driver_name, enckeylen) >=
322 CRYPTO_MAX_ALG_NAME) 322 CRYPTO_MAX_ALG_NAME)
323 goto err_free_inst; 323 goto err_free_inst;