File: hash.go

package info (click to toggle)
golang-github-miekg-dns 1.1.68-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,260 kB
  • sloc: makefile: 3
file content (31 lines) | stat: -rw-r--r-- 875 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package dns

import (
	"bytes"
	"crypto"
	"hash"
)

// identityHash will not hash, it only buffers the data written into it and returns it as-is.
type identityHash struct {
	b *bytes.Buffer
}

// Implement the hash.Hash interface.

func (i identityHash) Write(b []byte) (int, error) { return i.b.Write(b) }
func (i identityHash) Size() int                   { return i.b.Len() }
func (i identityHash) BlockSize() int              { return 1024 }
func (i identityHash) Reset()                      { i.b.Reset() }
func (i identityHash) Sum(b []byte) []byte         { return append(b, i.b.Bytes()...) }

func hashFromAlgorithm(alg uint8) (hash.Hash, crypto.Hash, error) {
	hashnumber, ok := AlgorithmToHash[alg]
	if !ok {
		return nil, 0, ErrAlg
	}
	if hashnumber == 0 {
		return identityHash{b: &bytes.Buffer{}}, hashnumber, nil
	}
	return hashnumber.New(), hashnumber, nil
}