From 3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 30 Mar 2022 03:40:00 -0700 Subject: revert: "build(cargo-make): change key file names" This reverts commit 4d2f5a3f3038044d7e89d91aeddec558784988f2. --- Makefile.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index 80be522..2269370 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -25,6 +25,8 @@ dependencies = ["fmt", "check"] [tasks.checkfc] dependencies = ["fmt", "check", "clippy"] +# openssl req -x509 -newkey rsa:4096 -keyout windmark_private.pem -out windmark_public.pem -days 365 + [tasks.genkey] command = "openssl" args = [ @@ -34,9 +36,9 @@ args = [ "-new", "-nodes", "-keyout", - "locus_private.pem", + "windmark_private.pem", "-out", - "locus_public.pem", + "windmark_public.pem", "-subj", "/CN=fuwn.me" ] @@ -49,11 +51,11 @@ args = [ "-days", "365", "-in", - "locus_public.pem", + "windmark_public.pem", "-signkey", - "locus_private.pem", + "windmark_private.pem", "-out", - "locus_pair.pem" + "windmark_pair.pem" ] [tasks.run] -- cgit v1.2.3