aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asymmetric_keys
diff options
context:
space:
mode:
authorDmitry Kasatkin <d.kasatkin@samsung.com>2014-10-06 12:02:32 -0400
committerDavid Howells <dhowells@redhat.com>2014-10-06 12:33:27 -0400
commit7a224e783ad2b325977253139aede1f5f38b1778 (patch)
tree0405276259b2651c063c54da4b101112d8ddfc41 /crypto/asymmetric_keys
parent8dd609805b87923a700a2fad646390a58013cdb9 (diff)
KEYS: strip 'id:' from ca_keyid
The 'id:' prefix must be stripped for asymmetric_key_hex_to_key_id() to be able to process ca_keyid. Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com> Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'crypto/asymmetric_keys')
-rw-r--r--crypto/asymmetric_keys/x509_public_key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asymmetric_keys/x509_public_key.c b/crypto/asymmetric_keys/x509_public_key.c
index 6ef54495be87..a6c42031628e 100644
--- a/crypto/asymmetric_keys/x509_public_key.c
+++ b/crypto/asymmetric_keys/x509_public_key.c
@@ -35,7 +35,7 @@ static int __init ca_keys_setup(char *str)
35 35
36 if (strncmp(str, "id:", 3) == 0) { 36 if (strncmp(str, "id:", 3) == 0) {
37 struct asymmetric_key_id *p; 37 struct asymmetric_key_id *p;
38 p = asymmetric_key_hex_to_key_id(str); 38 p = asymmetric_key_hex_to_key_id(str + 3);
39 if (p == ERR_PTR(-EINVAL)) 39 if (p == ERR_PTR(-EINVAL))
40 pr_err("Unparsable hex string in ca_keys\n"); 40 pr_err("Unparsable hex string in ca_keys\n");
41 else if (!IS_ERR(p)) 41 else if (!IS_ERR(p))