From 80821259dd8029bf46e0426a11ed4fcb0b6f2c25 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Fri, 11 Aug 2023 12:06:08 +0300 Subject: [PATCH] Script for SSH signing keys generation --- ssh/bin/ssh-new-key | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 ssh/bin/ssh-new-key diff --git a/ssh/bin/ssh-new-key b/ssh/bin/ssh-new-key new file mode 100755 index 0000000..a9107fb --- /dev/null +++ b/ssh/bin/ssh-new-key @@ -0,0 +1,3 @@ +#!/bin/sh -e + +exec ssh-keygen -Z chacha20-poly1305@openssh.com -t ed25519 -C $1 -f ~/.ssh/sign/$1 -- 2.44.0