summaryrefslogtreecommitdiff
path: root/cryptfs/kdf.go
blob: 32870cd5d15d547bbf3d39a0665daa0601ba3420 (plain)
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
package cryptfs

import (
	"fmt"
	"golang.org/x/crypto/scrypt"
)

const (
	// 1 << 16 uses 64MB of memory,
	// takes 4 seconds on my Atom Z3735F netbook
	SCRYPT_DEFAULT_N = 1 << 16
)

type scryptKdf struct {
	Salt   []byte
	N      int
	R      int
	P      int
	KeyLen int
}

func NewScryptKdf() scryptKdf {
	var s scryptKdf
	s.Salt = RandBytes(KEY_LEN)
	s.N = SCRYPT_DEFAULT_N
	s.R = 8 // Always 8
	s.P = 1 // Always 1
	s.KeyLen = KEY_LEN
	return s
}

func (s *scryptKdf) DeriveKey(pw string) []byte {
	k, err := scrypt.Key([]byte(pw), s.Salt, s.N, s.R, s.P, s.KeyLen)
	if err != nil {
		panic(fmt.Sprintf("DeriveKey failed: %s", err.Error()))
	}
	return k
}