You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
461 B
27 lines
461 B
package authentication
|
|
|
|
import (
|
|
"regexp"
|
|
"fmt"
|
|
)
|
|
|
|
type httpAuthSignature interface {
|
|
SignatureType() string
|
|
String() string
|
|
}
|
|
|
|
func keyFormatToKeyType(keyFormat string) (string, error) {
|
|
if keyFormat == "ssh-rsa" {
|
|
return "rsa", nil
|
|
}
|
|
|
|
if keyFormat == "ssh-ed25519" {
|
|
return "ed25519", nil
|
|
}
|
|
|
|
if regexp.MustCompile("^ecdsa-sha2-*").Match([]byte(keyFormat)) {
|
|
return "ecdsa", nil
|
|
}
|
|
|
|
return "", fmt.Errorf("Unknown key format: %s", keyFormat)
|
|
}
|
|
|