aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBenjamin Gilbert <bgilbert@cs.cmu.edu>2009-10-18 23:57:20 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2009-10-18 23:57:20 -0400
commit085751b96897280cc3087920f8c6e7d1283f6d00 (patch)
treedc1607a6b186de341e2ba6e90597508b2ec85724 /crypto
parent2141b6309b1fce535329c195cb5e5274a4c84ebc (diff)
crypto: api - Remove digest case from procfs show handler
Remove special handling of old-style digest algorithms from the procfs show handler. Signed-off-by: Benjamin Gilbert <bgilbert@cs.cmu.edu> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/proc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/crypto/proc.c b/crypto/proc.c
index 5dc07e442fca..ff4cb4a357f9 100644
--- a/crypto/proc.c
+++ b/crypto/proc.c
@@ -115,13 +115,6 @@ static int c_show(struct seq_file *m, void *p)
115 seq_printf(m, "max keysize : %u\n", 115 seq_printf(m, "max keysize : %u\n",
116 alg->cra_cipher.cia_max_keysize); 116 alg->cra_cipher.cia_max_keysize);
117 break; 117 break;
118
119 case CRYPTO_ALG_TYPE_DIGEST:
120 seq_printf(m, "type : digest\n");
121 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
122 seq_printf(m, "digestsize : %u\n",
123 alg->cra_digest.dia_digestsize);
124 break;
125 case CRYPTO_ALG_TYPE_COMPRESS: 118 case CRYPTO_ALG_TYPE_COMPRESS:
126 seq_printf(m, "type : compression\n"); 119 seq_printf(m, "type : compression\n");
127 break; 120 break;