diff options
| author | Fuwn <[email protected]> | 2022-03-30 03:40:00 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-30 03:40:00 -0700 |
| commit | 3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5 (patch) | |
| tree | ddf1fa526ebe450774a596d36ae5b4ae1c9ac4a3 | |
| parent | feat: custom port (diff) | |
| download | locus-3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5.tar.xz locus-3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5.zip | |
revert: "build(cargo-make): change key file names"
This reverts commit 4d2f5a3f3038044d7e89d91aeddec558784988f2.
| -rw-r--r-- | Makefile.toml | 12 |
1 files 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] |