這篇文章將為大家詳細講解有關golang中怎么生成密鑰對,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
成都網(wǎng)站制作、成都網(wǎng)站建設,成都做網(wǎng)站公司-創(chuàng)新互聯(lián)已向成百上千家企業(yè)提供了,網(wǎng)站設計,網(wǎng)站制作,網(wǎng)絡營銷等服務!設計與技術結合,多年網(wǎng)站推廣經(jīng)驗,合理的價格為您打造企業(yè)品質網(wǎng)站。
利用golang的官方包生成密鑰對.
生成密鑰對方法:
// generateRsaKey 密鑰
func generateRsaKey(bits int) (err error) {
var (
file *os.File
priKey *rsa.PrivateKey
pubKey *rsa.PublicKey
)
// 獲取私鑰
if priKey, err = rsa.GenerateKey(rand.Reader, bits); err != nil {
return
}
// 將私鑰轉換為ASN.1 DER編碼形式。
derStream := x509.MarshalPKCS1PrivateKey(priKey)
// 私鑰參數(shù)
block := &pem.Block{
Type: "privateKey",
Headers: map[string]string{"test": "testKey"},
Bytes: derStream,
}
// 創(chuàng)建private.key文件
if file, err = os.Create("private.key"); err != nil {
return
}
// 在文件里面寫入數(shù)據(jù)
if err = pem.Encode(file, block); err != nil {
return
}
// 獲取公鑰
pubKey = &priKey.PublicKey
if _derPkix, _err := x509.MarshalPKIXPublicKey(pubKey); _err != nil {
err = _err
return
} else {
block = &pem.Block{
Type: "publicKey",
Headers: map[string]string{"test": "testKey"},
Bytes: _derPkix,
}
}
// 創(chuàng)建公鑰文件
if file, err = os.Create("public.key"); err != nil {
return
}
// 寫入數(shù)據(jù)
if err = pem.Encode(file, block); err != nil {
return
}
return
}
解析私鑰獲取其長度:
// getPrivateKeyLen 獲取私鑰長度
func getPrivateKeyLen(private []byte) (ret int, err error) {
block, _ := pem.Decode(private)
var (
data *rsa.PrivateKey
)
if data, err = x509.ParsePKCS1PrivateKey(block.Bytes); err != nil {
return
}
ret = data.N.BitLen()
return
}
解析公鑰獲取長度:
// getPublicKeyLen 獲取公鑰長度
func getPublicKeyLen(public []byte) (ret int, err error) {
var (
block *pem.Block
data interface{}
)
// 解碼
block, _ = pem.Decode(public)
// 解析出數(shù)據(jù)
if data, err = x509.ParsePKIXPublicKey(block.Bytes); err != nil {
return
}
// 分析數(shù)據(jù)
switch v := data.(type) {
case *rsa.PublicKey:
ret = v.N.BitLen()
default:
err = errors.New("data type is not rsa.PublicKey")
}
return
}
main函數(shù):
導入的包:
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"errors"
"flag"
"fmt"
"io/ioutil"
"os"
)
func main() {
var (
bits int
err error
pubKey, priKey []byte
n int
)
flag.IntVar(&bits, "b", 1024, "密鑰長度,默認為1024位")
flag.Parse()
// 生成密鑰對
if err = generateRsaKey(bits); err != nil {
panic(err)
}
if priKey, err = ioutil.ReadFile("private.pem"); err != nil {
return
}
if pubKey, err = ioutil.ReadFile("public.pem"); err != nil {
return
}
// 獲取長度
if n, err = getPrivateKeyLen(priKey); err == nil {
fmt.Printf("private key len is %d\n", n)
} else {
panic(err)
}
// 獲取長度
if n, err = getPublicKeyLen(pubKey); err == nil {
fmt.Printf("public key len is %d\n", n)
} else {
panic(err)
}
}
關于golang中怎么生成密鑰對就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
分享題目:golang中怎么生成密鑰對
文章出自:http://aaarwkj.com/article8/igsjop.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設計公司、云服務器、Google、響應式網(wǎng)站、手機網(wǎng)站建設、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)