Documentation ¶
Overview ¶
Package randkey creates a random uint64 key.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RandKey ¶
type RandKey struct {
// contains filtered or unexported fields
}
RandKey stores the random key.
func New ¶
func New() *RandKey
New generates a new uint64 random key.
Example ¶
package main import ( "fmt" "github.com/Vonage/gosrvlib/pkg/randkey" ) func main() { // generate a new key k := randkey.New() fmt.Println(k) }
Output:
func (*RandKey) Hex ¶
Hex returns a fixed-length 16 digits hexadecimal string key.
Example ¶
package main import ( "fmt" "github.com/Vonage/gosrvlib/pkg/randkey" ) func main() { // generate a new random key as fixed-length 16 digits hexadecimal string key. k := randkey.New().Hex() fmt.Println(k) }
Output:
func (*RandKey) Key ¶
Key returns a uint64 key.
Example ¶
package main import ( "fmt" "github.com/Vonage/gosrvlib/pkg/randkey" ) func main() { // generate a new random key as uint64 k := randkey.New().Key() fmt.Println(k) }
Output:
Click to show internal directories.
Click to hide internal directories.