]> Cypherpunks.ru repositories - gogost.git/blob - prfplus/gost.go
659b5b4f5b8106403af5941636530d8df0574a5c
[gogost.git] / prfplus / gost.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 // PRF_IPSEC_PRFPLUS_GOSTR3411_2012_{256,512} as defined in R 50.1.113-2016.
17 package prfplus
18
19 import (
20         "crypto/hmac"
21         "hash"
22
23         "go.cypherpunks.ru/gogost/v4/gost34112012256"
24         "go.cypherpunks.ru/gogost/v4/gost34112012512"
25 )
26
27 type PRFIPsecPRFPlusGOSTR34112012 struct{ h hash.Hash }
28
29 func NewPRFIPsecPRFPlusGOSTR34112012256(key []byte) PRFForPlus {
30         return PRFIPsecPRFPlusGOSTR34112012{hmac.New(gost34112012256.New, key)}
31 }
32
33 func NewPRFIPsecPRFPlusGOSTR34112012512(key []byte) PRFForPlus {
34         return PRFIPsecPRFPlusGOSTR34112012{hmac.New(gost34112012512.New, key)}
35 }
36
37 func (prf PRFIPsecPRFPlusGOSTR34112012) BlockSize() int {
38         return prf.h.Size()
39 }
40
41 func (prf PRFIPsecPRFPlusGOSTR34112012) Derive(salt []byte) []byte {
42         prf.h.Write(salt)
43         sum := prf.h.Sum(nil)
44         prf.h.Reset()
45         return sum
46 }