53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
/*
|
|
Copyright 2015 Home Office All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"io"
|
|
)
|
|
|
|
var StdChars = []byte("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()-_=+,.?/:;{}[]`~")
|
|
|
|
func NewPassword(length int) string {
|
|
return rand_char(length, StdChars)
|
|
}
|
|
|
|
func rand_char(length int, chars []byte) string {
|
|
new_pword := make([]byte, length)
|
|
random_data := make([]byte, length+(length/4)) // storage for random bytes.
|
|
clen := byte(len(chars))
|
|
maxrb := byte(256 - (256 % len(chars)))
|
|
i := 0
|
|
for {
|
|
if _, err := io.ReadFull(rand.Reader, random_data); err != nil {
|
|
panic(err)
|
|
}
|
|
for _, c := range random_data {
|
|
if c >= maxrb {
|
|
continue
|
|
}
|
|
new_pword[i] = chars[c%clen]
|
|
i++
|
|
if i == length {
|
|
return string(new_pword)
|
|
}
|
|
}
|
|
}
|
|
panic("unreachable")
|
|
}
|