diff options
author | Dmitry Kasatkin <d.kasatkin@samsung.com> | 2014-10-06 17:31:58 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2014-10-06 17:33:27 +0100 |
commit | 594081ee7145cc30a3977cb4e218f81213b63dc5 (patch) | |
tree | 1c731f9403d18e47fdacb2b74e92bf06211a819a /security | |
parent | d4016589855156b6afe5e9bc8ef85ce43f27e704 (diff) | |
download | op-kernel-dev-594081ee7145cc30a3977cb4e218f81213b63dc5.zip op-kernel-dev-594081ee7145cc30a3977cb4e218f81213b63dc5.tar.gz |
integrity: do zero padding of the key id
Latest KEYS code return error if hexadecimal string length id odd.
Fix it.
Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/integrity/digsig_asymmetric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/digsig_asymmetric.c b/security/integrity/digsig_asymmetric.c index 37e0d98..4fec181 100644 --- a/security/integrity/digsig_asymmetric.c +++ b/security/integrity/digsig_asymmetric.c @@ -28,7 +28,7 @@ static struct key *request_asymmetric_key(struct key *keyring, uint32_t keyid) struct key *key; char name[12]; - sprintf(name, "id:%x", keyid); + sprintf(name, "id:%08x", keyid); pr_debug("key search: \"%s\"\n", name); |