]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost3410/vko2001.go
Panic on all possible hash write errors
[gogost.git] / gost3410 / vko2001.go
index ed49d8f00fbb423f4991dc650bad9a618bd38800..c9aeada21a90a36f782a49497aaa8c4af347a813 100644 (file)
@@ -1,5 +1,5 @@
 // GoGOST -- Pure Go GOST cryptographic functions library
-// Copyright (C) 2015-2019 Sergey Matveev <stargrave@stargrave.org>
+// Copyright (C) 2015-2020 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
@@ -27,13 +27,15 @@ import (
 // UKM is user keying material, also called VKO-factor.
 func (prv *PrivateKey) KEK2001(pub *PublicKey, ukm *big.Int) ([]byte, error) {
        if prv.Mode != Mode2001 {
-               return nil, errors.New("KEK2001 can not be used in Mode2012")
+               return nil, errors.New("gogost/gost3410: KEK2001 can not be used in Mode2012")
        }
        key, err := prv.KEK(pub, ukm)
        if err != nil {
                return nil, err
        }
        h := gost341194.New(&gost28147.SboxIdGostR341194CryptoProParamSet)
-       h.Write(key)
+       if _, err = h.Write(key); err != nil {
+               return nil, err
+       }
        return h.Sum(key[:0]), nil
 }