]> Cypherpunks.ru repositories - gogost.git/blobdiff - src/cypherpunks.ru/gogost/gost3410/vko2001.go
Sbox names comply with OIDs
[gogost.git] / src / cypherpunks.ru / gogost / gost3410 / vko2001.go
index 85197a1afe5859e70d471bba30d83f7d784efd1a..e7482bb6d23945705d14154a4842c989d874b791 100644 (file)
@@ -1,5 +1,5 @@
 // GoGOST -- Pure Go GOST cryptographic functions library
-// Copyright (C) 2015-2016 Sergey Matveev <stargrave@stargrave.org>
+// Copyright (C) 2015-2019 Sergey Matveev <stargrave@stargrave.org>
 //
 // 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
 }