File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,14 @@ type Cache interface {
5959type RevocationConfig struct {
6060 // RootDir is the directory to search for CRL files.
6161 // Directory format must match OpenSSL X509_LOOKUP_hash_dir(3).
62+ // Deprecated: use CRLProvider instead.
6263 RootDir string
6364 // AllowUndetermined controls if certificate chains with RevocationUndetermined
6465 // revocation status are allowed to complete.
6566 AllowUndetermined bool
6667 // Cache will store CRL files if not nil, otherwise files are reloaded for every lookup.
68+ // Only used for caching CRLs when using the RootDir setting.
69+ // Deprecated: use CRLProvider instead.
6770 Cache Cache
6871 // CRLProvider is an alternative to using RootDir directly for the
6972 // X509_LOOKUP_hash_dir approach to CRL files. If set, the CRLProvider's CRL
You can’t perform that action at this time.
0 commit comments