]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost3410/utils.go
No need in public gost3410.PointSize
[gogost.git] / gost3410 / utils.go
index 1a188288c14d547a603624282a3f5f6921ca8bcb..ec737df750f86cbb08b8fb01d0678e6c77a635bf 100644 (file)
@@ -33,7 +33,7 @@ func pad(d []byte, size int) []byte {
        return append(make([]byte, size-len(d)), d...)
 }
 
-func PointSize(p *big.Int) int {
+func pointSize(p *big.Int) int {
        if p.BitLen() > 256 {
                return 64
        }