1
0
mirror of https://github.com/Luzifer/go-dhparam.git synced 2024-09-19 16:42:57 +00:00
go-dhparam/dh.go

45 lines
863 B
Go
Raw Normal View History

package dhparam
import (
"bytes"
"encoding/asn1"
"encoding/pem"
"math/big"
"github.com/pkg/errors"
)
// DH contains a prime (P) and a generator (G) number representing the DH parameters
type DH struct {
P *big.Int
G int
}
// Decode reads a DH parameters struct from its PEM data
func Decode(pemData []byte) (*DH, error) {
blk, _ := pem.Decode(pemData)
out := &DH{}
if _, err := asn1.Unmarshal(blk.Bytes, out); err != nil {
return nil, errors.Wrap(err, "Could not unmarshal ASN1")
}
return out, nil
}
// ToPEM encodes the DH parameters using ASN1 and PEM encoding
func (d DH) ToPEM() ([]byte, error) {
data, err := asn1.Marshal(d)
if err != nil {
return nil, errors.Wrap(err, "Unable to marshal ASN1 data")
}
buf := new(bytes.Buffer)
err = pem.Encode(buf, &pem.Block{
Type: pemHeader,
Bytes: data,
})
return buf.Bytes(), err
}