Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for all available hash functions to compute message digests #129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
openssl.test
.idea
18 changes: 0 additions & 18 deletions cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,6 @@ import (
"unsafe"
)

type EVP_MD int

const (
EVP_NULL EVP_MD = iota
EVP_MD5 EVP_MD = iota
EVP_MD4 EVP_MD = iota
EVP_SHA EVP_MD = iota
EVP_SHA1 EVP_MD = iota
EVP_DSS EVP_MD = iota
EVP_DSS1 EVP_MD = iota
EVP_MDC2 EVP_MD = iota
EVP_RIPEMD160 EVP_MD = iota
EVP_SHA224 EVP_MD = iota
EVP_SHA256 EVP_MD = iota
EVP_SHA384 EVP_MD = iota
EVP_SHA512 EVP_MD = iota
)

// X509_Version represents a version on an x509 certificate.
type X509_Version int

Expand Down
3 changes: 1 addition & 2 deletions ctx.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,7 @@ func (s *CertificateStore) AddCertificate(cert *Certificate) error {
}

type CertificateStoreCtx struct {
ctx *C.X509_STORE_CTX
ssl_ctx *Ctx
ctx *C.X509_STORE_CTX
}

func (self *CertificateStoreCtx) VerifyResult() VerifyResult {
Expand Down
68 changes: 68 additions & 0 deletions digest_computer.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
package openssl

// #include "shim.h"
import "C"
import (
"fmt"
"runtime"
"unsafe"
)

// DigestComputer is a generic structure to compute message digest
// with any hash function supported by OpenSSL
type DigestComputer struct {
ctx *C.EVP_MD_CTX
engine *Engine
evpMD EVP_MD
}

func NewDigestComputer(digestType EVP_MD) (*DigestComputer, error) {
return NewDigestComputerWithEngine(nil, digestType)
}

func NewDigestComputerWithEngine(e *Engine, digestType EVP_MD) (*DigestComputer, error) {
hash := &DigestComputer{engine: e, evpMD: digestType}
hash.ctx = C.X_EVP_MD_CTX_new()
if hash.ctx == nil {
return nil, fmt.Errorf("openssl: %s: unable to allocate ctx", digestType.String())
}
runtime.SetFinalizer(hash, func(hash *DigestComputer) { hash.Close() })
if err := hash.Reset(); err != nil {
return nil, err
}
return hash, nil
}

func (s *DigestComputer) Close() {
if s.ctx != nil {
C.X_EVP_MD_CTX_free(s.ctx)
s.ctx = nil
}
}

func (s *DigestComputer) Reset() error {
if 1 != C.X_EVP_DigestInit_ex(s.ctx, s.evpMD.c(), engineRef(s.engine)) {
return fmt.Errorf("openssl: %v: cannot init evpMD ctx", s.evpMD.String())
}
return nil
}

func (s *DigestComputer) Write(p []byte) (n int, err error) {
if len(p) == 0 {
return 0, nil
}
if 1 != C.X_EVP_DigestUpdate(s.ctx, unsafe.Pointer(&p[0]),
C.size_t(len(p))) {
return 0, fmt.Errorf("openssl: %v: cannot update evpMD", s.evpMD.String())
}
return len(p), nil
}

func (s *DigestComputer) Sum() ([]byte, error) {
result := make([]byte, s.evpMD.Size())
if 1 != C.X_EVP_DigestFinal_ex(s.ctx,
(*C.uchar)(unsafe.Pointer(&result[0])), nil) {
return result, fmt.Errorf("openssl: %v: cannot finalize ctx", s.evpMD.String())
}
return result, s.Reset()
}
7 changes: 7 additions & 0 deletions engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,10 @@ func EngineById(name string) (*Engine, error) {
})
return e, nil
}

func engineRef(e *Engine) *C.ENGINE {
if e == nil {
return nil
}
return e.e
}
Loading