Add 'genpw' custom function
This commit is contained in:
parent
64d8909f55
commit
e3c33d25ac
@ -8,6 +8,7 @@ func FuncMap() template.FuncMap {
|
||||
"title": Title,
|
||||
"split": Split,
|
||||
"domain": GetDomainName,
|
||||
"genpw": GenPassword,
|
||||
}
|
||||
|
||||
}
|
||||
|
35
functions/security.go
Normal file
35
functions/security.go
Normal file
@ -0,0 +1,35 @@
|
||||
package functions
|
||||
|
||||
import (
|
||||
"crypto/rand"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
// genpw generates a random password of the given length.
|
||||
// It uses a predefined set of characters to ensure the password is readable.
|
||||
func genpw(length int) (string, error) {
|
||||
// Define a set of characters to use in the password.
|
||||
// You can adjust the character set to meet your password policy requirements.
|
||||
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()"
|
||||
|
||||
b := make([]byte, length) // Create a slice of bytes to store the password characters
|
||||
_, err := rand.Read(b) // Fill the slice with random bytes
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("error generating random bytes: %v", err)
|
||||
}
|
||||
|
||||
password := make([]byte, length)
|
||||
for i, byteVal := range b {
|
||||
password[i] = charset[byteVal%byte(len(charset))] // Map each byte to a character in the charset
|
||||
}
|
||||
|
||||
return string(password), nil // Convert the password slice to a string and return it
|
||||
}
|
||||
|
||||
func GenPassword(length int) string {
|
||||
pw, err := genpw(length)
|
||||
if err != nil {
|
||||
return "7HQO0LfNL;={i,4@0Tz/]2#EC"
|
||||
}
|
||||
return pw
|
||||
}
|
@ -1 +1,2 @@
|
||||
Domain is: "{{domain}}"
|
||||
Password is: "{{genpw 32}}"
|
||||
|
Loading…
Reference in New Issue
Block a user