diff options
| author | David Howells <[email protected]> | 2013-08-30 16:15:10 +0100 |
|---|---|---|
| committer | David Howells <[email protected]> | 2013-09-25 15:51:07 +0100 |
| commit | 9abc4e66eb839c28516916543768be08c814a3c8 (patch) | |
| tree | 1cf2c1715b7c9ea166338a84d37ff90ea6254591 /kernel | |
| parent | f36f8c75ae2e7d4da34f4c908cebdb4aa42c977e (diff) | |
KEYS: Rename public key parameter name arrays
Rename the arrays of public key parameters (public key algorithm names, hash
algorithm names and ID type names) so that the array name ends in "_name".
Signed-off-by: David Howells <[email protected]>
Reviewed-by: Kees Cook <[email protected]>
Reviewed-by: Josh Boyer <[email protected]>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/module_signing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/module_signing.c b/kernel/module_signing.c index f2970bddc5ea..ee476404167b 100644 --- a/kernel/module_signing.c +++ b/kernel/module_signing.c @@ -54,7 +54,7 @@ static struct public_key_signature *mod_make_digest(enum pkey_hash_algo hash, /* Allocate the hashing algorithm we're going to need and find out how * big the hash operational data will be. */ - tfm = crypto_alloc_shash(pkey_hash_algo[hash], 0, 0); + tfm = crypto_alloc_shash(pkey_hash_algo_name[hash], 0, 0); if (IS_ERR(tfm)) return (PTR_ERR(tfm) == -ENOENT) ? ERR_PTR(-ENOPKG) : ERR_CAST(tfm); @@ -217,7 +217,7 @@ int mod_verify_sig(const void *mod, unsigned long *_modlen) return -ENOPKG; if (ms.hash >= PKEY_HASH__LAST || - !pkey_hash_algo[ms.hash]) + !pkey_hash_algo_name[ms.hash]) return -ENOPKG; key = request_asymmetric_key(sig, ms.signer_len, |