[CRYPTO] users: Use crypto_comp and crypto_has_*
This patch converts all users to use the new crypto_comp type and the crypto_has_* functions. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
这个提交包含在:
@@ -26,13 +26,13 @@ static int __init padlock_init(void)
|
||||
{
|
||||
int success = 0;
|
||||
|
||||
if (crypto_alg_available("aes-padlock", 0))
|
||||
if (crypto_has_cipher("aes-padlock", 0, 0))
|
||||
success++;
|
||||
|
||||
if (crypto_alg_available("sha1-padlock", 0))
|
||||
if (crypto_has_hash("sha1-padlock", 0, 0))
|
||||
success++;
|
||||
|
||||
if (crypto_alg_available("sha256-padlock", 0))
|
||||
if (crypto_has_hash("sha256-padlock", 0, 0))
|
||||
success++;
|
||||
|
||||
if (!success) {
|
||||
|
在新工单中引用
屏蔽一个用户