]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost3410/ukm.go
Slightly more endianness documentation
[gogost.git] / gost3410 / ukm.go
index ab6fab6b71d35f2008fc500a419be4fd143c94fd..772b178a80ccde5c58d990f2864423026673f4d0 100644 (file)
@@ -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++ {