全部搜尋項
bookworm  ] [  trixie  ] [  sid  ]
[ 原始碼: golang-github-mikesmitty-edkey  ]

套件:golang-github-mikesmitty-edkey-dev(0.0~git20170222.3356ea4-2)

golang-github-mikesmitty-edkey-dev 的相關連結

Screenshot

Debian 的資源:

下載原始碼套件 golang-github-mikesmitty-edkey

維護小組:

外部的資源:

相似套件:

generates ED25519 private keys in the OpenSSH private key format (Go library)

Go package edkey allows you to marshal/write ED25519 private keys in the OpenSSH private key format.

Example:

  package main

  import (
      "crypto/rand"
      "encoding/pem"
      "io/ioutil"
      "github.com/mikesmitty/edkey"
      "golang.org/x/crypto/ed25519"
      "golang.org/x/crypto/ssh"
  )

  func main() {
      // Generate a new private/public keypair for OpenSSH
      pubKey, privKey, _ := ed25519.GenerateKey(rand.Reader)
      publicKey, _ := ssh.NewPublicKey(pubKey)

      pemKey := &pem.Block{
          Type:  "OPENSSH PRIVATE KEY",
          Bytes: edkey.MarshalED25519PrivateKey(privKey),
      }
      privateKey := pem.EncodeToMemory(pemKey)
      authorizedKey := ssh.MarshalAuthorizedKey(publicKey)

      _ = ioutil.WriteFile("id_ed25519", privateKey, 0600)
      _ = ioutil.WriteFile("id_ed25519.pub", authorizedKey, 0644)
  }

其他與 golang-github-mikesmitty-edkey-dev 有關的套件

  • 依賴
  • 推薦
  • 建議
  • 增強

下載 golang-github-mikesmitty-edkey-dev

下載可用於所有硬體架構的
硬體架構 套件大小 安裝後大小 檔案
all 4。2 kB18。0 kB [檔案列表]