GoPass/main.go

46 lines
941 B
Go
Raw Permalink Normal View History

2022-08-02 23:07:28 +00:00
// GoPass
// Author: Maximilian Patterson
2022-10-09 20:57:01 +00:00
// Version: 1.1
2022-08-02 23:07:28 +00:00
package main
2022-08-02 22:37:06 +00:00
import (
2022-10-09 20:57:01 +00:00
cryptorand "crypto/rand"
"encoding/binary"
2022-08-02 22:37:06 +00:00
"fmt"
2022-10-09 20:57:01 +00:00
mathrand "math/rand"
2022-08-02 22:37:06 +00:00
"os"
"strconv"
)
var runes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890`~!@#$%^&*()_+[]\\{}|;':,./<>?")
func main() {
// Take OS arg (only accepts one arg)
arg := os.Args[1]
// Convert String arg to int
size, err := strconv.Atoi(arg)
if err != nil {
panic(err)
}
// Make empty array of runes with size of size
pass := make([]rune, size)
// Seed rand with time
2022-10-09 20:57:01 +00:00
var b [8]byte
_, err = cryptorand.Read(b[:])
if err != nil {
panic("Error securely seeding rand!")
}
mathrand.Seed(int64(binary.LittleEndian.Uint64(b[:])))
2022-08-02 22:37:06 +00:00
// Assign every slot of pass to a random rune (generate rand int of length runes to select)
for i := range pass {
2022-10-09 20:57:01 +00:00
pass[i] = runes[mathrand.Intn(len(runes))]
2022-08-02 22:37:06 +00:00
}
// Print the pass :D
fmt.Println(string(pass))
}