aboutsummaryrefslogtreecommitdiff
path: root/create_private_key.go
diff options
context:
space:
mode:
Diffstat (limited to 'create_private_key.go')
-rw-r--r--create_private_key.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/create_private_key.go b/create_private_key.go
index c13889f..3e0c976 100644
--- a/create_private_key.go
+++ b/create_private_key.go
@@ -47,7 +47,7 @@ func CreatePrivateKey(args []string) error {
if *flagOutput == "stdout" {
out = os.Stdout
} else {
- out, err = os.OpenFile(*flagOutput, os.O_WRONLY|os.O_CREATE|os.O_EXCL|os.O_SYNC, 0700)
+ out, err = os.OpenFile(*flagOutput, os.O_WRONLY|os.O_CREATE|os.O_EXCL|os.O_SYNC, 0600)
if err != nil {
return err
}