]> Cypherpunks.ru repositories - gogost.git/blob - src/cypherpunks.ru/gogost/gost34112012256/kdf.go
KDF_GOSTR3411_2012_256
[gogost.git] / src / cypherpunks.ru / gogost / 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, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 package gost34112012256
18
19 import (
20         "crypto/hmac"
21         "hash"
22 )
23
24 type KDF struct {
25         h hash.Hash
26 }
27
28 func NewKDF(key []byte) *KDF {
29         return &KDF{hmac.New(New, key)}
30 }
31
32 func (kdf *KDF) Derive(dst, label, seed []byte) (r []byte) {
33         kdf.h.Write([]byte{0x01})
34         kdf.h.Write(label)
35         kdf.h.Write([]byte{0x00})
36         kdf.h.Write(seed)
37         kdf.h.Write([]byte{0x01})
38         kdf.h.Write([]byte{0x00})
39         r = kdf.h.Sum(dst)
40         kdf.h.Reset()
41         return r
42 }