X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=crypto%2Ftcrypt.h;h=1f683ba794ee6034ec9e2e59efa375db27288727;hb=9464c7cf61b9433057924c36e6e02f303a00e768;hp=1fac5602f633182f648e54f83fe0e60f50a0f56f;hpb=41689045f6a3cbe0550e1d34e9cc20d2e8c432ba;p=linux-2.6.git diff --git a/crypto/tcrypt.h b/crypto/tcrypt.h index 1fac5602f..1f683ba79 100644 --- a/crypto/tcrypt.h +++ b/crypto/tcrypt.h @@ -65,11 +65,6 @@ struct cipher_speed { unsigned int blen; }; -struct digest_speed { - unsigned int blen; /* buffer length */ - unsigned int plen; /* per-update length */ -}; - /* * MD4 test vectors from RFC1320 */ @@ -2980,35 +2975,4 @@ static struct cipher_speed des_speed_template[] = { { .klen = 0, .blen = 0, } }; -/* - * Digest speed tests - */ -static struct digest_speed generic_digest_speed_template[] = { - { .blen = 16, .plen = 16, }, - { .blen = 64, .plen = 16, }, - { .blen = 64, .plen = 64, }, - { .blen = 256, .plen = 16, }, - { .blen = 256, .plen = 64, }, - { .blen = 256, .plen = 256, }, - { .blen = 1024, .plen = 16, }, - { .blen = 1024, .plen = 256, }, - { .blen = 1024, .plen = 1024, }, - { .blen = 2048, .plen = 16, }, - { .blen = 2048, .plen = 256, }, - { .blen = 2048, .plen = 1024, }, - { .blen = 2048, .plen = 2048, }, - { .blen = 4096, .plen = 16, }, - { .blen = 4096, .plen = 256, }, - { .blen = 4096, .plen = 1024, }, - { .blen = 4096, .plen = 4096, }, - { .blen = 8192, .plen = 16, }, - { .blen = 8192, .plen = 256, }, - { .blen = 8192, .plen = 1024, }, - { .blen = 8192, .plen = 4096, }, - { .blen = 8192, .plen = 8192, }, - - /* End marker */ - { .blen = 0, .plen = 0, } -}; - #endif /* _CRYPTO_TCRYPT_H */