From 4d2f5a3f3038044d7e89d91aeddec558784988f2 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 30 Mar 2022 03:12:33 -0700 Subject: build(cargo-make): change key file names --- Makefile.toml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index 2269370..80be522 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -25,8 +25,6 @@ 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 = [ @@ -36,9 +34,9 @@ args = [ "-new", "-nodes", "-keyout", - "windmark_private.pem", + "locus_private.pem", "-out", - "windmark_public.pem", + "locus_public.pem", "-subj", "/CN=fuwn.me" ] @@ -51,11 +49,11 @@ args = [ "-days", "365", "-in", - "windmark_public.pem", + "locus_public.pem", "-signkey", - "windmark_private.pem", + "locus_private.pem", "-out", - "windmark_pair.pem" + "locus_pair.pem" ] [tasks.run] -- cgit v1.2.3