-
Notifications
You must be signed in to change notification settings - Fork 10
/
crypto.go
78 lines (68 loc) · 2.58 KB
/
crypto.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package funcs
import (
"crypto/md5"
"crypto/sha1"
"crypto/sha256"
"crypto/sha512"
"encoding/base64"
"encoding/hex"
"hash"
"io"
"github.com/spf13/afero"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/function"
)
// MakeFileBase64Sha256Func constructs a function that is like Base64Sha256Func but reads the
// contents of a file rather than hashing a given literal string.
func MakeFileBase64Sha256Func(fsys afero.Fs, baseDir string) function.Function {
return makeFileHashFunction(fsys, baseDir, sha256.New, base64.StdEncoding.EncodeToString)
}
func MakeFileBase64Sha512Func(fsys afero.Fs, baseDir string) function.Function {
return makeFileHashFunction(fsys, baseDir, sha512.New, base64.StdEncoding.EncodeToString)
}
// MakeFileMd5Func constructs a function that is like Md5Func but reads the
// contents of a file rather than hashing a given literal string.
func MakeFileMd5Func(fsys afero.Fs, baseDir string) function.Function {
return makeFileHashFunction(fsys, baseDir, md5.New, hex.EncodeToString)
}
// MakeFileSha1Func constructs a function that is like Sha1Func but reads the
// contents of a file rather than hashing a given literal string.
func MakeFileSha1Func(fsys afero.Fs, baseDir string) function.Function {
return makeFileHashFunction(fsys, baseDir, sha1.New, hex.EncodeToString)
}
// MakeFileSha256Func constructs a function that is like Sha256Func but reads the
// contents of a file rather than hashing a given literal string.
func MakeFileSha256Func(fsys afero.Fs, baseDir string) function.Function {
return makeFileHashFunction(fsys, baseDir, sha256.New, hex.EncodeToString)
}
// MakeFileSha512Func constructs a function that is like Sha512Func but reads the
// contents of a file rather than hashing a given literal string.
func MakeFileSha512Func(fsys afero.Fs, baseDir string) function.Function {
return makeFileHashFunction(fsys, baseDir, sha512.New, hex.EncodeToString)
}
func makeFileHashFunction(fsys afero.Fs, baseDir string, hf func() hash.Hash, enc func([]byte) string) function.Function {
return function.New(&function.Spec{
Params: []function.Parameter{
{
Name: "path",
Type: cty.String,
},
},
Type: function.StaticReturnType(cty.String),
Impl: func(args []cty.Value, retType cty.Type) (ret cty.Value, err error) {
path := args[0].AsString()
f, err := openFile(fsys, baseDir, path)
if err != nil {
return cty.UnknownVal(cty.String), err
}
defer f.Close()
h := hf()
_, err = io.Copy(h, f)
if err != nil {
return cty.UnknownVal(cty.String), err
}
rv := enc(h.Sum(nil))
return cty.StringVal(rv), nil
},
})
}