Skip to content
Snippets Groups Projects
Commit 8190b0db authored by intrigeri's avatar intrigeri
Browse files

rdiff.helper: generate 4096 bits RSA keys.

parent 5c7a26f7
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,8 @@ version 0.9.9 -- UNRELEASED ...@@ -30,6 +30,8 @@ version 0.9.9 -- UNRELEASED
dup: dup:
. Fix separate signing key usecase. Thanks to Ian Beckwith for . Fix separate signing key usecase. Thanks to Ian Beckwith for
the patch. the patch.
rdiff:
. Generate 4096 bits RSA keys.
version 0.9.8.1 -- October 31, 2010 (boo!) version 0.9.8.1 -- October 31, 2010 (boo!)
backupninja changes backupninja changes
......
...@@ -168,7 +168,7 @@ do_rdiff_ssh_con() { ...@@ -168,7 +168,7 @@ do_rdiff_ssh_con() {
if [ ! -f /root/.ssh/id_dsa.pub -a ! -f /root/.ssh/id_rsa.pub ]; then if [ ! -f /root/.ssh/id_dsa.pub -a ! -f /root/.ssh/id_rsa.pub ]; then
echo "Creating local root's ssh key" echo "Creating local root's ssh key"
ssh-keygen -t dsa -f /root/.ssh/id_dsa -N "" ssh-keygen -t rsa -b 4096 -f /root/.ssh/id_rsa -N ""
echo "Done. hit return to continue" echo "Done. hit return to continue"
read read
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment