String create a random string for test purposes. Do not use these for passwords.
(n int)
| 41 | // |
| 42 | // Do not use these for passwords. |
| 43 | func String(n int) string { |
| 44 | return StringFn(n, cryptorand.Reader) |
| 45 | } |
| 46 | |
| 47 | // Password creates a crypto strong password which is just about |
| 48 | // memorable. The password is composed of printable ASCII characters |
searching dependent graphs…