fix code review findings

This commit is contained in:
Arkadiy Kukarkin
2025-12-23 13:25:56 +01:00
parent 6ac2155c5e
commit 098d9c45c4
4 changed files with 55 additions and 18 deletions

View File

@@ -2,7 +2,8 @@ package model
import (
"context"
"math/rand"
"crypto/rand"
"encoding/binary"
"strconv"
"time"
@@ -97,7 +98,7 @@ func NewGroupShare(s store.Store, publicURL string, linkGen func() (string, erro
if err != nil {
return nil, err
}
pin := GroupPinMin + rand.Intn(GroupPinMax-GroupPinMin+1)
pin := GroupPinMin + cryptoRandInt(GroupPinMax-GroupPinMin+1)
return &GroupShare{
store: s,
id: id,
@@ -201,3 +202,9 @@ func LoadShareType(ctx context.Context, s store.Store, id string) (int, error) {
}
return st.Type, nil
}
func cryptoRandInt(max int) int {
var b [8]byte
rand.Read(b[:])
return int(binary.LittleEndian.Uint64(b[:]) % uint64(max))
}