]> Cypherpunks.ru repositories - gogost.git/blob - gost34112012256/kdf.go
Panic on all possible hash write errors
[gogost.git] / gost34112012256 / kdf.go
1 // GoGOST -- Pure Go GOST cryptographic functions library
2 // Copyright (C) 2015-2020 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         if _, err := kdf.h.Write([]byte{0x01}); err != nil {
33                 panic(err)
34         }
35         if _, err := kdf.h.Write(label); err != nil {
36                 panic(err)
37         }
38         if _, err := kdf.h.Write([]byte{0x00}); err != nil {
39                 panic(err)
40         }
41         if _, err := kdf.h.Write(seed); err != nil {
42                 panic(err)
43         }
44         if _, err := kdf.h.Write([]byte{0x01}); err != nil {
45                 panic(err)
46         }
47         if _, err := kdf.h.Write([]byte{0x00}); err != nil {
48                 panic(err)
49         }
50         r = kdf.h.Sum(dst)
51         kdf.h.Reset()
52         return r
53 }