summaryrefslogtreecommitdiff
path: root/host/lib/host_key.c
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/host_key.c')
-rw-r--r--host/lib/host_key.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/host/lib/host_key.c b/host/lib/host_key.c
index 02744477..c0a0fdd6 100644
--- a/host/lib/host_key.c
+++ b/host/lib/host_key.c
@@ -39,21 +39,3 @@ int packed_key_looks_ok(const struct vb2_packed_key *key, uint32_t size)
/* Success */
return 1;
}
-
-/* TODO: the host code just uses this to check the embedded key length in
- * uint32_t's. It should get folded into packed_key_looks_ok. */
-
-RSAPublicKey *vb2_packed_key_to_rsa(const struct vb2_packed_key *key)
-{
- RSAPublicKey *rsa;
-
- if (!packed_key_looks_ok(key, key->key_size))
- return NULL;
-
- rsa = RSAPublicKeyFromBuf(vb2_packed_key_data(key), key->key_size);
- if (!rsa)
- return NULL;
-
- rsa->algorithm = (unsigned int)key->algorithm;
- return rsa;
-}