2020-12-21 15:41:07 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package utils
|
|
|
|
|
2022-09-14 19:00:08 +00:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
|
|
)
|
|
|
|
|
2020-12-21 15:41:07 +00:00
|
|
|
// Contains checks containment
|
|
|
|
func Contains(haystack []string, needle string) bool {
|
2021-03-08 11:48:03 +00:00
|
|
|
return IndexOf(haystack, needle) != -1
|
|
|
|
}
|
|
|
|
|
|
|
|
// IndexOf returns the index of first occurrence of needle in haystack
|
|
|
|
func IndexOf(haystack []string, needle string) int {
|
|
|
|
for i, s := range haystack {
|
2020-12-21 15:41:07 +00:00
|
|
|
if s == needle {
|
2021-03-08 11:48:03 +00:00
|
|
|
return i
|
2020-12-21 15:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-08 11:48:03 +00:00
|
|
|
return -1
|
2020-12-21 15:41:07 +00:00
|
|
|
}
|
2022-09-14 19:00:08 +00:00
|
|
|
|
|
|
|
// IsKeyEncrypted checks if the key is encrypted
|
|
|
|
func IsKeyEncrypted(sshKey string) (bool, error) {
|
|
|
|
priv, err := os.ReadFile(sshKey)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = ssh.ParsePrivateKey(priv)
|
|
|
|
if err != nil {
|
|
|
|
if _, ok := err.(*ssh.PassphraseMissingError); ok {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, err
|
|
|
|
}
|