主頁 > 知識庫 > go語言使用scp的方法實(shí)例分析

go語言使用scp的方法實(shí)例分析

熱門標(biāo)簽:最短的地圖標(biāo)注 騰訊外呼系統(tǒng)價格 百度地圖標(biāo)注搜索關(guān)鍵詞 成都呼叫中心外呼系統(tǒng)平臺 ?兓? 電梯外呼訪客系統(tǒng) 浙江人工智能外呼管理系統(tǒng) 谷歌便利店地圖標(biāo)注 電銷機(jī)器人可以補(bǔ)救房產(chǎn)中介嗎

本文實(shí)例講述了go語言使用scp的方法。分享給大家供大家參考。具體如下:

復(fù)制代碼 代碼如下:
package main
import (
    "code.google.com/p/go.crypto/ssh"
    "crypto"
    "crypto/rsa"
    "crypto/x509"
    "encoding/pem"
    "fmt"
    "io"
)
const privateKey = `content of id_rsa`
type keychain struct {
    key *rsa.PrivateKey
}
func (k *keychain) Key(i int) (interface{}, error) {
    if i != 0 {
        return nil, nil
    }
    return k.key.PublicKey, nil
}
func (k *keychain) Sign(i int, rand io.Reader, data []byte) (sig []byte, err error) {
    hashFunc := crypto.SHA1
    h := hashFunc.New()
    h.Write(data)
    digest := h.Sum(nil)
    return rsa.SignPKCS1v15(rand, k.key, hashFunc, digest)
}
func main() {
    block, _ := pem.Decode([]byte(privateKey))
    rsakey, _ := x509.ParsePKCS1PrivateKey(block.Bytes)
    clientKey := keychain{rsakey}
    clientConfig := ssh.ClientConfig{
        User: "wuhao",
        Auth: []ssh.ClientAuth{
            ssh.ClientAuthKeyring(clientKey),
        },
    }
    client, err := ssh.Dial("tcp", "127.0.0.1:22", clientConfig)
    if err != nil {
        panic("Failed to dial: " + err.Error())
    }
    session, err := client.NewSession()
    if err != nil {
        panic("Failed to create session: " + err.Error())
    }
    defer session.Close()
    go func() {
        w, _ := session.StdinPipe()
        defer w.Close()
        content := "123456789\n"
        fmt.Fprintln(w, "C0644", len(content), "testfile")
        fmt.Fprint(w, content)
        fmt.Fprint(w, "\x00") // 傳輸以\x00結(jié)束
    }()
    if err := session.Run("/usr/bin/scp -qrt ./"); err != nil {
        panic("Failed to run: " + err.Error())
    }
}

希望本文所述對大家的Go語言程序設(shè)計有所幫助。

您可能感興趣的文章:
  • go語言中時間戳格式化的方法
  • Go語言計算指定年月天數(shù)的方法
  • Go語言計算兩個經(jīng)度和緯度之間距離的方法
  • go語言獲取系統(tǒng)盤符的方法
  • go語言實(shí)現(xiàn)的memcache協(xié)議服務(wù)的方法
  • go語言使用pipe讀取子進(jìn)程標(biāo)準(zhǔn)輸出的方法
  • go語言通過管道連接兩個命令行進(jìn)程的方法
  • go語言使用RC4加密的方法
  • go語言計算兩個時間的時間差方法

標(biāo)簽:上海 邢臺 宜昌 雅安 盤錦 七臺河 眉山 紹興

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《go語言使用scp的方法實(shí)例分析》,本文關(guān)鍵詞  語言,使用,scp,的,方法,實(shí)例分析,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《go語言使用scp的方法實(shí)例分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于go語言使用scp的方法實(shí)例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章