Browse Source

use writeTmpKeyFile in calcFingerprint (#1828)

this makes calcFingerprint use SSH.KeyTestpath instead of os temp dir.
tags/v1.21.12.1
Timo Myyrä Lunny Xiao 8 years ago
parent
commit
2525195749
1 changed files with 2 additions and 10 deletions
  1. +2
    -10
      models/ssh_key.go

+ 2
- 10
models/ssh_key.go View File

@@ -13,7 +13,6 @@ import (
"io/ioutil"
"math/big"
"os"
"path"
"path/filepath"
"strings"
"sync"
@@ -373,15 +372,8 @@ func checkKeyFingerprint(e Engine, fingerprint string) error {

func calcFingerprint(publicKeyContent string) (string, error) {
// Calculate fingerprint.
tmpPath := strings.Replace(path.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()),
"id_rsa.pub"), "\\", "/", -1)
dir := path.Dir(tmpPath)

if err := os.MkdirAll(dir, os.ModePerm); err != nil {
return "", fmt.Errorf("Failed to create dir %s: %v", dir, err)
}

if err := ioutil.WriteFile(tmpPath, []byte(publicKeyContent), 0644); err != nil {
tmpPath, err := writeTmpKeyFile(publicKeyContent)
if err != nil {
return "", err
}
stdout, stderr, err := process.GetManager().Exec("AddPublicKey", "ssh-keygen", "-lf", tmpPath)


Loading…
Cancel
Save