您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)golang中怎么生成密鑰對(duì),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
利用golang的官方包生成密鑰對(duì).
生成密鑰對(duì)方法:
// 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
}
// 將私鑰轉(zhuǎn)換為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ù):
導(dǎo)入的包:
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, "密鑰長度,默認(rèn)為1024位")
flag.Parse()
// 生成密鑰對(duì)
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)
}
}
關(guān)于golang中怎么生成密鑰對(duì)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。