Source File
session_id.go
Belonging Package
github.com/gotd/td/internal/crypto
package cryptoimport ()// NewSessionID generates new random int64 from reader.//// Use crypto/rand.Reader if session id should be cryptographically safe.func ( io.Reader) (int64, error) {:= make([]byte, 8)if , := io.ReadFull(, ); != nil {return 0,}return int64(binary.LittleEndian.Uint64()), nil}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |