https://github.com/hyperscale-stack/secure
Generate secure random strings
https://github.com/hyperscale-stack/secure
Last synced: 23 days ago
JSON representation
Generate secure random strings
- Host: GitHub
- URL: https://github.com/hyperscale-stack/secure
- Owner: hyperscale-stack
- License: mit
- Created: 2021-07-22T22:50:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-08T14:22:59.000Z (5 months ago)
- Last Synced: 2025-09-08T16:29:29.760Z (5 months ago)
- Language: Go
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Hyperscale secure [](https://github.com/hyperscale-stack/secure/releases/latest) [](https://godoc.org/github.com/hyperscale-stack/secure)
====================
[](https://goreportcard.com/report/github.com/hyperscale-stack/secure)
| Branch | Status | Coverage |
|---------|--------|----------|
| master | [](https://github.com/hyperscale-stack/secure/actions?query=workflow%3AGo) | [](https://coveralls.io/github/hyperscale-stack/secure?branch=master) |
The Hyperscale secure is a secure string generator.
## Example
```go
package main
import (
"fmt"
"github.com/hyperscale-stack/secure"
)
func main() {
s, err := secure.GenerateRandomString(64)
if err != nil {
panic(err)
}
fmt.Println(s)
}
```
## License
Hyperscale secure is licensed under [the MIT license](LICENSE.md).