mirror of
https://github.com/libp2p/go-openssl.git
synced 2025-04-01 14:50:09 +08:00
Merge pull request #22 from cfredmakecode/master
added diffie-hellman parameter functions. allows using DHE-* cipher suites
This commit is contained in:
commit
0e53dd5595
65
dhparam.go
Normal file
65
dhparam.go
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
// +build cgo
|
||||||
|
|
||||||
|
package openssl
|
||||||
|
|
||||||
|
/*
|
||||||
|
#include <openssl/crypto.h>
|
||||||
|
#include <openssl/ssl.h>
|
||||||
|
#include <openssl/err.h>
|
||||||
|
#include <openssl/conf.h>
|
||||||
|
#include <openssl/dh.h>
|
||||||
|
|
||||||
|
static long SSL_CTX_set_tmp_dh_not_a_macro(SSL_CTX* ctx, DH *dh) {
|
||||||
|
return SSL_CTX_set_tmp_dh(ctx, dh);
|
||||||
|
}
|
||||||
|
static long PEM_read_DHparams_not_a_macro(SSL_CTX* ctx, DH *dh) {
|
||||||
|
return SSL_CTX_set_tmp_dh(ctx, dh);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
import "C"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"runtime"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
type DH struct {
|
||||||
|
dh *C.struct_dh_st
|
||||||
|
}
|
||||||
|
|
||||||
|
// LoadDHParametersFromPEM loads the Diffie-Hellman parameters from
|
||||||
|
// a PEM-encoded block.
|
||||||
|
func LoadDHParametersFromPEM(pem_block []byte) (*DH, error) {
|
||||||
|
if len(pem_block) == 0 {
|
||||||
|
return nil, errors.New("empty pem block")
|
||||||
|
}
|
||||||
|
bio := C.BIO_new_mem_buf(unsafe.Pointer(&pem_block[0]),
|
||||||
|
C.int(len(pem_block)))
|
||||||
|
if bio == nil {
|
||||||
|
return nil, errors.New("failed creating bio")
|
||||||
|
}
|
||||||
|
defer C.BIO_free(bio)
|
||||||
|
|
||||||
|
params := C.PEM_read_bio_DHparams(bio, nil, nil, nil)
|
||||||
|
if params == nil {
|
||||||
|
return nil, errors.New("failed reading dh parameters")
|
||||||
|
}
|
||||||
|
dhparams := &DH{dh: params}
|
||||||
|
runtime.SetFinalizer(dhparams, func(dhparams *DH) {
|
||||||
|
C.DH_free(dhparams.dh)
|
||||||
|
})
|
||||||
|
return dhparams, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetDHParameters sets the DH group (DH parameters) used to
|
||||||
|
// negotiate an emphemeral DH key during handshaking.
|
||||||
|
func (c *Ctx) SetDHParameters(dh *DH) error {
|
||||||
|
runtime.LockOSThread()
|
||||||
|
defer runtime.UnlockOSThread()
|
||||||
|
|
||||||
|
if int(C.SSL_CTX_set_tmp_dh_not_a_macro(c.ctx, dh.dh)) != 1 {
|
||||||
|
return errorFromErrorQueue()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user