challengeTokensKey returns the key to use to store and access challenge info for domain.
(domain string)
| 679 | // challengeTokensKey returns the key to use to store and access |
| 680 | // challenge info for domain. |
| 681 | func (dhs distributedSolver) challengeTokensKey(domain string) string { |
| 682 | return path.Join(dhs.challengeTokensPrefix(), StorageKeys.Safe(domain)+".json") |
| 683 | } |
| 684 | |
| 685 | // solverInfo associates a listener with the |
| 686 | // number of challenges currently using it. |
no test coverage detected