| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package seclib2
- import (
- "crypto"
- "crypto/dsa"
- "crypto/ecdsa"
- "crypto/ed25519"
- "crypto/elliptic"
- "crypto/rand"
- "crypto/rsa"
- "crypto/x509"
- "encoding/asn1"
- "encoding/pem"
- "math/big"
- "golang.org/x/crypto/ssh"
- "yunion.io/x/pkg/errors"
- )
- func GenerateRSASSHKeypair() (string, string, error) {
- privateKey, err := rsa.GenerateKey(rand.Reader, 2048)
- if err != nil {
- return "", "", errors.Wrapf(err, "generate rsa key")
- }
- privateKeyPEM := &pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(privateKey)}
- privateStr := string(pem.EncodeToMemory(privateKeyPEM))
- pub, err := exportSshPublicKey(&privateKey.PublicKey)
- if err != nil {
- return "", "", errors.Wrapf(err, "export ssh public key")
- }
- publicStr := string(pub)
- return privateStr, publicStr, nil
- }
- func GenerateED25519SSHKeypair() (string, string, error) {
- publicKey, privateKey, err := ed25519.GenerateKey(rand.Reader)
- if err != nil {
- return "", "", errors.Wrapf(err, "generate ed25519 key")
- }
- pemBlock, err := ssh.MarshalPrivateKey(crypto.PrivateKey(privateKey), "")
- if err != nil {
- return "", "", errors.Wrapf(err, "marshal pkix private key")
- }
- privateStr := string(pem.EncodeToMemory(pemBlock))
- pub, err := exportSshPublicKey(publicKey)
- if err != nil {
- return "", "", errors.Wrapf(err, "export ssh public key")
- }
- publicStr := string(pub)
- return privateStr, publicStr, nil
- }
- func GenerateECDSASHAP521SSHKeypair() (string, string, error) {
- privateKey, err := ecdsa.GenerateKey(elliptic.P521(), rand.Reader)
- if err != nil {
- return "", "", errors.Wrapf(err, "generate ecdsa key")
- }
- pemBlock, err := ssh.MarshalPrivateKey(crypto.PrivateKey(privateKey), "")
- if err != nil {
- return "", "", errors.Wrapf(err, "marshal pkix private key")
- }
- privateStr := string(pem.EncodeToMemory(pemBlock))
- pub, err := exportSshPublicKey(&privateKey.PublicKey)
- if err != nil {
- return "", "", errors.Wrapf(err, "export ssh public key")
- }
- publicStr := string(pub)
- return privateStr, publicStr, nil
- }
- func GenerateDSASSHKeypair() (string, string, error) {
- var privateKey dsa.PrivateKey
- params := &privateKey.Parameters
- err := dsa.GenerateParameters(params, rand.Reader, dsa.L1024N160)
- if err != nil {
- return "", "", errors.Wrapf(err, "generate dsa key")
- }
- err = dsa.GenerateKey(&privateKey, rand.Reader)
- if err != nil {
- return "", "", errors.Wrapf(err, "generate dsa key")
- }
- type DsaASN1 struct {
- Version int
- P *big.Int
- Q *big.Int
- G *big.Int
- Pub *big.Int
- Priv *big.Int
- }
- k := DsaASN1{}
- k.P = privateKey.P
- k.Q = privateKey.Q
- k.G = privateKey.G
- k.Pub = privateKey.Y
- k.Priv = privateKey.X
- privBytes, err := asn1.Marshal(k)
- if err != nil {
- return "", "", errors.Wrapf(err, "asn1 marshal")
- }
- privateKeyPEM := &pem.Block{Type: "DSA PRIVATE KEY", Bytes: privBytes}
- privateStr := string(pem.EncodeToMemory(privateKeyPEM))
- pub, err := exportSshPublicKey(&privateKey.PublicKey)
- if err != nil {
- return "", "", errors.Wrapf(err, "export ssh public key")
- }
- publicStr := string(pub)
- return privateStr, publicStr, nil
- }
- func GetPublicKeyScheme(pubkey ssh.PublicKey) string {
- switch pubkey.Type() {
- case ssh.KeyAlgoRSA:
- return "RSA"
- case ssh.KeyAlgoDSA:
- return "DSA"
- case ssh.KeyAlgoECDSA256, ssh.KeyAlgoECDSA384, ssh.KeyAlgoECDSA521:
- return "ECDSA"
- case ssh.KeyAlgoED25519:
- return "ED25519"
- }
- return "UNKNOWN"
- }
|