diff options
| author | Fuwn <[email protected]> | 2022-03-30 03:54:31 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-30 03:54:31 -0700 |
| commit | 8ff911b6db0ca520fc5c2601f5327bff301683ea (patch) | |
| tree | 95769d870419573f72dd4acc6540334b74ef6aa3 /Makefile.toml | |
| parent | format(main): rustfmt (diff) | |
| download | locus-8ff911b6db0ca520fc5c2601f5327bff301683ea.tar.xz locus-8ff911b6db0ca520fc5c2601f5327bff301683ea.zip | |
fix: reverts
Diffstat (limited to 'Makefile.toml')
| -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] |