]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost3410/vko2001.go
Raise copyright years
[gogost.git] / gost3410 / vko2001.go
index ed49d8f00fbb423f4991dc650bad9a618bd38800..02f976f9b286e0f27753baef60c7ca2dfe9a8f70 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,7 +27,7 @@ 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 {