sha1.go 2.24 KB
Newer Older
1
// Copyright (C) 2017. See AUTHORS.
JT Olds's avatar
JT Olds committed
2 3 4 5 6 7 8 9 10 11 12 13 14
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

15 16
package openssl

Andrew Harding's avatar
Andrew Harding committed
17
// #include "shim.h"
18 19 20 21 22 23 24 25 26
import "C"

import (
	"errors"
	"runtime"
	"unsafe"
)

type SHA1Hash struct {
Andrew Harding's avatar
Andrew Harding committed
27
	ctx    *C.EVP_MD_CTX
JT Olds's avatar
JT Olds committed
28
	engine *Engine
29 30
}

JT Olds's avatar
JT Olds committed
31 32 33 34
func NewSHA1Hash() (*SHA1Hash, error) { return NewSHA1HashWithEngine(nil) }

func NewSHA1HashWithEngine(e *Engine) (*SHA1Hash, error) {
	hash := &SHA1Hash{engine: e}
Andrew Harding's avatar
Andrew Harding committed
35 36 37 38
	hash.ctx = C.X_EVP_MD_CTX_new()
	if hash.ctx == nil {
		return nil, errors.New("openssl: sha1: unable to allocate ctx")
	}
JT Olds's avatar
JT Olds committed
39
	runtime.SetFinalizer(hash, func(hash *SHA1Hash) { hash.Close() })
40 41 42 43 44 45 46
	if err := hash.Reset(); err != nil {
		return nil, err
	}
	return hash, nil
}

func (s *SHA1Hash) Close() {
Andrew Harding's avatar
Andrew Harding committed
47 48 49 50
	if s.ctx != nil {
		C.X_EVP_MD_CTX_free(s.ctx)
		s.ctx = nil
	}
51 52
}

JT Olds's avatar
JT Olds committed
53 54 55 56 57 58 59
func engineRef(e *Engine) *C.ENGINE {
	if e == nil {
		return nil
	}
	return e.e
}

60
func (s *SHA1Hash) Reset() error {
Andrew Harding's avatar
Andrew Harding committed
61
	if 1 != C.X_EVP_DigestInit_ex(s.ctx, C.X_EVP_sha1(), engineRef(s.engine)) {
62 63 64 65 66 67 68 69 70
		return errors.New("openssl: sha1: cannot init digest ctx")
	}
	return nil
}

func (s *SHA1Hash) Write(p []byte) (n int, err error) {
	if len(p) == 0 {
		return 0, nil
	}
Andrew Harding's avatar
Andrew Harding committed
71
	if 1 != C.X_EVP_DigestUpdate(s.ctx, unsafe.Pointer(&p[0]),
72 73 74 75 76 77 78
		C.size_t(len(p))) {
		return 0, errors.New("openssl: sha1: cannot update digest")
	}
	return len(p), nil
}

func (s *SHA1Hash) Sum() (result [20]byte, err error) {
Andrew Harding's avatar
Andrew Harding committed
79
	if 1 != C.X_EVP_DigestFinal_ex(s.ctx,
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
		(*C.uchar)(unsafe.Pointer(&result[0])), nil) {
		return result, errors.New("openssl: sha1: cannot finalize ctx")
	}
	return result, s.Reset()
}

func SHA1(data []byte) (result [20]byte, err error) {
	hash, err := NewSHA1Hash()
	if err != nil {
		return result, err
	}
	defer hash.Close()
	if _, err := hash.Write(data); err != nil {
		return result, err
	}
	return hash.Sum()
}