]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost3410/ukm.go
Download link for 5.14.1 release
[gogost.git] / gost3410 / ukm.go
index dfb94eac1d12d7b1b58ef93e4a3a7a2a67f2f70f..368b88fb43c8650b3f59685285f6e5d44e967605 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
@@ -19,6 +19,7 @@ import (
        "math/big"
 )
 
+// Unmarshal little-endian UKM value.
 func NewUKM(raw []byte) *big.Int {
        t := make([]byte, len(raw))
        for i := 0; i < len(t); i++ {