1
0
Fork 0
mirror of https://github.com/Luzifer/go-dhparam.git synced 2024-11-08 15:20:03 +00:00
go-dhparam/dh.go

60 lines
1.4 KiB
Go
Raw Permalink Normal View History

// Package dhparam is a pure Golang implementation of the openssl
// dhparam generator no requiring any CGO bindings
package dhparam
import (
"bytes"
"encoding/asn1"
"encoding/pem"
"errors"
"fmt"
"math/big"
)
// ErrNoPem is returned if pemData for the Decode function is nil or empty.
var ErrNoPem = errors.New("empty or nil bytes for PEM data")
// ErrInvalidPem is returned if pemData for the Decode function does not seem to be PEM-encoded data.
var ErrInvalidPem = errors.New("invalid bytes for PEM data; does not seem to be PEM-encoded")
// 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) {
if len(pemData) == 0 {
return nil, ErrNoPem
}
blk, _ := pem.Decode(pemData)
if blk == nil {
return nil, ErrInvalidPem
}
out := &DH{}
if _, err := asn1.Unmarshal(blk.Bytes, out); err != nil {
return nil, fmt.Errorf("could not unmarshal ASN1: %w", err)
}
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, fmt.Errorf("unable to marshal ASN1 data: %w", err)
}
buf := new(bytes.Buffer)
err = pem.Encode(buf, &pem.Block{
Type: pemHeader,
Bytes: data,
})
return buf.Bytes(), err
}