diff options
| author | Fuwn <[email protected]> | 2022-03-30 03:12:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-30 03:12:33 -0700 |
| commit | 4d2f5a3f3038044d7e89d91aeddec558784988f2 (patch) | |
| tree | 90e368367247f2df05cce85d9fe74dba50af21c4 | |
| parent | feat: 0.0.0 :star: (diff) | |
| download | locus-4d2f5a3f3038044d7e89d91aeddec558784988f2.tar.xz locus-4d2f5a3f3038044d7e89d91aeddec558784988f2.zip | |
build(cargo-make): change key file names
| -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] |