简体   繁体   English

从PEM文件加载(生成的OpenSSL)DSA私钥

[英]Load (openssl generated) DSA private key from PEM file

I'm trying to load a dsa private key in my program, Here is how I approached it: 我正在尝试在程序中加载dsa私钥,这是我的处理方式:

  1. I create a dsa key pair using openssl: 我使用openssl创建一个dsa密钥对:

     openssl dsaparam -genkey 2048 -out dsakey.pem 
  2. I use the following function to parse the pem file 我使用以下功能来解析pem文件

     func getDSAPrivateKeyFromPemFile(pemfilepath string) (recoveredprivateKey *dsa.PrivateKey, err error) { pemfile, err := os.Open(pemfilepath) if err != nil { return nil, err } recoveredbytes, err := ioutil.ReadAll(pemfile) if err != nil { return nil, err } recoveredpemdsaparameteres, rest := pem.Decode(recoveredbytes) if recoveredpemdsaparameteres == nil { return nil, errors.New("No pem recovered") } _, err = asn1.Unmarshal(append(recoveredpemdsaparameteres.Bytes, recoveredpemdsaprivatekey.Bytes...), recoveredprivateKey) if err != nil { return nil, err } fmt.Printf("PEM:%v\\n", recoveredpemdsaparameteres) recoveredpemdsaprivatekey, _ := pem.Decode(rest) fmt.Printf("PEM:%v\\n", recoveredpemdsaprivatekey) pemfile.Close() } 

When I call this function if fails: 当我调用此函数失败时:

panic: reflect: call of reflect.Value.Type on zero Value

goroutine 1 [running]:
reflect.Value.Type(0x0, 0x0, 0x0, 0x0, 0x0)
    /usr/local/go/src/reflect/value.go:1664 +0x7b
encoding/asn1.parseField(0x0, 0x0, 0x0, 0xc8200b0600, 0x58b, 0x600, 0x0, 0x0, 0x0, 0x0, ...)
    /usr/local/go/src/encoding/asn1/asn1.go:558 +0xbd
encoding/asn1.UnmarshalWithParams(0xc8200b0600, 0x58b, 0x600, 0x1383e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
    /usr/local/go/src/encoding/asn1/asn1.go:957 +0x16e
encoding/asn1.Unmarshal(0xc8200b0600, 0x58b, 0x600, 0x1383e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
    /usr/local/go/src/encoding/asn1/asn1.go:950 +0x8f
main.getDSAPrivateKeyFromPemFile(0x1e7fa0, 0x26, 0x0, 0x0, 0x0)

However, I can perfectly see my dsa key in output: 但是,我可以在输出中完美地看到我的dsa键:

PEM:&{DSA PARAMETERS map[] [48 130 2 45 2 130...]}
PEM:&{DSA PRIVATE KEY map[] [48 130 3 86 2 1 0 ...]}

The problem is in fact how to unmarshal pem bytes to dsa.PrivateKey. 问题实际上是如何将pem字节解组到dsa.PrivateKey。 Any ideas? 有任何想法吗?

PS: I was not able to find any example of loading DSA private key pem file over the internet. PS:我找不到通过互联网加载DSA私钥pem文件的任何示例。

After spending couple of hours, I managed to fix my problem I post my finding so it may save someone's time: 花了几个小时后,我设法解决了我发布的调查结果的问题,这样可以节省某人的时间:

First I reviewed my pem file encoding using this great online tool: http://lapo.it/asn1js/ . 首先,我使用以下出色的在线工具查看了我的pem文件编码: http : //lapo.it/asn1js/ Only then I realized go is expecting the pem file to have different structure... Not nice! 直到那时我才意识到go期望pem文件具有不同的结构...不好! Aftwerwards, it was not hard to relate each value within the file to the corresponding dsa.PrivateKey struct. 以后,将文件中的每个值与相应的dsa.PrivateKey结构相关联并不难。 So, I made a new struct and named it MyPrivateKey with the same order as the pem file: 因此,我创建了一个新结构,并将其命名为MyPrivateKey,其顺序与pem文件相同:

type MyPrivateKey struct {
    E1, P, Q, G, Y, X *big.Int
}

Then, instead of trying to unmarshal directly to dsa.PrivateKey, I unmarshaled the asn1 encoded value to my self made struct. 然后,我没有尝试直接将其解组到dsa.PrivateKey,而是将asn1编码值解组到了自己的结构中。 And magically it worked. 神奇地,它起作用了。 Here is the modified func: 这是修改后的func:

func getDSAPrivateKeyFromPemFile(pemFilePath string) (privateKey *dsa.PrivateKey, err error) {
    pemfile, err := os.Open(pemFilePath)

    if err != nil {
        return nil, err
    }
    recoveredBytes, err := ioutil.ReadAll(pemfile)
    if err != nil {
        return nil, err
    }
    pemfile.Close()

    pemDSAParameters, rest := pem.Decode(recoveredBytes)
    if pemDSAParameters == nil {
        return nil, errors.New("No pem recovered")
    }
    pemDSAPrivateKey, _ := pem.Decode(rest)
    keyParameters := dsa.Parameters{G: big.NewInt(0), P: big.NewInt(0), Q: big.NewInt(0)}
    _, err = asn1.Unmarshal(pemDSAParameters.Bytes, &keyParameters)
    if err != nil {
        return nil, err
    }
    //fmt.Printf("\n\n\n\n\n\nP:%x\n\nG:%x\n\nQ:%x\n\n\n\n\n\n", keyParameters.P, keyParameters.G, keyParameters.Q)
    myPrivateKey := MyPrivateKey{}
    _, err = asn1.Unmarshal(pemDSAPrivateKey.Bytes, &myPrivateKey)
    if err != nil {
        return nil, err
    }
    //fmt.Printf("\nprivate\nE1:%x\n\nP:%x\n\nQ:%x\n\nG:%x\n\nY:%x\nX:%x\n\n\n\n", myPrivateKey.E1, myPrivateKey.P, myPrivateKey.Q, myPrivateKey.G, myPrivateKey.Y, myPrivateKey.X)
    privateKey = &dsa.PrivateKey{}
    privateKey.Parameters = keyParameters
    privateKey.X = myPrivateKey.X

    return privateKey, nil
}

Maybe there was a much easier way to this all and I simply overlooked! 也许有比这更简单的方法,而我只是忽略了! If you know a better way please be my guest! 如果您知道更好的方法,请成为我的客人! Otherwise, I believe go should handle this kind of issues in the standard libraries. 否则,我认为go应该在标准库中处理此类问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM