Commit 16f56e1c authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

init: lower default rsa key size to 2048 for now

I think we should lower the default rsa key size to 2048 for now -- until we have a proper focus on securing everything. It's always a pain for new users to get hung on 4096 rsa key gen, when we have not even made sure we're using the keys perfectly correctly yet. (And 2048 is still considered secure)
parent db56c0f1
......@@ -18,7 +18,7 @@ import (
u "github.com/ipfs/go-ipfs/util"
)
const nBitsForKeypairDefault = 4096
const nBitsForKeypairDefault = 2048
var initCmd = &cmds.Command{
Helptext: cmds.HelpText{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment