]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost3410/vko2001.go
Download link for 5.14.1 release
[gogost.git] / gost3410 / vko2001.go
index 7472e29cba310920e7226bd4b5ee8d5e920a3e9c..0bb8e3d93699546724398eb218214aaf6128ba0a 100644 (file)
@@ -1,5 +1,5 @@
 // GoGOST -- Pure Go GOST cryptographic functions library
-// Copyright (C) 2015-2021 Sergey Matveev <stargrave@stargrave.org>
+// Copyright (C) 2015-2024 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
@@ -17,6 +17,7 @@ package gost3410
 
 import (
        "errors"
+       "fmt"
        "math/big"
 
        "go.cypherpunks.ru/gogost/v5/gost28147"
@@ -31,11 +32,11 @@ func (prv *PrivateKey) KEK2001(pub *PublicKey, ukm *big.Int) ([]byte, error) {
        }
        key, err := prv.KEK(pub, ukm)
        if err != nil {
-               return nil, err
+               return nil, fmt.Errorf("gogost/gost3410.PrivateKey.KEK2001: %w", err)
        }
        h := gost341194.New(&gost28147.SboxIdGostR341194CryptoProParamSet)
        if _, err = h.Write(key); err != nil {
-               return nil, err
+               return nil, fmt.Errorf("gogost/gost3410.PrivateKey.KEK2001: %w", err)
        }
        return h.Sum(key[:0]), nil
 }