aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Bottomley <JBottomley@Parallels.com>2013-03-07 13:01:05 +0000
committerJames Bottomley <JBottomley@Parallels.com>2013-03-07 13:01:05 +0000
commit0980748056e5af08f551f779e0755a783325953f (patch)
tree97bfd4edc16609b184ce697d9f6a9bef5a8695ca
parentb0a05d501c9d56aa2cf0e3d4c96e2d393cf0a63e (diff)
downloadefitools-0980748056e5af08f551f779e0755a783325953f.tar.gz
cert-to-efi-sig-list: remove unimplemented RSA2048 certificate support
-rw-r--r--cert-to-efi-sig-list.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/cert-to-efi-sig-list.c b/cert-to-efi-sig-list.c
index d2ecbfc..365c6fd 100644
--- a/cert-to-efi-sig-list.c
+++ b/cert-to-efi-sig-list.c
@@ -23,18 +23,16 @@
static void
usage(const char *progname)
{
- printf("Usage: %s [-g <guid>] [-r] <crt file> <efi sig list file>\n", progname);
+ printf("Usage: %s [-g <guid>] <crt file> <efi sig list file>\n", progname);
}
static void
help(const char * progname)
{
usage(progname);
- printf("Take an input certificate (in PEM format) and convert it to an EFI\n"
+ printf("Take an input X509 certificate (in PEM format) and convert it to an EFI\n"
"signature list file containing only that single certificate\n\n"
"Options:\n"
- "\t-r The file contains an RSA2048 certificate instead of the\n"
- "\t Default X509 format [UNIMPLEMENTED]\n"
"\t-g <guid> Use <guid> as the owner of the signature. If this is not\n"
"\t supplied, an all zero guid will be used\n"
@@ -47,7 +45,6 @@ main(int argc, char *argv[])
{
char *certfile, *efifile;
const char *progname = argv[0];
- int rsasig;
EFI_GUID owner = { 0 };
while (argc > 1) {
@@ -61,10 +58,6 @@ main(int argc, char *argv[])
str_to_guid(argv[2], &owner);
argv += 2;
argc -= 2;
- } else if (strcmp("-r", argv[1]) == 0) {
- rsasig = 1;
- argv += 1;
- argc += 1;
} else {
break;
}