gpt4 book ai didi

node.js - 使用 RSA 验证和签署从 NodeJS 到 Golang 的 JSON Web token ,反之亦然?

转载 作者:行者123 更新时间:2023-12-04 13:26:31 25 4
gpt4 key购买 nike

我已经在 Golang 中生成了一个私钥,它应该用于签署 JSON Web Tokens 颁发给在 NodeJS 中编码的其他服务。
在进行任何 token 交换之前,NodeJS 服务应存储 Golang 客户端的公钥。
我的问题是,我不知道如何将 rsa.PublicKey 导出为与 NodeJS 的 npmjs.com/package/jsonwebtoken 一起使用的格式,并在另一个方向执行相同的操作;这意味着向 Golang 客户端提供 NodeJS 服务的公钥以验证传入的 token 。
编辑:
有问题的代码 https://github.com/zarkones/XENA
查看文件/xena-apep/main.go 下的第 16 行和第 36 行。
编辑2:
这是有问题的代码:

var privateIdentificationKey = generatePrivateKey() // Generating the private key.

identify(id.String(), privateIdentificationKey.publicKey) // Won't work because of the type miss-match.

/* Generates a private key. */
func generatePrivateKey() *rsa.PrivateKey {
secret, err := rsa.GenerateKey(rand.Reader, 4096)
if err != nil {
fmt.Println(err)
}
return secret
}

/* Makes Xena-Atila aware of its existence. */
func identify(id string, identificationKey string) {
insertionPayload := []byte(`{"id":"` + id + `","identificationKey":"` + identificationKey + `","status":"ALIVE"}`)

request, err := http.NewRequest("POST", centralizedHost+"/v1/clients", bytes.NewBuffer(insertionPayload))
request.Header.Set("Content-Type", "application/json")
if err != nil {
fmt.Println("Unable to connect to the centralized host.")
}

client := &http.Client{}
response, err := client.Do(request)
defer response.Body.Close()
}

最佳答案

jwt.sign()jwt.verify()方法来自 node-jsonwebtoken期待 PEM 编码的 key 。因此,NodeJS 端将提供 PEM 编码的公钥或期望 PEM 编码的 key (X.509/SPKI 格式或 PKCS#1 格式)。
key 导出和导入在 crypto/x509 中在 Go 中实现包,PEM 编码在 encoding/pem包,RSA 在 crypto/rsa包裹。
使用发布的 GeneratePrivateKey() 生成私钥和公钥Go中的方法是:

privateKey := GeneratePrivateKey()
publicKey := &privateKey.PublicKey
可以在 Go 中以 X.509/SPKI 格式导出 PEM 编码的公钥,例如和:
func ExportSPKIPublicKeyPEM(pubkey *rsa.PublicKey) (string){
spkiDER, _ := x509.MarshalPKIXPublicKey(pubkey)
spkiPEM := pem.EncodeToMemory(
&pem.Block{
Type: "PUBLIC KEY",
Bytes: spkiDER,
},
)
return string(spkiPEM)
}
或者,可以使用 MarshalPKCS1PublicKey() 导出 PKCS#1 格式的 PEM 编码公钥。 .为此为 Type RSA PUBLIC KEY必须指定。
可以使用 ASN.1 解析器检查导出的 key ,例如在线咨询: https://lapo.it/asn1js/
在 Go 中可以导入 X.509/SPKI 格式的 PEM 编码公钥。和:
func ImportSPKIPublicKeyPEM(spkiPEM string) (*rsa.PublicKey) {
body, _ := pem.Decode([]byte(spkiPEM ))
publicKey, _ := x509.ParsePKIXPublicKey(body.Bytes)
if publicKey, ok := publicKey.(*rsa.PublicKey); ok {
return publicKey
} else {
return nil
}
}
ParsePKCS1PublicKey()可以导入 PKCS#1 格式的 PEM 编码公钥。

关于node.js - 使用 RSA 验证和签署从 NodeJS 到 Golang 的 JSON Web token ,反之亦然?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68145666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com