]> Cypherpunks.ru repositories - gogost.git/blob - gost34112012256/kdf.go
eab8edc8ee33f777ad68894a8704446e0e578ec7
[gogost.git] / gost34112012256 / kdf.go
1 // GoGOST -- Pure Go GOST cryptographic functions library
2 // Copyright (C) 2015-2019 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, version 3 of the License.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 package gost34112012256
17
18 import (
19         "crypto/hmac"
20         "hash"
21 )
22
23 type KDF struct {
24         h hash.Hash
25 }
26
27 func NewKDF(key []byte) *KDF {
28         return &KDF{hmac.New(New, key)}
29 }
30
31 func (kdf *KDF) Derive(dst, label, seed []byte) (r []byte) {
32         kdf.h.Write([]byte{0x01})
33         kdf.h.Write(label)
34         kdf.h.Write([]byte{0x00})
35         kdf.h.Write(seed)
36         kdf.h.Write([]byte{0x01})
37         kdf.h.Write([]byte{0x00})
38         r = kdf.h.Sum(dst)
39         kdf.h.Reset()
40         return r
41 }