加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
password.go 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
svaroqui 提交于 2019-04-14 12:57 . Refactoring code
// +build server
// replication-manager - Replication Manager Monitoring and CLI for MariaDB and MySQL
// Copyright 2017 Signal 18 SARL
// Authors: Guillaume Lefranc <guillaume@signal18.io>
// Stephane Varoqui <svaroqui@gmail.com>
// This source code is licensed under the GNU General Public License, version 3.
package main
import (
"fmt"
"log"
"strings"
"github.com/signal18/replication-manager/utils/crypto"
"github.com/spf13/cobra"
)
var (
keyPath string
overwrite bool
)
func init() {
rootCmd.AddCommand(keygenCmd)
rootCmd.AddCommand(passwordCmd)
keygenCmd.Flags().StringVar(&keyPath, "keypath", "/etc/replication-manager/.replication-manager.key", "Encryption key file path")
keygenCmd.Flags().BoolVar(&overwrite, "overwrite", false, "Overwrite the previous key")
}
var keygenCmd = &cobra.Command{
Use: "keygen",
Short: "Generate a new encryption key",
Long: `Generates a new AES128 encryption key that can be used for encrypting cleartext passwords on
the CLI or in the replication-manager config file`,
Run: func(cmd *cobra.Command, args []string) {
p := crypto.Password{}
var err error
p.Key, err = crypto.Keygen()
if err != nil {
log.Fatalln(err)
}
err = crypto.WriteKey(p.Key, keyPath, overwrite)
if err != nil {
log.Fatalln(err)
}
},
}
var passwordCmd = &cobra.Command{
Use: "password",
Short: "Encrypt a clear text password",
Long: "Encrypt a clear text password using the AES encryption key generated with the keygen command",
Run: func(cmd *cobra.Command, args []string) {
p := crypto.Password{}
var err error
p.Key, err = crypto.ReadKey(keyPath)
if err != nil {
log.Fatalln(err)
}
p.PlainText = strings.Join(args, " ")
p.Encrypt()
fmt.Println("Encrypted password hash:", p.CipherText)
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化