diff options
| -rw-r--r-- | Makefile.toml | 12 |
1 files 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] |