1 Star 0 Fork 0

dcharles/fabric-ca

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gencsr.go 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
Saad Karim 提交于 2018-04-05 15:53 . [FAB-9392] Refactor client CLI code
/*
Copyright IBM Corp. 2017 All Rights Reserved.
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 command
import (
"path/filepath"
"github.com/cloudflare/cfssl/log"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
func (c *ClientCmd) newGenCsrCommand() *cobra.Command {
// initCmd represents the init command
gencsrCmd := &cobra.Command{
Use: "gencsr",
Short: "Generate a CSR",
Long: "Generate a Certificate Signing Request for an identity",
PreRunE: func(cmd *cobra.Command, args []string) error {
if len(args) > 0 {
return errors.Errorf(extraArgsError, args, cmd.UsageString())
}
err := c.ConfigInit()
if err != nil {
return err
}
log.Debugf("Client configuration settings: %+v", c.clientCfg)
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
err := c.runGenCSR(cmd)
if err != nil {
return err
}
return nil
},
}
gencsrCmd.Flags().StringVar(&c.csrCommonName, "csr.cn", "", "The common name for the certificate signing request")
return gencsrCmd
}
// The gencsr main logic
func (c *ClientCmd) runGenCSR(cmd *cobra.Command) error {
log.Debug("Entered runGenCSR")
if c.csrCommonName != "" {
c.clientCfg.CSR.CN = c.csrCommonName
}
err := c.clientCfg.GenCSR(filepath.Dir(c.cfgFileName))
if err != nil {
return err
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dcharles/fabric-ca-official.git
git@gitee.com:dcharles/fabric-ca-official.git
dcharles
fabric-ca-official
fabric-ca
v1.4.0-rc1

搜索帮助