X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fcypherpunks.ru%2Fgogost%2Fgost3410%2Fvko2001.go;h=e7482bb6d23945705d14154a4842c989d874b791;hb=bfe87fc2ae85dce7cf14b0e03603544eafa7d130;hp=85197a1afe5859e70d471bba30d83f7d784efd1a;hpb=92e0d038de014c8b3eebc0beba3ef9fe906dd8e3;p=gogost.git diff --git a/src/cypherpunks.ru/gogost/gost3410/vko2001.go b/src/cypherpunks.ru/gogost/gost3410/vko2001.go index 85197a1..e7482bb 100644 --- a/src/cypherpunks.ru/gogost/gost3410/vko2001.go +++ b/src/cypherpunks.ru/gogost/gost3410/vko2001.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2016 Sergey Matveev +// Copyright (C) 2015-2019 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -34,7 +34,7 @@ func (prv *PrivateKey) KEK2001(pub *PublicKey, ukm *big.Int) ([]byte, error) { if err != nil { return nil, err } - h := gost341194.New(&gost28147.GostR3411_94_CryptoProParamSet) + h := gost341194.New(&gost28147.SboxIdGostR341194CryptoProParamSet) h.Write(key) return h.Sum(key[:0]), nil }