randomizer

package module
v1.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 10, 2023 License: Apache-2.0 Imports: 2 Imported by: 1

README

randomizer

Coverage Status CI Build CI Test CI Scan CI Release Go Reference

This is a GoLang library for generating cryptographically secure random numbers using the crypto/rand package. The library provides a simple API for generating random integers, bytes, and strings.

Installation

To install the library, use the go get command:

go get github.com/imusmanmalik/randomizer

Usage

To use the library, import it in your Go code:

import (
    "fmt"
    "github.com/imusmanmalik/randomizer"
)

func main() {
	// Generate a random integer between 1 and 100
	randomInt, err := randomizer.RandomInt(1, 100)
	if err != nil {
		panic(err)
	}
	fmt.Println(randomInt)

	// Generate a random slice of bytes with length 16
	randomBytes, err := randomizer.RandomBytes(16)
	if err != nil {
		panic(err)
	}
	fmt.Println(randomBytes)

	// Generate a random string with length 32
	randomString, err := randomizer.RandomString(32)
	if err != nil {
		panic(err)
	}
	fmt.Println(randomString)
}

Testing

go test

Contributing

Contributions are welcome! If you find a bug or have an idea for a new feature, please open an issue or submit a pull request on GitHub.

License

This library is licensed under Apache 2.0 License. See the LICENSE file for details.

Acknowledgments

This library was inspired by the math/rand package in the Go standard library, and the github.com/Pallinder/go-randomdata library.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RandomBytes added in v1.0.1

func RandomBytes(length int) ([]byte, error)

RandomBytes generates a slice of cryptographically secure random bytes with a given length

func RandomInt added in v1.0.1

func RandomInt(min, max int64) (int64, error)

RandomInt generates a cryptographically secure random integer between min and max (inclusive)

func RandomString added in v1.0.1

func RandomString(length int) (string, error)

RandomString generates a cryptographically secure random string with a given length

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL