| 541 | } |
| 542 | |
| 543 | type authUser struct { |
| 544 | lock *sync.Mutex |
| 545 | password *string |
| 546 | keys []ssh.Signer |
| 547 | } |
| 548 | |
| 549 | func (a *authUser) SetPassword(password string) { |
| 550 | a.password = &password |
nothing calls this directly
no outgoing calls
no test coverage detected